diff --git a/src/aks-agent/HISTORY.rst b/src/aks-agent/HISTORY.rst index 1b8d1584e9f..0c433489e23 100644 --- a/src/aks-agent/HISTORY.rst +++ b/src/aks-agent/HISTORY.rst @@ -12,6 +12,21 @@ To release a new version, please select a new version number (usually plus 1 to Pending +++++++ +1.0.0b13 +* fix subscription id not correclty set in helm chart + +1.0.0b12 +++++++++ +* [BREAKING CHANGE]: + * aks-agent is now containerized and deployed per Kubernetes cluster along with a managed aks-mcp instance + * aks-agent is deployed on the AKS cluster as Helm charts during `az aks agent-init` + * aks agent commands now require --resource-group and --name parameters to specify the target AKS cluster + * Add `az aks agent-cleanup` to cleanup the AKS agent from the cluster +* [SECURITY]: + * Kubernetes RBAC: Uses cluster roles to securely access Kubernetes resources with least-privilege principles + * Azure Workload Identity: Supports Azure workload identity for secure, keyless access to Azure resources + * LLM credentials are stored securely in Kubernetes secrets with encryption at rest + 1.0.0b11 ++++++++ * Fix(agent-init): replace max_tokens with max_completion_tokens for connection check of Azure OpenAI service. diff --git a/src/aks-agent/README.rst b/src/aks-agent/README.rst index 7de9c76e391..73f0e09a7ec 100644 --- a/src/aks-agent/README.rst +++ b/src/aks-agent/README.rst @@ -7,28 +7,34 @@ Introduction The AKS Agent extension provides the "az aks agent" command, an AI-powered assistant that helps analyze and troubleshoot Azure Kubernetes Service (AKS) clusters using Large Language Models (LLMs). The agent combines cluster context, configurable toolsets, and LLMs to answer natural-language questions about your cluster (for example, "Why are my pods not starting?") and can investigate issues in both interactive and non-interactive (batch) modes. -New in this version: **az aks agent-init** command for easy LLM model configuration! +New in this version: **az aks agent-init** command for containerized agent deployment! -You can now use `az aks agent-init` to interactively add and configure LLM models before asking questions. This command guides you through the setup process, allowing you to add multiple models as needed. When asking questions with `az aks agent`, you can: +The `az aks agent-init` command deploys the AKS agent as a Helm chart directly in your AKS cluster with enterprise-grade security: -- Use `--config-file` to specify your own model configuration file -- Use `--model` to select a previously configured model -- If neither is provided, the last configured LLM will be used by default +- **Kubernetes RBAC**: Uses cluster roles to securely access Kubernetes resources with least-privilege principles +- **Workload Identity**: Leverages Azure workload identity for secure, keyless access to Azure resources +- **Interactive LLM Configuration**: Guides you through setting up LLM models with encrypted storage in Kubernetes secrets -This makes it much easier to manage and switch between multiple models for your AKS troubleshooting workflows. +When asking questions with `az aks agent`: + +- The agent automatically uses the last configured model +- Use `--model` to select a specific model when you have multiple models configured + +This architecture provides better security, scalability, and manageability for production AKS troubleshooting workflows. Key capabilities ---------------- +- **Containerized Deployment**: Agent runs as a Helm chart in your AKS cluster with `az aks agent-init`. +- **Secure Access**: Uses Kubernetes RBAC for cluster resources and Azure workload identity for Azure resources. +- **LLM Configuration**: Interactively configure LLM models with credentials stored securely in Kubernetes secrets. +- Support for multiple LLM providers (Azure OpenAI, OpenAI, Anthropic, Gemini, etc.). +- Automatically uses the last configured model by default. +- Optionally use --model to select a specific model when you have multiple models configured. - Interactive and non-interactive modes (use --no-interactive for batch runs). -- Support for multiple LLM providers (Azure OpenAI, OpenAI, etc.) via interactive configuration. -- **Easy model setup with `az aks agent-init`**: interactively add and configure LLM models, run multiple times to add more models. -- Configurable via a JSON/YAML config file provided with --config-file, or select a model with --model. -- If no config or model is specified, the last configured LLM is used automatically. - Control echo and tool output visibility with --no-echo-request and --show-tool-output. - Refresh the available toolsets with --refresh-toolsets. -- Stay in traditional toolset mode by default, or opt in to aks-mcp integration with ``--aks-mcp`` when you need the enhanced capabilities. Prerequisites ------------- @@ -37,98 +43,6 @@ For more details about supported model providers and required variables, see: https://docs.litellm.ai/docs/providers -LLM Configuration Explained ---------------------------- - -The AKS Agent uses YAML configuration files to define LLM connections. Each configuration contains a provider specification and the required environment variables for that provider. - -Configuration Structure -^^^^^^^^^^^^^^^^^^^^^^^^ - -.. code-block:: yaml - - llms: - - provider: azure - MODEL_NAME: gpt-4.1 - AZURE_API_KEY: ******* - AZURE_API_BASE: https://{azure-openai-service}.openai.azure.com/ - AZURE_API_VERSION: 2025-04-01-preview - -Field Explanations -^^^^^^^^^^^^^^^^^^ - -**provider** - The LiteLLM provider route that determines which LLM service to use. This follows the LiteLLM provider specification from https://docs.litellm.ai/docs/providers. - - Common values: - - * ``azure`` - Azure OpenAI Service - * ``openai`` - OpenAI API and OpenAI-compatible APIs (e.g., local models, other services) - * ``anthropic`` - Anthropic Claude - * ``gemini`` - Google's Gemini - * ``openai_compatible`` - OpenAI-compatible APIs (e.g., local models, other services) - -**MODEL_NAME** - The specific model or deployment name to use. This varies by provider: - - * For Azure OpenAI: Your deployment name (e.g., ``gpt-4.1``, ``gpt-35-turbo``) - * For OpenAI: Model name (e.g., ``gpt-4``, ``gpt-3.5-turbo``) - * For other providers: Check the specific model names in LiteLLM documentation - -**Environment Variables by Provider** - -The remaining fields are environment variables required by each provider. These correspond to the authentication and configuration requirements of each LLM service: - -**Azure OpenAI (provider: azure)** - * ``AZURE_API_KEY`` - Your Azure OpenAI API key - * ``AZURE_API_BASE`` - Your Azure OpenAI endpoint URL (e.g., https://your-resource.openai.azure.com/) - * ``AZURE_API_VERSION`` - API version (e.g., 2024-02-01, 2025-04-01-preview) - -**OpenAI (provider: openai)** - * ``OPENAI_API_KEY`` - Your OpenAI API key (starts with sk-) - -**Gemini (provider: gemini)** - * ``GOOGLE_API_KEY`` - Your Google Cloud API key - * ``GOOGLE_API_ENDPOINT`` - Base URL for the Gemini API endpoint - -**Anthropic (provider: anthropic)** - * ``ANTHROPIC_API_KEY`` - Your Anthropic API key - -**OpenAI Compatible (provider: openai_compatible)** - * ``OPENAI_API_BASE`` - Base URL for the API endpoint - * ``OPENAI_API_KEY`` - API key (if required by the service) - -Multiple Model Configuration -^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -You can configure multiple models in a single file: - -.. code-block:: yaml - - llms: - - provider: azure - MODEL_NAME: gpt-4 - AZURE_API_KEY: your-azure-key - AZURE_API_BASE: https://your-azure-endpoint.openai.azure.com/ - AZURE_API_VERSION: 2024-02-01 - - provider: openai - MODEL_NAME: gpt-4 - OPENAI_API_KEY: your-openai-key - - provider: anthropic - MODEL_NAME: claude-3-sonnet-20240229 - ANTHROPIC_API_KEY: your-anthropic-key - -When using ``--model``, specify the provider and model as ``provider/model_name`` (e.g., ``azure/gpt-4``, ``openai/gpt-4``). - -Security Note -^^^^^^^^^^^^^ - -API keys and credentials in configuration files should be kept secure. Consider using: - -* Restricted file permissions (``chmod 600 config.yaml``) -* Environment variable substitution where supported -* Separate configuration files for different environments (dev/prod) - Quick start and examples ========================= @@ -139,14 +53,21 @@ Install the extension az extension add --name aks-agent -Configure LLM models interactively ----------------------------------- +Initialize and configure the AKS agent +--------------------------------------- .. code-block:: bash - az aks agent-init + az aks agent-init --resource-group MyResourceGroup --name MyManagedCluster + +This command will configure the LLM configuration and: -This command will guide you through adding a new LLM model. You can run it multiple times to add more models or update existing models. All configured models are saved locally and can be selected when asking questions. +1. Guide you through LLM model configuration with credentials stored securely in Kubernetes secrets +2. Deploy the AKS agent Helm chart in your cluster +3. Configure Kubernetes RBAC for secure cluster resource access +4. Optionally configure Azure workload identity for Azure resource access + +You can run it multiple times to update configurations or add more models. Run the agent (Azure OpenAI example) : ----------------------------------- @@ -163,12 +84,6 @@ Run the agent (Azure OpenAI example) : az aks agent "Why are my pods not starting?" --name MyManagedCluster --resource-group MyResourceGroup --model azure/my-gpt4.1-deployment -**3. Use a custom config file:** - -.. code-block:: bash - - az aks agent "Why are my pods not starting?" --config-file /path/to/your/model_config.yaml - Run the agent (OpenAI example) ------------------------------ @@ -185,34 +100,27 @@ Run the agent (OpenAI example) az aks agent "Why are my pods not starting?" --name MyManagedCluster --resource-group MyResourceGroup --model gpt-4o -**3. Use a custom config file:** - -.. code-block:: bash - - az aks agent "Why are my pods not starting?" --config-file /path/to/your/model_config.yaml - Run in non-interactive batch mode --------------------------------- .. code-block:: bash - az aks agent "Diagnose networking issues" --no-interactive --max-steps 15 --model azure/my-gpt4.1-deployment + az aks agent "Diagnose networking issues" --no-interactive --name MyManagedCluster --resource-group MyResourceGroup --model azure/my-gpt4.1-deployment -Opt in to MCP mode ------------------- +Clean up the AKS agent +----------------------- -Traditional toolsets remain the default. Enable the aks-mcp integration when you want the enhanced toolsets by passing ``--aks-mcp``. You can return to traditional mode on a subsequent run with ``--no-aks-mcp``. +To uninstall the AKS agent and clean up all Kubernetes resources: .. code-block:: bash - az aks agent --aks-mcp "Check node health with MCP" --name MyManagedCluster --resource-group MyResourceGroup --model azure/my-gpt4.1-deployment + az aks agent-cleanup --resource-group MyResourceGroup --name MyManagedCluster -Using a configuration file --------------------------- +This command will: -Pass a config file with --config-file to predefine model, credentials, and toolsets. See -the example config and more detailed examples in the help definition at -`src/aks-agent/azext_aks_agent/_help.py`. +1. Uninstall the AKS agent Helm chart from your cluster +2. Remove all associated Kubernetes resources (deployments, pods, secrets, RBAC configurations) +3. Clean up the LLM configuration secrets More help --------- diff --git a/src/aks-agent/azext_aks_agent/__init__.py b/src/aks-agent/azext_aks_agent/__init__.py index c7fdcb8c3b2..6c8c41001f4 100644 --- a/src/aks-agent/azext_aks_agent/__init__.py +++ b/src/aks-agent/azext_aks_agent/__init__.py @@ -3,27 +3,26 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- - -import os +from azext_aks_agent._client_factory import CUSTOM_MGMT_AKS # pylint: disable=unused-import -import azext_aks_agent._help -from azext_aks_agent._consts import ( - CONST_AGENT_CONFIG_PATH_DIR_ENV_KEY, - CONST_AGENT_NAME, - CONST_AGENT_NAME_ENV_KEY, - CONST_DISABLE_PROMETHEUS_TOOLSET_ENV_KEY, - CONST_PRIVACY_NOTICE_BANNER, - CONST_PRIVACY_NOTICE_BANNER_ENV_KEY, -) from azure.cli.core import AzCommandsLoader -from azure.cli.core.api import get_config_dir +from azure.cli.core.profiles import register_resource_type + + +def register_aks_agent_resource_type(): + register_resource_type( + "latest", + CUSTOM_MGMT_AKS, + None, + ) class ContainerServiceCommandsLoader(AzCommandsLoader): def __init__(self, cli_ctx=None): from azure.cli.core.commands import CliCommandType + register_aks_agent_resource_type() aks_agent_custom = CliCommandType(operations_tmpl='azext_aks_agent.custom#{}') super().__init__( @@ -44,14 +43,3 @@ def load_arguments(self, command): COMMAND_LOADER_CLS = ContainerServiceCommandsLoader - - -# NOTE(mainred): holmesgpt leverages the environment variables to customize its behavior. -def customize_holmesgpt(): - os.environ[CONST_DISABLE_PROMETHEUS_TOOLSET_ENV_KEY] = "true" - os.environ[CONST_AGENT_CONFIG_PATH_DIR_ENV_KEY] = get_config_dir() - os.environ[CONST_AGENT_NAME_ENV_KEY] = CONST_AGENT_NAME - os.environ[CONST_PRIVACY_NOTICE_BANNER_ENV_KEY] = CONST_PRIVACY_NOTICE_BANNER - - -customize_holmesgpt() diff --git a/src/aks-agent/azext_aks_agent/_client_factory.py b/src/aks-agent/azext_aks_agent/_client_factory.py new file mode 100644 index 00000000000..eaa27b7d675 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/_client_factory.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from azure.cli.core.commands.client_factory import get_mgmt_service_client +from azure.cli.core.profiles import CustomResourceType + +CUSTOM_MGMT_AKS = CustomResourceType('azext_aks_agent.vendored_sdks.azure_mgmt_containerservice.2025_10_01', + 'ContainerServiceClient') + +# Note: cf_xxx, as the client_factory option value of a command group at command declaration, it should ignore +# parameters other than cli_ctx; get_xxx_client is used as the client of other services in the command implementation, +# and usually accepts subscription_id as a parameter to reconfigure the subscription when sending the request + + +# container service clients +def get_container_service_client(cli_ctx, subscription_id=None): + return get_mgmt_service_client(cli_ctx, CUSTOM_MGMT_AKS, subscription_id=subscription_id) + + +def cf_managed_clusters(cli_ctx, *_): + return get_container_service_client(cli_ctx).managed_clusters diff --git a/src/aks-agent/azext_aks_agent/_consts.py b/src/aks-agent/azext_aks_agent/_consts.py index f61e853d051..1a6778e87bd 100644 --- a/src/aks-agent/azext_aks_agent/_consts.py +++ b/src/aks-agent/azext_aks_agent/_consts.py @@ -30,6 +30,20 @@ CONST_MCP_GITHUB_REPO = "Azure/aks-mcp" CONST_MCP_BINARY_DIR = "bin" -# Color constants for terminal output -HELP_COLOR = "cyan" # same as AI_COLOR for now -ERROR_COLOR = "red" +# Kubernetes WebSocket exec protocol constants +RESIZE_CHANNEL = 4 # WebSocket channel for terminal resize messages +# WebSocket heartbeat configuration (matching kubectl client-go) +# Based on kubernetes/client-go/tools/remotecommand/websocket.go#L59-L65 +# pingPeriod = 5 * time.Second +# pingReadDeadline = (pingPeriod * 12) + (1 * time.Second) +# The read deadline is calculated to allow up to 12 missed pings plus 1 second buffer +# This provides tolerance for network delays while detecting actual connection failures +HEARTBEAT_INTERVAL = 5.0 # pingPeriod: 5 seconds between pings +HEARTBEAT_TIMEOUT = (HEARTBEAT_INTERVAL * 12) + 1 # pingReadDeadline: 61 seconds total timeout + +AGENT_NAMESPACE = "kube-system" +AGENT_LABEL_SELECTOR = "app.kubernetes.io/name=aks-agent" +AKS_MCP_LABEL_SELECTOR = "app.kubernetes.io/name=aks-mcp" + +# Helm Configuration +HELM_VERSION = "3.16.0" diff --git a/src/aks-agent/azext_aks_agent/_help.py b/src/aks-agent/azext_aks_agent/_help.py index b5324d00a96..8b0a91cc7b3 100644 --- a/src/aks-agent/azext_aks_agent/_help.py +++ b/src/aks-agent/azext_aks_agent/_help.py @@ -5,17 +5,15 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=too-many-lines - from knack.help_files import helps helps[ "aks agent" ] = """ type: command - short-summary: Run AI assistant to analyze and troubleshoot Kubernetes clusters. + short-summary: Run AI assistant to analyze and troubleshoot Azure Kubernetes Service (AKS) clusters. long-summary: |- This command allows you to ask questions about your Azure Kubernetes cluster and get answers using AI models. - No need to manually set environment variables! All model and credential information can be configured interactively using `az aks agent-init` or via a config file. parameters: - name: --name -n type: string @@ -33,12 +31,6 @@ Each provider may require different environment variables and model naming conventions. For a full list of supported providers, model patterns, and required environment variables, see https://docs.litellm.ai/docs/providers. Note: For Azure OpenAI, it is recommended to set the deployment name as the model name until https://github.com/BerriAI/litellm/issues/13950 is resolved. - - name: --api-key - type: string - short-summary: API key to use for the LLM (if not given, uses environment variables AZURE_API_KEY, OPENAI_API_KEY). (Deprecated) - - name: --config-file - type: string - short-summary: Path to configuration file. - name: --max-steps type: int short-summary: Maximum number of steps the LLM can take to investigate the issue. @@ -56,82 +48,35 @@ short-summary: Refresh the toolsets status. - name: --status type: bool - short-summary: Show AKS agent configuration and status information. - - name: --aks-mcp - type: bool - short-summary: Enable AKS MCP integration for enhanced capabilities. Traditional mode is the default. - + short-summary: Show AKS agent deployment status including helm release, deployments, and pod information. examples: + - name: Ask about pod issues in the cluster with OpenAI + text: |- + az aks agent "Why are my pods not starting?" --model gpt-4o --resource-group myResourceGroup --name myAKSCluster - name: Ask about pod issues in the cluster with last configured model text: |- - az aks agent "Why are my pods not starting?" --name MyManagedCluster --resource-group MyResourceGroup - - name: Ask about pod issues in the cluster with Azure OpenAI + az aks agent "Why are my pods not starting?" --resource-group myResourceGroup --name myAKSCluster + - name: Check AKS agent deployment status text: |- - az aks agent "Why are my pods not starting?" --name MyManagedCluster --resource-group MyResourceGroup --model azure/gpt-4.1 - - name: Ask about pod issues in the cluster with OpenAI + az aks agent --status --resource-group myResourceGroup --name myAKSCluster + - name: Ask about pod issues in the cluster with Azure OpenAI text: |- - az aks agent "Why are my pods not starting?" --name MyManagedCluster --resource-group MyResourceGroup --model gpt-4o - - name: Run agent with config file - text: | - az aks agent "Check kubernetes pod resource usage" --config-file /path/to/custom.yaml --name MyManagedCluster --resource-group MyResourceGroup - Here is an example of config file: - ```json - llms: - - provider: azure - MODEL_NAME: gpt-4.1 - AZURE_API_KEY: ******* - AZURE_API_BASE: https://{azure-openai-service-name}.openai.azure.com/ - AZURE_API_VERSION: 2025-04-01-preview - # define a list of mcp servers, mcp server can be defined - mcp_servers: - aks_mcp: - description: "The AKS-MCP is a Model Context Protocol (MCP) server that enables AI assistants to interact with Azure Kubernetes Service (AKS) clusters" - url: "http://localhost:8003/sse" - - # try adding your own tools or toggle the built-in toolsets here - # e.g. query company-specific data, fetch logs from your existing observability tools, etc - # To check how to add a customized toolset, please refer to https://docs.robusta.dev/master/configuration/holmesgpt/custom_toolsets.html#custom-toolsets - # To find all built-in toolsets, please refer to https://docs.robusta.dev/master/configuration/holmesgpt/builtin_toolsets.html - toolsets: - # add a new json processor toolset - json_processor: - description: "A toolset for processing JSON data using jq" - prerequisites: - - command: "jq --version" # Ensure jq is installed - tools: - - name: "process_json" - description: "A tool that uses jq to process JSON input" - command: "echo '{{ json_input }}' | jq '.'" # Example jq command to format JSON - # disable a built-in toolsets - aks/core: - enabled: false - ``` + az aks agent "Why are my pods not starting?" --model azure/gpt-4.1 --resource-group myResourceGroup --name myAKSCluster - name: Run in interactive mode without a question - text: az aks agent "Check the pod status in my cluster" --name MyManagedCluster --resource-group MyResourceGroup --model azure/gpt-4.1 --api-key "sk-xxx" - - name: Run in non-interactive batch mode - text: az aks agent "Diagnose networking issues" --no-interactive --max-steps 15 --model azure/gpt-4.1 - - name: Show detailed tool output during analysis - text: az aks agent "Why is my service workload unavailable in namespace workload-ns?" --show-tool-output --model azure/gpt-4.1 - - name: Use custom configuration file - text: az aks agent "Check kubernetes pod resource usage" --config-file /path/to/custom.yaml --model azure/gpt-4.1 - - name: Run agent with no echo of the original question - text: az aks agent "What is the status of my cluster?" --no-echo-request --model azure/gpt-4.1 - - name: Refresh toolsets to get the latest available tools - text: az aks agent "What is the status of my cluster?" --refresh-toolsets --model azure/gpt-4.1 - - name: Show agent status (MCP readiness) - text: az aks agent --status - - name: Run in interactive mode without a question - text: az aks agent "Check the pod status in my cluster" --name MyManagedCluster --resource-group MyResourceGroup --model azure/my-gpt4.1-deployment --api-key "sk-xxx" + text: |- + az aks agent "Check the pod status in my cluster" --model azure/gpt-4.1 --resource-group myResourceGroup --name myAKSCluster - name: Run in non-interactive batch mode - text: az aks agent "Diagnose networking issues" --no-interactive --max-steps 15 --model azure/my-gpt4.1-deployment + text: |- + az aks agent "Diagnose networking issues" --no-interactive --max-steps 15 --model azure/gpt-4.1 --resource-group myResourceGroup --name myAKSCluster - name: Show detailed tool output during analysis - text: az aks agent "Why is my service workload unavailable in namespace workload-ns?" --show-tool-output --model azure/my-gpt4.1-deployment - - name: Use custom configuration file - text: az aks agent "Check kubernetes pod resource usage" --config-file /path/to/custom.yaml --model azure/my-gpt4.1-deployment + text: |- + az aks agent "Why is my service workload unavailable in namespace workload-ns?" --show-tool-output --model azure/gpt-4.1 --resource-group myResourceGroup --name myAKSCluster - name: Run agent with no echo of the original question - text: az aks agent "What is the status of my cluster?" --no-echo-request --model azure/my-gpt4.1-deployment + text: |- + az aks agent "What is the status of my cluster?" --no-echo-request --model azure/gpt-4.1 --resource-group myResourceGroup --name myAKSCluster - name: Refresh toolsets to get the latest available tools - text: az aks agent "What is the status of my cluster?" --refresh-toolsets --model azure/my-gpt4.1-deployment + text: |- + az aks agent "What is the status of my cluster?" --refresh-toolsets --model azure/gpt-4.1 --resource-group myResourceGroup --name myAKSCluster """ helps[ @@ -142,7 +87,34 @@ long-summary: |- This command interactively guides you to select an LLM provider and model, validates the connection, and saves the configuration for later use. You can run this command multiple times to add or update different model configurations. + parameters: + - name: --name -n + type: string + short-summary: Name of the managed cluster. + - name: --resource-group -g + type: string + short-summary: Name of the resource group. + examples: + - name: Initialize and deploy AKS agent to a cluster + text: |- + az aks agent-init --resource-group myResourceGroup --name myAKSCluster +""" + +helps[ + "aks agent-cleanup" +] = """ + type: command + short-summary: Cleanup and uninstall AKS agent from the cluster. + long-summary: |- + This command removes the AKS agent and deletes all associated resources from the cluster. + parameters: + - name: --name -n + type: string + short-summary: Name of the managed cluster. + - name: --resource-group -g + type: string + short-summary: Name of the resource group. examples: - - name: Initialize configuration for Azure OpenAI, OpenAI or other llms - text: az aks agent-init + - name: Cleanup and uninstall AKS agent from the cluster + text: az aks agent-cleanup --resource-group myResourceGroup --name myAKSCluster """ diff --git a/src/aks-agent/azext_aks_agent/_params.py b/src/aks-agent/azext_aks_agent/_params.py index 5d45610c9fb..7a9759b3ef1 100644 --- a/src/aks-agent/azext_aks_agent/_params.py +++ b/src/aks-agent/azext_aks_agent/_params.py @@ -4,14 +4,6 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=too-many-statements,too-many-lines -import os.path - -from azext_aks_agent._consts import CONST_AGENT_CONFIG_FILE_NAME -from azext_aks_agent._validators import validate_agent_config_file -from azure.cli.core.api import get_config_dir -from azure.cli.core.commands.parameters import get_three_state_flag - - def load_arguments(self, _): with self.argument_context("aks agent") as c: c.positional( @@ -24,13 +16,11 @@ def load_arguments(self, _): "resource_group_name", options_list=["--resource-group", "-g"], help="Name of resource group.", - required=False, ) c.argument( - "name", + "cluster_name", options_list=["--name", "-n"], help="Name of the managed cluster.", - required=False, ) c.argument( "max_steps", @@ -39,25 +29,12 @@ def load_arguments(self, _): required=False, help="Maximum number of steps the LLM can take to investigate the issue.", ) - c.argument( - "config_file", - default=os.path.join(get_config_dir(), CONST_AGENT_CONFIG_FILE_NAME), - validator=validate_agent_config_file, - required=False, - help="Path to the config file.", - ) c.argument( "model", help=" Specify the LLM provider and model or deployment to use for the AI assistant.", required=False, type=str, ) - c.argument( - "api_key", - help="API key to use for the LLM (if not given, uses environment variables AZURE_API_KEY, OPENAI_API_KEY)", - required=False, - type=str, - ) c.argument( "no_interactive", help="Disable interactive mode. When set, the agent will not prompt for input and will run in batch mode.", @@ -84,14 +61,26 @@ def load_arguments(self, _): action="store_true", help="Show AKS agent configuration and status information.", ) + + with self.argument_context("aks agent-init") as c: c.argument( - "use_aks_mcp", - options_list=["--aks-mcp"], - default=False, - arg_type=get_three_state_flag(), - help=( - "Enable AKS MCP integration for enhanced capabilities. " - "Traditional mode is the default. Use --aks-mcp to enable MCP mode, or " - "--no-aks-mcp to explicitly disable it." - ), + "resource_group_name", + options_list=["--resource-group", "-g"], + help="Name of resource group.", + ) + c.argument( + "cluster_name", + options_list=["--name", "-n"], + help="Name of the managed cluster.", + ) + with self.argument_context("aks agent-cleanup") as c: + c.argument( + "resource_group_name", + options_list=["--resource-group", "-g"], + help="Name of resource group.", + ) + c.argument( + "cluster_name", + options_list=["--name", "-n"], + help="Name of the managed cluster.", ) diff --git a/src/aks-agent/azext_aks_agent/_validators.py b/src/aks-agent/azext_aks_agent/_validators.py deleted file mode 100644 index 5644e2790d7..00000000000 --- a/src/aks-agent/azext_aks_agent/_validators.py +++ /dev/null @@ -1,53 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 unicode_literals - -import os -import os.path - -import yaml -from azext_aks_agent._consts import CONST_AGENT_CONFIG_FILE_NAME -from azure.cli.core.api import get_config_dir -from azure.cli.core.azclierror import InvalidArgumentValueError -from knack.log import get_logger - -logger = get_logger(__name__) - - -def _validate_param_yaml_file(yaml_path, param_name): - if not yaml_path: - return - if not os.path.exists(yaml_path): - raise InvalidArgumentValueError( - f"--{param_name}={yaml_path}: file is not found." - ) - if not os.access(yaml_path, os.R_OK): - raise InvalidArgumentValueError( - f"--{param_name}={yaml_path}: file is not readable." - ) - try: - with open(yaml_path, "r") as file: - yaml.safe_load(file) - except yaml.YAMLError as e: - raise InvalidArgumentValueError( - f"--{param_name}={yaml_path}: file is not a valid YAML file: {e}" - ) - except Exception as e: - raise InvalidArgumentValueError( - f"--{param_name}={yaml_path}: An error occurred while reading the config file: {e}" - ) - - -def validate_agent_config_file(namespace): - config_file = namespace.config_file - if not config_file: - return - # default config file path can be empty - default_config_path = os.path.join(get_config_dir(), CONST_AGENT_CONFIG_FILE_NAME) - if config_file == default_config_path and not os.path.exists(config_file): - return - - _validate_param_yaml_file(config_file, "config-file") diff --git a/src/aks-agent/azext_aks_agent/agent/agent.py b/src/aks-agent/azext_aks_agent/agent/agent.py deleted file mode 100644 index 02a2bc4ed40..00000000000 --- a/src/aks-agent/azext_aks_agent/agent/agent.py +++ /dev/null @@ -1,736 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 select -import sys - -from azext_aks_agent.agent.logging import init_log -from azure.cli.core.api import get_config_dir -from azure.cli.core.azclierror import CLIInternalError -from azure.cli.core.commands.client_factory import get_subscription_id -from knack.util import CLIError - -from .error_handler import MCPError -from .prompt import AKS_CONTEXT_PROMPT_MCP, AKS_CONTEXT_PROMPT_TRADITIONAL -from .telemetry import CLITelemetryClient - - -def _get_mode_state_file() -> str: - """Get the path to the mode state file.""" - config_dir = get_config_dir() - return os.path.join(config_dir, "aks_agent_mode_state") - - -def _get_last_mode() -> str: - """ - Get the last used mode from state file. - - :return: 'mcp' or 'traditional' or 'unknown' if no state exists - :rtype: str - """ - state_file = _get_mode_state_file() - try: - if os.path.exists(state_file): - with open(state_file, 'r') as f: - mode = f.read().strip() - return mode if mode in ['mcp', 'traditional'] else 'unknown' - except (IOError, OSError): - pass - return 'unknown' - - -def _save_current_mode(mode: str) -> None: - """ - Save the current mode to state file. - - :param mode: 'mcp' or 'traditional' - :type mode: str - """ - if mode not in ['mcp', 'traditional']: - return - - state_file = _get_mode_state_file() - try: - # Ensure config directory exists - os.makedirs(os.path.dirname(state_file), exist_ok=True) - with open(state_file, 'w') as f: - f.write(mode) - except (IOError, OSError): - # Silently ignore state saving errors to avoid breaking the agent - pass - - -def _should_refresh_toolsets(requested_mode: str, user_refresh_request: bool) -> bool: - """ - Determine if toolsets should be refreshed based on mode transition and user request. - - :param requested_mode: The mode being requested ('mcp' or 'traditional') - :type requested_mode: str - :param user_refresh_request: Whether user explicitly requested refresh - :type user_refresh_request: bool - :return: True if toolsets should be refreshed - :rtype: bool - """ - # Always honor explicit user request to refresh - if user_refresh_request: - return True - - # Check if we're switching modes - last_mode = _get_last_mode() - - # Refresh on first run (unknown state) or mode transition - if last_mode == 'unknown' or last_mode != requested_mode: - return True - - # Same mode as last time, no refresh needed - return False - - -# pylint: disable=too-many-locals,too-many-branches -def aks_agent( - cmd, - resource_group_name, - name, - prompt, - model, - api_key, - max_steps, - config_file, - no_interactive, - no_echo_request, - show_tool_output, - refresh_toolsets, - use_aks_mcp=False, -): - """ - Interact with the AKS agent using a prompt or piped input. - - :param prompt: The prompt to send to the agent. - :type prompt: str - :param model: The model to use for the LLM. - :type model: str - :param max_steps: Maximum number of steps to take. - :type max_steps: int - :param config_file: Path to the config file. - :type config_file: str - :param no_interactive: Disable interactive mode. - :type no_interactive: bool - :param no_echo_request: Disable echoing back the question provided to AKS Agent in the output. - :type no_echo_request: bool - :param show_tool_output: Whether to show tool output. - :type show_tool_output: bool - :param refresh_toolsets: Refresh the toolsets status. - :type refresh_toolsets: bool - :param use_aks_mcp: Enable AKS MCP integration and use enhanced toolsets. - :type use_aks_mcp: bool - """ - - with CLITelemetryClient() as telemetry: - if sys.version_info < (3, 10): - raise CLIError( - "Please upgrade the python version to 3.10 or above to use aks agent." - ) - - # Initialize variables - interactive = not no_interactive - echo = not no_echo_request - console = init_log() - - # Detect and read piped input - piped_data = None - # In non-interactive mode with a prompt, we shouldn't try to read stdin - # as it may hang in CI/CD environments. Only read stdin if: - # 1. Not a TTY (indicating piped input) - # 2. Interactive mode is enabled (allows stdin reading) - should_check_stdin = not sys.stdin.isatty() and interactive - - if should_check_stdin: - try: - # Use select with timeout to avoid hanging - # Check if data is available with 100ms timeout - if select.select([sys.stdin], [], [], 0.1)[0]: - piped_data = sys.stdin.read().strip() - console.print( - "[bold yellow]Interactive mode disabled when reading piped input[/bold yellow]" - ) - interactive = False - except Exception: # pylint: disable=broad-exception-caught - # Continue without piped data if stdin reading fails - pass - - # Determine MCP mode and smart refresh logic - use_aks_mcp = bool(use_aks_mcp) - current_mode = "mcp" if use_aks_mcp else "traditional" - smart_refresh = _should_refresh_toolsets(current_mode, refresh_toolsets) - - if show_tool_output: - from .user_feedback import ProgressReporter - last_mode = _get_last_mode() - ProgressReporter.show_status_message( - f"Mode transition check: {last_mode} → {current_mode}, smart_refresh: {smart_refresh}", "info" - ) - - # MCP Lifecycle Manager - mcp_lifecycle = MCPLifecycleManager() - - config = None - - if use_aks_mcp: - try: - config_params = { - 'config_file': config_file, - 'model': model, - 'api_key': api_key, - 'max_steps': max_steps, - 'verbose': show_tool_output - } - mcp_info = mcp_lifecycle.setup_mcp_sync(config_params) - config = mcp_info['config'] - - if show_tool_output: - from .user_feedback import ProgressReporter - ProgressReporter.show_status_message("MCP mode active - enhanced capabilities enabled", "info") - - except Exception as e: # pylint: disable=broad-exception-caught - # Fallback to traditional mode on any MCP setup failure - from .error_handler import AgentErrorHandler - mcp_error = AgentErrorHandler.handle_mcp_setup_error(e, "MCP initialization") - if show_tool_output: - console.print(f"[yellow]MCP setup failed, using traditional mode: {mcp_error.message}[/yellow]") - if mcp_error.suggestions: - console.print("[dim]Suggestions for next time:[/dim]") - for suggestion in mcp_error.suggestions[:3]: # Show only first 3 suggestions - console.print(f"[dim] • {suggestion}[/dim]") - use_aks_mcp = False - current_mode = "traditional" - - # Fallback to traditional mode if MCP setup failed or was disabled - if not config: - config = _setup_traditional_mode_sync(config_file, model, api_key, max_steps, show_tool_output) - if show_tool_output: - console.print("[yellow]Traditional mode active (MCP disabled)[/yellow]") - - # Save the current mode to state file for next run - _save_current_mode(current_mode) - - # Use smart refresh logic - effective_refresh_toolsets = smart_refresh - if show_tool_output: - from .user_feedback import ProgressReporter - ProgressReporter.show_status_message( - f"Toolset refresh: {effective_refresh_toolsets} (Mode: {current_mode})", "info" - ) - - # Validate inputs - if not prompt and not interactive and not piped_data: - raise CLIError( - "Either the 'prompt' argument must be provided (unless using --interactive mode)." - ) - try: - # prepare the toolsets - ai = config.create_console_toolcalling_llm( - dal=None, - refresh_toolsets=effective_refresh_toolsets, - ) - except Exception as e: - raise CLIError(f"Failed to create AI executor: {str(e)}") - - # Handle piped data - if piped_data: - if prompt: - # User provided both piped data and a prompt - prompt = f"Here's some piped output:\n\n{piped_data}\n\n{prompt}" - else: - # Only piped data, no prompt - ask what to do with it - prompt = f"Here's some piped output:\n\n{piped_data}\n\nWhat can you tell me about this output?" - - # Phase 2: Holmes Execution (synchronous - no event loop conflicts) - is_mcp_mode = current_mode == "mcp" - try: - if interactive: - _run_interactive_mode_sync(ai, cmd, resource_group_name, name, - prompt, console, show_tool_output, is_mcp_mode, telemetry) - else: - _run_noninteractive_mode_sync(ai, config, cmd, resource_group_name, name, - prompt, console, echo, show_tool_output, is_mcp_mode) - except Exception as e: # pylint: disable=broad-exception-caught - raise CLIInternalError(f"Error occurred during execution: {str(e)}") - finally: - # Phase 3: MCP Cleanup (isolated async if needed) - mcp_lifecycle.cleanup_mcp_sync() - - -def _initialize_mcp_manager(verbose: bool = False): - """ - Initialize MCP manager for the current session. - - :param verbose: Enable verbose output - :return: Initialized MCP manager - :raises: Exception if initialization fails - """ - try: - from .mcp_manager import MCPManager - return MCPManager(verbose=verbose) - except ImportError as e: - raise MCPError( - f"MCP manager initialization failed: {str(e)}", - "MCP_IMPORT", - [ - "Ensure all required dependencies are installed", - "Try reinstalling the aks-preview extension", - "Use --aks-mcp flag to enable MCP integration" - ] - ) - - -async def _setup_mcp_mode(mcp_manager, config_file: str, model: str, api_key: str, - max_steps: int, verbose: bool = False): - """ - Setup MCP mode configuration and start server. - - :param mcp_manager: Initialized MCP manager - :param config_file: Path to configuration file - :param model: Model name - :param api_key: API key - :param max_steps: Maximum steps - :param verbose: Enable verbose output - :return: Enhanced Holmes configuration - :raises: Exception if MCP setup fails - """ - import tempfile - from pathlib import Path - - import yaml - from holmes.config import Config - - from .config_generator import ConfigurationGenerator - from .error_handler import AgentErrorHandler - from .user_feedback import ProgressReporter - - # Ensure binary is available (download if needed) - if not mcp_manager.is_binary_available() or not mcp_manager.validate_binary_version(): - if verbose: - ProgressReporter.show_status_message("Downloading MCP binary...", "info") - - # This will raise an exception if download fails - binary_status = await mcp_manager.binary_manager.ensure_binary() - if not binary_status.ready: - error_msg = binary_status.error_message or "Unknown error during binary setup" - raise AgentErrorHandler.handle_binary_error(Exception(error_msg), "setup") - - # Start MCP server - if verbose: - ProgressReporter.show_status_message("Starting MCP server...", "info") - - server_started = await mcp_manager.start_server() - if not server_started: - raise AgentErrorHandler.handle_server_error(Exception("Server startup failed"), "startup") - - # Get MCP server URL - server_url = mcp_manager.get_server_url() - if not server_url: - raise AgentErrorHandler.handle_server_error(Exception("Server URL unavailable after startup"), "configuration") - - # Load base configuration as dictionary - expanded_config_file = Path(os.path.expanduser(config_file)) - base_config_dict = {} - - if expanded_config_file.exists(): - try: - with open(expanded_config_file, 'r') as f: - base_config_dict = yaml.safe_load(f) or {} - except Exception as e: # pylint: disable=broad-exception-caught - if verbose: - ProgressReporter.show_status_message(f"Warning: Could not load config file: {e}", "warning") - # Continue with empty dict if config file cannot be loaded - base_config_dict = {} - - # Generate enhanced MCP config - mcp_config_dict = ConfigurationGenerator.generate_mcp_config(base_config_dict, server_url) - mcp_config_dict.pop("llms", None) # Remove existing llms to avoid conflicts - - # Create temporary config file with MCP settings - with tempfile.NamedTemporaryFile(mode='w', suffix='.yaml', delete=False) as temp_file: - yaml.dump(mcp_config_dict, temp_file) - temp_config_path = temp_file.name - - try: - # Load config from temporary file using Holmes API - enhanced_config = Config.load_from_file( - Path(temp_config_path), - model=model, - api_key=api_key, - max_steps=max_steps, - ) - return enhanced_config - finally: - # Clean up temporary file - try: - os.unlink(temp_config_path) - except OSError: - pass # Ignore cleanup errors - - -def _run_async_operation(async_func, *args, **kwargs): - """ - Run async operation in isolated event loop to avoid nested loop conflicts. - - This helper safely executes async operations by: - 1. First attempting to use asyncio.run() (normal case) - 2. If that fails due to existing event loop, using concurrent execution - - :param async_func: Async function to execute - :param args: Positional arguments for the function - :param kwargs: Keyword arguments for the function - :return: Result of the async function execution - :raises: Exception if the async operation fails - """ - import asyncio - import concurrent.futures - - try: - # Normal case: no existing event loop - return asyncio.run(async_func(*args, **kwargs)) - except RuntimeError as e: - if "cannot be called from a running event loop" in str(e): - # Nested case: run in separate thread with new event loop - def run_in_thread(): - # Create new event loop in this thread - loop = asyncio.new_event_loop() - asyncio.set_event_loop(loop) - try: - return loop.run_until_complete(async_func(*args, **kwargs)) - finally: - loop.close() - asyncio.set_event_loop(None) - - # Execute in thread pool to avoid blocking - with concurrent.futures.ThreadPoolExecutor(max_workers=1) as executor: - future = executor.submit(run_in_thread) - return future.result(timeout=300) # 5 minute timeout - else: - # Re-raise other RuntimeErrors - raise - - -class MCPLifecycleManager: - """ - Manages MCP (Model Context Protocol) lifecycle with isolated async operations. - - This class decouples MCP lifecycle management (setup/cleanup) from main execution - to prevent asyncio event loop conflicts. It provides synchronous wrappers for - async operations that can be safely called from any context. - """ - - def __init__(self): - """Initialize MCP lifecycle manager.""" - self.mcp_manager = None - self.config = None - self._setup_params = None - self._loop = None # dedicated loop for MCP subprocess lifecycle - - def _ensure_loop(self): - """Ensure a dedicated event loop exists for MCP lifecycle.""" - import asyncio - if self._loop is None or self._loop.is_closed(): - self._loop = asyncio.new_event_loop() - - def setup_mcp_sync(self, config_params): - """ - Synchronous wrapper for MCP setup phase. - - This method handles: - - MCP manager initialization - - Binary download and validation - - MCP server startup - - Configuration generation - - :param config_params: Dictionary containing config parameters: - - config_file: Path to configuration file - - model: Model name - - api_key: API key - - max_steps: Maximum steps - - verbose: Enable verbose output - :type config_params: dict - :return: Dictionary with setup results including config and server info - :rtype: dict - :raises: Exception if MCP setup fails - """ - self._setup_params = config_params - self._ensure_loop() - try: - return self._loop.run_until_complete(self._setup_mcp_async(config_params)) - except RuntimeError as e: - # In rare cases if a conflicting loop is running in this thread, fall back to thread execution - if "This event loop is already running" in str(e): - import concurrent.futures - - def run_in_thread(): - self._ensure_loop() - return self._loop.run_until_complete(self._setup_mcp_async(config_params)) - with concurrent.futures.ThreadPoolExecutor(max_workers=1) as executor: - future = executor.submit(run_in_thread) - return future.result(timeout=300) - raise - - def cleanup_mcp_sync(self): - """ - Synchronous wrapper for MCP cleanup phase. - - Gracefully shuts down MCP server and cleans up resources. - Safe to call even if setup failed or was never called. - """ - if self.mcp_manager: - try: - self._ensure_loop() - self._loop.run_until_complete(self._cleanup_mcp_async()) - except Exception as e: # pylint: disable=broad-exception-caught - # Log cleanup errors but don't re-raise to avoid masking original errors - try: - from .user_feedback import ProgressReporter - ProgressReporter.show_status_message( - f"Warning: Error during MCP cleanup: {str(e)}", "warning" - ) - except Exception: # pylint: disable=broad-exception-caught - # Fallback to basic logging if ProgressReporter fails - print(f"Warning: Error during MCP cleanup: {str(e)}") - finally: - # Close the dedicated loop after cleanup - try: - if self._loop is not None and not self._loop.is_closed(): - self._loop.close() - except Exception: # pylint: disable=broad-exception-caught - pass - self._loop = None - - async def _setup_mcp_async(self, config_params): - """ - Async MCP setup: binary download, server start, config generation. - - :param config_params: Configuration parameters dictionary - :return: Setup results including config and server information - :raises: Exception if any setup step fails - """ - verbose = config_params.get('verbose', False) - - # Initialize MCP manager - self.mcp_manager = _initialize_mcp_manager(verbose) - - # Setup MCP mode using existing function - self.config = await _setup_mcp_mode( - self.mcp_manager, - config_params['config_file'], - config_params['model'], - config_params['api_key'], - config_params['max_steps'], - verbose - ) - - # Return setup results - return { - 'config': self.config, - 'server_url': self.mcp_manager.get_server_url(), - 'server_port': self.mcp_manager.get_server_port(), - 'manager': self.mcp_manager - } - - async def _cleanup_mcp_async(self): - """ - Async MCP cleanup: graceful server shutdown. - """ - if self.mcp_manager: - self.mcp_manager.stop_server() # Now synchronous, no await needed - self.mcp_manager = None - self.config = None - self._setup_params = None - - def is_mcp_active(self): - """ - Check if MCP is currently active. - - :return: True if MCP manager is initialized and server is running - :rtype: bool - """ - return (self.mcp_manager is not None and - self.mcp_manager.is_server_running()) - - def get_config(self): - """ - Get the current configuration object. - - :return: Holmes configuration object if setup succeeded, None otherwise - :rtype: object or None - """ - return self.config - - -def _build_aks_context(cluster_name, resource_group_name, subscription_id, is_mcp_mode): - """ - Build AKS context prompt for the AI agent. - - :param cluster_name: AKS cluster name - :param resource_group_name: Resource group name - :param subscription_id: Azure subscription ID - :param is_mcp_mode: Whether running in MCP mode (affects toolset instructions) - :return: Rendered AKS context prompt - """ - from holmes.plugins.prompts import load_and_render_prompt - - aks_template_context = { - "cluster_name": cluster_name, - "resource_group": resource_group_name, - "subscription_id": subscription_id, - "is_mcp_mode": is_mcp_mode, - } - - # Select the appropriate prompt template based on mode - prompt_template = AKS_CONTEXT_PROMPT_MCP if is_mcp_mode else AKS_CONTEXT_PROMPT_TRADITIONAL - - return load_and_render_prompt(prompt_template, aks_template_context) - - -def _run_interactive_mode_sync(ai, cmd, resource_group_name, name, - prompt, console, show_tool_output, is_mcp_mode, telemetry): - """ - Run interactive mode synchronously - no event loop conflicts. - - This function runs Holmes interactive loop without any async context, - preventing the nested event loop conflicts that were causing failures. - - :param ai: Holmes AI client (pre-configured with toolsets) - :param cmd: Azure CLI command context - :param resource_group_name: AKS resource group name - :param name: AKS cluster name - :param prompt: Initial prompt (optional) - :param console: Console object for output - :param show_tool_output: Whether to show tool output - :param is_mcp_mode: Whether running in MCP mode (affects prompt selection) - :param telemetry: CLITelemetryClient instance for tracking events - """ - from holmes.interactive import run_interactive_loop - - # Prepare AKS context with mode-specific prompt - subscription_id = get_subscription_id(cmd.cli_ctx) - aks_context = _build_aks_context(name, resource_group_name, subscription_id, is_mcp_mode) - - console.print( - "[bold yellow]This tool uses AI to generate responses and may not always be accurate.[bold yellow]" - ) - - # Holmes interactive loop - runs synchronously ✅ - run_interactive_loop( - ai, console, prompt, None, None, - show_tool_output=show_tool_output, - system_prompt_additions=aks_context, - check_version=False, - feedback_callback=telemetry.track_agent_feedback if telemetry else None - ) - - -def _run_noninteractive_mode_sync(ai, config, cmd, resource_group_name, name, - prompt, console, echo, show_tool_output, is_mcp_mode): - """ - Run non-interactive mode synchronously. - - :param ai: Holmes AI client (pre-configured with toolsets) - :param config: Holmes configuration object (for runbook catalog) - :param cmd: Azure CLI command context - :param resource_group_name: AKS resource group name - :param name: AKS cluster name - :param prompt: User prompt - :param console: Console object for output - :param echo: Whether to echo prompts - :param show_tool_output: Whether to show tool output - :param is_mcp_mode: Whether running in MCP mode (affects prompt selection) - """ - import socket - import uuid - - from holmes.core.prompt import build_initial_ask_messages - from holmes.plugins.destinations import DestinationType - from holmes.plugins.interfaces import Issue - from holmes.utils.console.result import handle_result - - # Prepare AKS context with mode-specific prompt - subscription_id = get_subscription_id(cmd.cli_ctx) - aks_context = _build_aks_context(name, resource_group_name, subscription_id, is_mcp_mode) - - console.print( - "[bold yellow]This tool uses AI to generate responses and may not always be accurate.[bold yellow]" - ) - - if echo and prompt: - console.print("[bold yellow]User:[/bold yellow] " + prompt) - - # Build and execute the conversation - messages = build_initial_ask_messages( - console, prompt, None, ai.tool_executor, - config.get_runbook_catalog(), system_prompt_additions=aks_context - ) - - response = ai.call(messages) - - # Handle the result - issue = Issue( - id=str(uuid.uuid4()), name=prompt, source_type="holmes-ask", - raw={"prompt": prompt, "full_conversation": response.messages}, - source_instance_id=socket.gethostname() - ) - - handle_result(response, console, DestinationType.CLI, config, - issue, show_tool_output, False) - - -def _setup_traditional_mode_sync(config_file: str, model: str, api_key: str, - max_steps: int, verbose: bool = False): - """ - Synchronous wrapper for traditional mode setup. - - :param config_file: Path to configuration file - :param model: Model name - :param api_key: API key - :param max_steps: Maximum steps - :param verbose: Enable verbose output - :return: Traditional Holmes configuration - """ - import tempfile - from pathlib import Path - - import yaml - from holmes.config import Config - - from .config_generator import ConfigurationGenerator - - # Load base config - expanded_config_file = Path(os.path.expanduser(config_file)) - base_config_dict = {} - - if expanded_config_file.exists(): - try: - with open(expanded_config_file, 'r') as f: - base_config_dict = yaml.safe_load(f) or {} - except Exception as e: # pylint: disable=broad-exception-caught - if verbose: - print(f"Warning: Could not load config file: {e}") - base_config_dict = {} - - # Generate traditional config - traditional_config_dict = ConfigurationGenerator.generate_traditional_config(base_config_dict) - traditional_config_dict.pop("llms", None) # Remove existing llms to avoid conflicts - - # Create temporary config and load - with tempfile.NamedTemporaryFile(mode='w', suffix='.yaml', delete=False) as temp_file: - yaml.dump(traditional_config_dict, temp_file) - temp_config_path = temp_file.name - - try: - return Config.load_from_file(Path(temp_config_path), model=model, - api_key=api_key, max_steps=max_steps) - finally: - try: - os.unlink(temp_config_path) - except OSError: - pass diff --git a/src/aks-agent/azext_aks_agent/agent/aks.py b/src/aks-agent/azext_aks_agent/agent/aks.py new file mode 100644 index 00000000000..041bd2b17a3 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/agent/aks.py @@ -0,0 +1,70 @@ + +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import errno +import os + +from knack.log import get_logger +from knack.util import CLIError + +logger = get_logger(__name__) + +# NOTE(mainred): we can use get_default_cli().invoke() to trigger `az aks get-credentials` to fetch the kubeconfig, +# but this command shows redundant warning log like +# "The behavior of this command has been altered by the following extension: aks-preview" when aks-preview is installed +# "Merged "" as current context in /" when the kubeconfig file already exists +# and `--only-show-errors` does not suppress it for the global log handler has been initialized before invoking the +# command, in the "az aks agent" commands. Resetting the log level for get-credentials will break the log behavior of +# `az aks agent`. So we directly use the SDK to get the kubeconfig here, which makes sense for an aks extension. + + +def get_aks_credentials( + client: str, + resource_group_name: str, + cluster_name: str +) -> str: + """Get AKS cluster kubeconfig.""" + credentialResults = client.list_cluster_user_credentials( + resource_group_name, cluster_name + ) + if not credentialResults: + raise CLIError("No Kubernetes credentials found.") + + kubeconfig = credentialResults.kubeconfigs[0].value.decode( + encoding='UTF-8') + + kubeconfig_path = _get_kubeconfig_file_path(resource_group_name, cluster_name) + + # Ensure the kubeconfig file exists and write kubeconfig to it + with os.fdopen(os.open(kubeconfig_path, os.O_RDWR | os.O_CREAT | os.O_TRUNC, 0o600), 'wt') as f: + f.write(kubeconfig) + + logger.info("Kubeconfig downloaded successfully to: %s", kubeconfig_path) + return kubeconfig_path + + +def _get_kubeconfig_file_path( # pylint: disable=unused-argument + resource_group_name: str, + cluster_name: str, + subscription_id: str = None +): + """Get the path to the kubeconfig file for the AKS cluster.""" + + home_dir = os.path.expanduser("~") + kubeconfig_dir = os.path.join(home_dir, ".aks-agent", "kube") + + # ensure that kube folder exists + if kubeconfig_dir and not os.path.exists(kubeconfig_dir): + try: + os.makedirs(kubeconfig_dir) + except OSError as ex: + if ex.errno != errno.EEXIST: + raise + + kubeconfig_filename = f"kubeconfig-{resource_group_name}-{cluster_name}" + kubeconfig_path = os.path.join(kubeconfig_dir, kubeconfig_filename) + + return kubeconfig_path diff --git a/src/aks-agent/azext_aks_agent/agent/binary_manager.py b/src/aks-agent/azext_aks_agent/agent/binary_manager.py deleted file mode 100644 index 099fdbdce1d..00000000000 --- a/src/aks-agent/azext_aks_agent/agent/binary_manager.py +++ /dev/null @@ -1,517 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Binary management module for AKS MCP integration. - -This module handles the download, validation, and management of the aks-mcp binary -required for Model Context Protocol integration with the AKS agent. -""" - -import os -import platform -import subprocess -import stat -from typing import Optional - -from .._consts import ( - CONST_MCP_BINARY_NAME, - CONST_MCP_MIN_VERSION, - CONST_MCP_GITHUB_REPO, -) -from .error_handler import BinaryError -from .status_models import BinaryStatus - - -class AksMcpBinaryManager: - """Manages aks-mcp binary download and validation.""" - - GITHUB_RELEASES_URL = f"https://api.github.com/repos/{CONST_MCP_GITHUB_REPO}/releases" - - def __init__(self, install_dir: str): - """ - Initialize the binary manager. - - :param install_dir: Directory where the binary should be installed - :type install_dir: str - """ - self.install_dir = install_dir - self.binary_path = self._get_binary_path() - - def _get_binary_path(self) -> str: - """Get the expected path for the binary.""" - binary_name = CONST_MCP_BINARY_NAME - if platform.system() == "Windows": - binary_name += ".exe" - return os.path.join(self.install_dir, binary_name) - - def get_binary_path(self) -> str: - """Get expected binary path.""" - return self.binary_path - - def is_binary_available(self) -> bool: - """ - Check if binary exists and is executable. - - :return: True if binary is available and executable, False otherwise - :rtype: bool - """ - if not os.path.exists(self.binary_path): - return False - - # Check if file is executable - try: - return os.access(self.binary_path, os.X_OK) - except OSError: - return False - - def get_binary_version(self) -> Optional[str]: - """ - Get binary version if available. - - :return: Version string if available, None otherwise - :rtype: Optional[str] - """ - if not self.is_binary_available(): - return None - - try: - # Run the binary with --version flag - result = subprocess.run( - [self.binary_path, "--version"], - capture_output=True, - text=True, - timeout=10, - check=False - ) - - if result.returncode == 0: - output = result.stdout.strip() - # Parse aks-mcp version output format: - # "aks-mcp version v0.0.6-16-ga7464eb+2025-08-18T13:33:38Z" - import re - - # First try to match git-style version format: v0.0.6-16-ga7464eb - git_version_match = re.search(r'v?(\d+\.\d+\.\d+)(?:-\d+-g[a-f0-9]+)?(?:\+[^\s]+)?', output) - if git_version_match: - return git_version_match.group(1) - - # Fallback to simple semantic version pattern - version_match = re.search(r'(\d+\.\d+\.\d+(?:\.\d+)?)', output) - if version_match: - return version_match.group(1) - - return None - - except (subprocess.TimeoutExpired, subprocess.SubprocessError, OSError): - return None - - def validate_version(self, required_version: str = CONST_MCP_MIN_VERSION) -> bool: - """ - Validate binary meets version requirements. - - :param required_version: Minimum required version (default from constants) - :type required_version: str - :return: True if version meets requirements, False otherwise - :rtype: bool - """ - current_version = self.get_binary_version() - if not current_version: - return False - - try: - # Parse version strings for comparison - def parse_version(version_str): - return tuple(map(int, version_str.split('.'))) - - current_parsed = parse_version(current_version) - required_parsed = parse_version(required_version) - - return current_parsed >= required_parsed - - except (ValueError, TypeError): - # If version parsing fails, assume invalid - return False - - def _create_installation_directory(self) -> bool: - """ - Create installation directory if needed. - - :return: True if directory exists or was created successfully, False otherwise - :rtype: bool - """ - try: - os.makedirs(self.install_dir, exist_ok=True) - return True - except (OSError, PermissionError): - return False - - async def ensure_binary(self, progress_callback: callable = None) -> BinaryStatus: - """ - Complete binary availability check and auto-download. - - This is the main entry point for binary management. It checks if the binary - is available and valid, and automatically downloads it if needed. - - :param progress_callback: Optional callback for download progress updates - :type progress_callback: callable - :return: Binary status information - :rtype: BinaryStatus - """ - try: - # Check if binary already exists and is valid using enhanced status - if self.is_binary_available(): - version = self.get_binary_version() - version_valid = self.validate_version() - status = BinaryStatus.from_file_path( - self.binary_path, - version=version, - version_valid=version_valid - ) - - if status.ready: - # Binary is ready to use - return status - else: - # Binary not available, create basic status - status = BinaryStatus(path=self.binary_path) - - # Binary is missing or invalid, attempt to download - if not self._create_installation_directory(): - status.error_message = f"Failed to create installation directory: {self.install_dir}" - return status - - # Download the binary - download_success = await self.download_binary(progress_callback=progress_callback) - - if download_success: - # Verify the downloaded binary using enhanced status - version = self.get_binary_version() - version_valid = self.validate_version() - - if os.path.exists(self.binary_path): - status = BinaryStatus.from_file_path( - self.binary_path, - version=version, - version_valid=version_valid - ) - else: - status = BinaryStatus( - available=True, - version=version, - path=self.binary_path, - version_valid=version_valid - ) - - if not status.ready and version is not None: - # Binary present but version invalid - status.error_message = "Downloaded binary failed validation" - else: - status.error_message = "Binary download failed" - - except Exception as e: # pylint: disable=broad-exception-caught - status = BinaryStatus( - path=self.binary_path, - error_message=f"Unexpected error during binary management: {str(e)}" - ) - - return status - - def _get_platform_info(self) -> tuple[str, str]: - """ - Get platform and architecture information for binary selection. - - :return: Tuple of (platform, architecture) - :rtype: tuple[str, str] - """ - system = platform.system().lower() - machine = platform.machine().lower() - - # Map platform names - platform_map = { - "windows": "windows", - "darwin": "darwin", - "linux": "linux" - } - - # Map architecture names - arch_map = { - "x86_64": "amd64", - "amd64": "amd64", - "arm64": "arm64", - "aarch64": "arm64" - } - - platform_name = platform_map.get(system, system) - arch_name = arch_map.get(machine, machine) - - return platform_name, arch_name - - def _make_binary_executable(self, binary_path: str) -> bool: - """ - Set executable permissions on the binary (Unix-like systems). - - :param binary_path: Path to the binary file - :type binary_path: str - :return: True if successful, False otherwise - :rtype: bool - """ - try: - if platform.system() != "Windows": - # Set executable permissions (owner, group, others can execute) - current_mode = os.stat(binary_path).st_mode - os.chmod(binary_path, current_mode | stat.S_IEXEC | stat.S_IXGRP | stat.S_IXOTH) - return True - except (OSError, IOError): - return False - - async def get_latest_release_info(self) -> dict: - """ - Get latest release information from GitHub API. - - :return: Release information dictionary - :rtype: dict - :raises: Exception if API request fails - """ - import json - import aiohttp - - try: - async with aiohttp.ClientSession() as session: - async with session.get( - f"{self.GITHUB_RELEASES_URL}/latest", - timeout=aiohttp.ClientTimeout(total=30) - ) as response: - if response.status == 200: - return await response.json() - raise RuntimeError(f"GitHub API request failed with status {response.status}") - - except aiohttp.ClientError as e: - raise RuntimeError(f"Network error accessing GitHub API: {e}") from e - except json.JSONDecodeError as e: - raise RuntimeError(f"Failed to parse GitHub API response: {e}") from e - - def _get_platform_binary_name(self) -> str: - """ - Get platform-specific binary name from GitHub release assets. - - :return: Binary name pattern for the current platform - :rtype: str - """ - platform_name, arch_name = self._get_platform_info() - - # GitHub release asset naming convention for aks-mcp (actual format) - # Examples: aks-mcp-linux-amd64, aks-mcp-windows-amd64.exe, aks-mcp-darwin-arm64 - binary_name = f"aks-mcp-{platform_name}-{arch_name}" - - if platform.system() == "Windows": - binary_name += ".exe" - - return binary_name - - def _verify_binary_integrity(self, file_path: str, release_info: dict = None) -> bool: # pylint: disable=too-many-locals,too-many-return-statements,too-many-nested-blocks,too-many-branches - """ - Verify downloaded binary integrity using in-toto attestation files. - - :param file_path: Path to the downloaded binary - :type file_path: str - :param release_info: Release information from GitHub API (optional) - :type release_info: dict - :return: True if binary integrity is verified, False otherwise - :rtype: bool - """ - try: - # Basic file existence check - if not os.path.exists(file_path): - return False - - # If no release info provided, use basic verification - if not release_info: - return True - - # Find the corresponding .intoto.jsonl file - binary_filename = os.path.basename(file_path) - intoto_filename = f"{binary_filename}.intoto.jsonl" - intoto_url = None - - for asset in release_info.get("assets", []): - if asset["name"] == intoto_filename: - intoto_url = asset["browser_download_url"] - break - - if not intoto_url: - # No attestation file found, fall back to basic verification - return True - - # Try to download and verify attestation synchronously - # For production, we could enhance this with proper async HTTP client - # For now, use basic verification as fallback - try: - import urllib.request - import json - import hashlib - - # Download attestation file - with urllib.request.urlopen(intoto_url, timeout=30) as response: - if response.status != 200: - return True # Fall back to basic verification - attestation_content = response.read().decode('utf-8') - - # Parse the in-toto attestation (JSONL format - one JSON object per line) - for line in attestation_content.strip().split('\n'): # pylint: disable=too-many-nested-blocks - if line.strip(): - try: - attestation = json.loads(line) - - # Look for the subject information containing the binary hash - predicate = attestation.get("predicate", {}) - materials = predicate.get("materials", {}) - - # Try to find hash in different possible locations in the attestation - binary_hash = None - - # Check for direct subject hash - if "subject" in attestation and isinstance(attestation["subject"], list): - for subject in attestation["subject"]: - if subject.get("name") == binary_filename: - digest = subject.get("digest", {}) - binary_hash = digest.get("sha256") - break - - # Fallback: Check materials for hash entries - if not binary_hash and isinstance(materials, list): - for material in materials: - if material.get("uri", "").endswith(binary_filename): - digest = material.get("digest", {}) - binary_hash = digest.get("sha256") - break - - if not binary_hash: - continue - - # Compute SHA-256 of the binary file - sha256_hash = hashlib.sha256() - with open(file_path, 'rb') as f: - while True: - chunk = f.read(8192) - if not chunk: - break - sha256_hash.update(chunk) - calculated_hash = sha256_hash.hexdigest() - - # Verify the hash matches - return calculated_hash == binary_hash - - except (json.JSONDecodeError, KeyError): - continue - - # If we couldn't parse the attestation or find hash, fall back to basic verification - return True - - except Exception: # pylint: disable=broad-exception-caught - # If attestation verification fails, fall back to basic verification - return True - - except Exception: # pylint: disable=broad-exception-caught - # If any error occurs, fall back to basic file existence check for reliability - try: - return os.path.exists(file_path) - except OSError: - return False - - async def download_binary( - self, - progress_callback: callable = None - ) -> bool: - """ - Download binary from GitHub releases. - - :param progress_callback: Callback function for progress updates (downloaded, total, filename) - :type progress_callback: callable - :return: True if download successful, False otherwise - :rtype: bool - """ - import aiohttp - - try: - # Get release information - release_info = await self.get_latest_release_info() - - # Find the appropriate asset for current platform - platform_binary_name = self._get_platform_binary_name() - download_url = None - - for asset in release_info.get("assets", []): - if asset["name"] == platform_binary_name: - download_url = asset["browser_download_url"] - break - - if not download_url: - raise BinaryError( - f"No binary available for your platform ({platform_binary_name})", - "PLATFORM_UNSUPPORTED", - [ - "Check if your platform is supported by the aks-mcp project", - "Run without --aks-mcp to stay in traditional mode", - f"Manually install the binary from {self.GITHUB_RELEASES_URL} if available" - ] - ) - - # Create installation directory if it doesn't exist - if not self._create_installation_directory(): - raise BinaryError( - f"Cannot create installation directory: {self.install_dir}", - "DIRECTORY_CREATION_FAILED", - [ - "Check if you have write permissions to the Azure CLI config directory", - "Ensure sufficient disk space is available", - "Try running with elevated permissions if necessary" - ] - ) - - # Download the binary - async with aiohttp.ClientSession() as session: - async with session.get( - download_url, - timeout=aiohttp.ClientTimeout(total=300) # 5 minutes timeout - ) as response: - if response.status != 200: - raise RuntimeError(f"Download failed with status {response.status}") - - total_size = int(response.headers.get('content-length', 0)) - downloaded = 0 - - # Download with progress tracking - with open(self.binary_path, 'wb') as f: - async for chunk in response.content.iter_chunked(8192): - f.write(chunk) - downloaded += len(chunk) - - if progress_callback and total_size > 0: - progress_callback(downloaded, total_size, platform_binary_name) - - # Verify download integrity using in-toto attestation (now synchronous) - if not self._verify_binary_integrity(self.binary_path, release_info): - # Clean up invalid binary - try: - os.remove(self.binary_path) - except OSError: - pass - raise RuntimeError("Downloaded binary failed integrity check") - - # Make binary executable - if not self._make_binary_executable(self.binary_path): - raise RuntimeError("Failed to make binary executable") - - return True - - except Exception as e: - # Clean up partial download on failure - try: - if os.path.exists(self.binary_path): - os.remove(self.binary_path) - except OSError: - pass - raise e diff --git a/src/aks-agent/azext_aks_agent/agent/config_generator.py b/src/aks-agent/azext_aks_agent/agent/config_generator.py deleted file mode 100644 index 71d29134155..00000000000 --- a/src/aks-agent/azext_aks_agent/agent/config_generator.py +++ /dev/null @@ -1,174 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Configuration generation for AKS Agent with MCP integration support. -""" - -from typing import Dict, Any -import copy - - -class ConfigurationGenerator: - """Generate Holmes configuration for different modes (MCP vs Traditional).""" - - # Default built-in toolsets that conflict with MCP - DEFAULT_CONFLICTING_TOOLSETS = { - "aks/node-health": {"enabled": True}, - "aks/core": {"enabled": True}, - "kubernetes/core": {"enabled": True}, - "kubernetes/logs": {"enabled": True}, - "kubernetes/live-metrics": {"enabled": True}, - "bash": {"enabled": True} - } - - @staticmethod - def generate_mcp_config(base_config: Dict[str, Any], server_url: str) -> Dict[str, Any]: - """ - Generate MCP mode configuration. - - :param base_config: Base Holmes configuration dictionary - :param server_url: MCP server URL (e.g., "http://localhost:8003/sse") - :return: Enhanced configuration with MCP server integration - """ - if not base_config: - base_config = {} - - if not server_url: - raise ValueError("server_url is required for MCP configuration") - - # Deep copy to avoid modifying the original - config = copy.deepcopy(base_config) - - # Disable conflicting built-in toolsets - toolsets = config.get("toolsets", {}) - for toolset_name in ConfigurationGenerator.DEFAULT_CONFLICTING_TOOLSETS: - toolsets[toolset_name] = {"enabled": False} - - config["toolsets"] = toolsets - - # Add MCP server configuration - mcp_servers = config.get("mcp_servers", {}) - mcp_servers["aks-mcp"] = { - "description": "AKS MCP server", - "url": server_url - } - config["mcp_servers"] = mcp_servers - - return config - - @staticmethod - def generate_traditional_config(base_config: Dict[str, Any]) -> Dict[str, Any]: - """ - Generate traditional mode configuration. - - :param base_config: Base Holmes configuration dictionary - :return: Configuration with traditional built-in toolsets enabled - """ - if not base_config: - base_config = {} - - # Deep copy to avoid modifying the original - config = copy.deepcopy(base_config) - - # Ensure all built-in toolsets are enabled (default behavior) - toolsets = config.get("toolsets", {}) - - for toolset_name, toolset_config in ConfigurationGenerator.DEFAULT_CONFLICTING_TOOLSETS.items(): - toolsets[toolset_name] = copy.deepcopy(toolset_config) - - config["toolsets"] = toolsets - - # Remove any MCP server configurations if they exist - if "mcp_servers" in config: - del config["mcp_servers"] - - return config - - @staticmethod - def merge_configs(base: Dict[str, Any], override: Dict[str, Any]) -> Dict[str, Any]: - """ - Merge configuration dictionaries with deep merge for nested structures. - - :param base: Base configuration dictionary - :param override: Override configuration dictionary - :return: Merged configuration with override values taking precedence - """ - if not base: - return copy.deepcopy(override) if override else {} - - if not override: - return copy.deepcopy(base) - - result = copy.deepcopy(base) - - for key, value in override.items(): - if key in result and isinstance(result[key], dict) and isinstance(value, dict): - # Deep merge nested dictionaries - result[key] = ConfigurationGenerator.merge_configs(result[key], value) - else: - # Override value - result[key] = copy.deepcopy(value) - - return result - - @staticmethod - def validate_mcp_config(config: Dict[str, Any]) -> bool: - """ - Validate that MCP configuration is properly structured. - - :param config: Configuration dictionary to validate - :return: True if valid MCP configuration - """ - if not isinstance(config, dict): - return False - - # Check MCP servers exist - mcp_servers = config.get("mcp_servers") - if not isinstance(mcp_servers, dict): - return False - - # Check aks-mcp server configuration - aks_mcp = mcp_servers.get("aks-mcp") - if not isinstance(aks_mcp, dict): - return False - - required_fields = ["description", "url"] - for field in required_fields: - if field not in aks_mcp: - return False - - # Check conflicting toolsets are disabled - toolsets = config.get("toolsets", {}) - for toolset_name in ConfigurationGenerator.DEFAULT_CONFLICTING_TOOLSETS: - toolset_config = toolsets.get(toolset_name, {}) - if toolset_config.get("enabled", True): # Default enabled if not specified - return False - - return True - - @staticmethod - def validate_traditional_config(config: Dict[str, Any]) -> bool: - """ - Validate that traditional configuration is properly structured. - - :param config: Configuration dictionary to validate - :return: True if valid traditional configuration - """ - if not isinstance(config, dict): - return False - - # Check that MCP servers are not configured - if "mcp_servers" in config: - return False - - # Check that traditional toolsets are enabled - toolsets = config.get("toolsets", {}) - for toolset_name in ConfigurationGenerator.DEFAULT_CONFLICTING_TOOLSETS: - toolset_config = toolsets.get(toolset_name, {}) - if not toolset_config.get("enabled", False): - return False - - return True diff --git a/src/aks-agent/azext_aks_agent/agent/console.py b/src/aks-agent/azext_aks_agent/agent/console.py new file mode 100644 index 00000000000..f8b2068a43b --- /dev/null +++ b/src/aks-agent/azext_aks_agent/agent/console.py @@ -0,0 +1,39 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +""" +Console utilities for AKS Agent CLI. +Provides a singleton Rich Console instance and color constants for consistent terminal output. +""" + +from rich.console import Console + +# Color constants for terminal output +HELP_COLOR = "cyan" # Informational messages, help text +SUCCESS_COLOR = "bold green" # Success messages +WARNING_COLOR = "bold yellow" # Warning messages +ERROR_COLOR = "bold red" # Error messages +INFO_COLOR = "yellow" # General information +HINT_COLOR = "bright_black" # Hints for user input +DEFAULT_VALUE_COLOR = "bright_black" # Default value displays + +# Global singleton console instance +_console_instance = None + + +def get_console() -> Console: + """ + Get the singleton Rich Console instance. + + This ensures all console output in the AKS agent uses the same + Console instance for consistent formatting and behavior. + + Returns: + Console: The shared Rich Console instance + """ + global _console_instance # pylint: disable=global-statement + if _console_instance is None: + _console_instance = Console() + return _console_instance diff --git a/src/aks-agent/azext_aks_agent/agent/error_handler.py b/src/aks-agent/azext_aks_agent/agent/error_handler.py deleted file mode 100644 index 72c05f68238..00000000000 --- a/src/aks-agent/azext_aks_agent/agent/error_handler.py +++ /dev/null @@ -1,255 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Centralized error handling and user-friendly message generation for AKS Agent. -Provides consistent error formatting and actionable guidance for common failure scenarios. -""" - -from typing import Dict, Any, List -from knack.util import CLIError - - -class AgentError(Exception): - """Base exception for AKS Agent errors with enhanced user messaging.""" - - def __init__(self, message: str, error_code: str = None, suggestions: List[str] = None): - """ - Initialize agent error with user-friendly message and suggestions. - - :param message: Primary error message - :param error_code: Unique error code for debugging - :param suggestions: List of actionable suggestions for the user - """ - super().__init__(message) - self.message = message - self.error_code = error_code or "GENERAL" - self.suggestions = suggestions or [] - - -class MCPError(AgentError): - """MCP-specific errors with fallback guidance.""" - - def __init__(self, message: str, error_code: str = None, suggestions: List[str] = None): - default_suggestions = [ - "Try running without --aks-mcp to stay in traditional mode", - "Check your internet connection for MCP binary download", - "Verify that port 8003 is available for MCP server" - ] - combined_suggestions = (suggestions or []) + default_suggestions - super().__init__(message, error_code or "MCP", combined_suggestions) - - -class BinaryError(MCPError): - """Binary download and management errors.""" - - def __init__(self, message: str, error_code: str = None, suggestions: List[str] = None): - default_suggestions = [ - "Ensure you have internet connectivity to download the MCP binary", - "Check if your firewall allows connections to GitHub releases", - "Try running the command again - downloads may be temporarily unavailable" - ] - combined_suggestions = (suggestions or []) + default_suggestions - super().__init__(message, error_code or "BINARY", combined_suggestions) - - -class ServerError(MCPError): - """MCP server lifecycle and communication errors.""" - - def __init__(self, message: str, error_code: str = None, suggestions: List[str] = None): - default_suggestions = [ - "Check if another process is using the MCP server port", - "Ensure the MCP binary has execute permissions", - "Try restarting the agent command" - ] - combined_suggestions = (suggestions or []) + default_suggestions - super().__init__(message, error_code or "SERVER", combined_suggestions) - - -class ConfigurationError(AgentError): - """Configuration generation and validation errors.""" - - def __init__(self, message: str, error_code: str = None, suggestions: List[str] = None): - default_suggestions = [ - "Check that your configuration file is valid YAML", - "Verify all required configuration fields are present", - "Try removing custom configuration to use defaults" - ] - combined_suggestions = (suggestions or []) + default_suggestions - super().__init__(message, error_code or "CONFIG", combined_suggestions) - - -class AgentErrorHandler: - """Centralized error handling and message formatting for AKS Agent.""" - - @staticmethod - def format_error_message(error: Exception, show_suggestions: bool = True) -> str: - """ - Format error message with consistent styling and suggestions. - - :param error: Exception to format - :param show_suggestions: Whether to include suggestions in output - :return: Formatted error message - """ - if isinstance(error, AgentError): - message = f"AKS Agent Error ({error.error_code}): {error.message}" - - if show_suggestions and error.suggestions: - message += "\n\nSuggestions:" - for i, suggestion in enumerate(error.suggestions, 1): - message += f"\n {i}. {suggestion}" - - return message - - # Handle non-AgentError exceptions - return f"AKS Agent Error: {str(error)}" - - @staticmethod - def create_cli_error(agent_error: AgentError, show_suggestions: bool = True) -> CLIError: - """ - Convert AgentError to CLIError with formatted message. - - :param agent_error: AgentError instance - :param show_suggestions: Whether to include suggestions - :return: CLIError with formatted message - """ - formatted_message = AgentErrorHandler.format_error_message(agent_error, show_suggestions) - return CLIError(formatted_message) - - @staticmethod - def handle_mcp_setup_error(original_error: Exception, context: str = "") -> MCPError: - """ - Handle MCP setup errors with contextual suggestions. - - :param original_error: Original exception that occurred - :param context: Context of the operation (e.g., "initialization") - :return: Enhanced MCPError with specific guidance - """ - error_message = "MCP setup failed" - if context: - error_message += f" during {context}" - error_message += f": {str(original_error)}" - - suggestions = [] - error_str = str(original_error).lower() - - # Provide specific suggestions based on error content - if "network" in error_str or "connection" in error_str: - suggestions.extend([ - "Check your internet connection", - "Verify firewall settings allow GitHub access", - "Try again after a few minutes if GitHub is temporarily unavailable" - ]) - elif "permission" in error_str or "access" in error_str: - suggestions.extend([ - "Check file system permissions in your Azure CLI config directory", - "Ensure you have write access to download the MCP binary", - "Try running with elevated permissions if necessary" - ]) - elif "port" in error_str or "address" in error_str: - suggestions.extend([ - "Check if port 8003 is already in use by another application", - "Close other applications that might be using network ports", - "Restart your terminal/command prompt and try again" - ]) - - return MCPError(error_message, "MCP_SETUP", suggestions) - - @staticmethod - def handle_binary_error(original_error: Exception, operation: str) -> BinaryError: - """ - Handle binary-related errors with operation-specific guidance. - - :param original_error: Original exception that occurred - :param operation: Operation being performed (e.g., "download", "validation") - :return: Enhanced BinaryError with specific guidance - """ - error_message = f"Binary {operation} failed: {str(original_error)}" - - suggestions = [] - - if operation == "download": - suggestions.extend([ - "Verify you have internet connectivity", - "Check if GitHub.com is accessible from your network", - "Try using a VPN if you're behind a corporate firewall" - ]) - elif operation == "validation": - suggestions.extend([ - "The downloaded binary may be corrupted - try downloading again", - "Check if your antivirus software is interfering with the binary", - "Ensure you have sufficient disk space for the binary" - ]) - elif operation == "execution": - suggestions.extend([ - "Check if the binary has execute permissions", - "Verify the binary is compatible with your platform", - "Try downloading a fresh copy of the binary" - ]) - - return BinaryError(error_message, f"BINARY_{operation.upper()}", suggestions) - - @staticmethod - def handle_server_error(original_error: Exception, operation: str) -> ServerError: - """ - Handle server-related errors with operation-specific guidance. - - :param original_error: Original exception that occurred - :param operation: Operation being performed (e.g., "startup", "health_check") - :return: Enhanced ServerError with specific guidance - """ - error_message = f"MCP server {operation} failed: {str(original_error)}" - - suggestions = [] - - if operation == "startup": - suggestions.extend([ - "Check if the MCP binary is available and executable", - "Verify no other process is using the MCP server port", - "Check system resources (memory, CPU) availability" - ]) - elif operation == "health_check": - suggestions.extend([ - "The MCP server may have crashed - it will be automatically restarted", - "Check system logs for any server error messages", - "Try restarting the agent command if issues persist" - ]) - elif operation == "communication": - suggestions.extend([ - "Check if the MCP server is still running", - "Verify network connectivity to the server port", - "Try restarting the agent to reinitialize the server" - ]) - - return ServerError(error_message, f"SERVER_{operation.upper()}", suggestions) - - @staticmethod - def create_context_error(context_info: Dict[str, Any]) -> AgentError: - """ - Create user-friendly error for AKS context validation failures. - - :param context_info: Dictionary with detected context information - :return: AgentError with context validation guidance - """ - cluster_name = context_info.get("cluster_name", "None") - resource_group = context_info.get("resource_group", "None") - subscription_id = context_info.get("subscription_id", "None") - - message = "AKS cluster context validation failed.\n\nDetected context:" - message += f"\n- Cluster name: {cluster_name}" - message += f"\n- Resource group: {resource_group}" - message += f"\n- Subscription ID: {subscription_id}" - - suggestions = [ - "Provide the cluster context in your prompt (cluster name, resource group, subscription ID)", - ( - "Restart with explicit flags: --name --resource-group " - "--subscription " - ), - "Ensure you're logged into the correct Azure account with 'az login'", - "Verify the AKS cluster exists and you have access to it", - ] - - return AgentError(message, "CONTEXT_VALIDATION", suggestions) diff --git a/src/aks-agent/azext_aks_agent/agent/k8s/__init__.py b/src/aks-agent/azext_aks_agent/agent/k8s/__init__.py new file mode 100644 index 00000000000..a881632cfc4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/agent/k8s/__init__.py @@ -0,0 +1,24 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +""" +Kubernetes managers package for AKS agent. + +This package contains specialized manager classes for different Kubernetes operations: +- HelmManager: OS-agnostic helm binary management and operations +- AKSAgentManager: AKS agent deployment, upgrading, and lifecycle management +- exec_command_in_pod: Standalone function for pod command execution +""" + +from .aks_agent_manager import AKSAgentManager +from .helm_manager import HelmManager, create_helm_manager +from .pod_exec import exec_command_in_pod + +__all__ = [ + "HelmManager", + "AKSAgentManager", + "exec_command_in_pod", + "create_helm_manager", +] diff --git a/src/aks-agent/azext_aks_agent/agent/k8s/aks_agent_manager.py b/src/aks-agent/azext_aks_agent/agent/k8s/aks_agent_manager.py new file mode 100644 index 00000000000..80ecec01492 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/agent/k8s/aks_agent_manager.py @@ -0,0 +1,857 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import base64 +import json +import os +import tempfile +from typing import Dict, List, Optional, Tuple, Union + +from azext_aks_agent._consts import ( + AGENT_LABEL_SELECTOR, + AGENT_NAMESPACE, + AKS_MCP_LABEL_SELECTOR, +) +from azext_aks_agent.agent.k8s.helm_manager import HelmManager +from azext_aks_agent.agent.llm_config_manager import LLMConfigManager +from azure.cli.core.azclierror import AzCLIError +from knack.log import get_logger +from kubernetes import client, config +from kubernetes.client.models.v1_cluster_role import V1ClusterRole +from kubernetes.client.models.v1_policy_rule import V1PolicyRule +from kubernetes.client.rest import ApiException + +from .pod_exec import exec_command_in_pod + +logger = get_logger(__name__) + + +class AKSAgentManager: # pylint: disable=too-many-instance-attributes + """ + AKS Agent Manager for deploying and recycling AKS agent helm charts. + + This class provides functionality to: + - Deploy AKS agent using helm charts + - Upgrade existing deployments + - Recycle (restart/refresh) agent pods + - Monitor deployment status + - Clean up resources + """ + + def __init__(self, namespace: str = AGENT_NAMESPACE, kubeconfig_path: Optional[str] = None, + helm_manager: Optional[HelmManager] = None, + resource_group_name: Optional[str] = None, cluster_name: Optional[str] = None, + subscription_id: Optional[str] = None): + """ + Initialize the AKS Agent Manager. + + Args: + namespace: Kubernetes namespace for AKS agent (default: 'aks-agent') + kubeconfig_path: Path to kubeconfig file (default: None - use default config) + helm_manager: HelmManager instance (default: None - create new one) + resource_group_name: Azure resource group name for AKS cluster + cluster_name: AKS cluster name + subscription_id: Azure subscription ID + """ + self.namespace = namespace + self.kubeconfig_path = kubeconfig_path + self._kubeconfig_dir: Optional[str] = None + self.helm_release_name = "aks-agent" + self.chart_name = "aks-agent" + + self.llm_secret_name = "llm-config-secrets" + + # AKS context - initialized via set_aks_context() or constructor + self.resource_group_name: Optional[str] = resource_group_name + self.cluster_name: Optional[str] = cluster_name + self.subscription_id: Optional[str] = subscription_id + + self.chart_repo = "oci://mcr.microsoft.com/aks/aks-agent-chart/aks-agent" + self.chart_version = "0.1.0" + + # credentials for aks-mcp + # Managed identity client ID for accessing Azure resources + self.managed_identity_client_id: str = "" + # Defautlt empty customized cluster role name means using default cluster role + self.customized_cluster_role_name: str = "" + + self.llm_config_manager = LLMConfigManager() + + self.kubeconfig_path = kubeconfig_path + + # Initialize Kubernetes client + self._init_k8s_client() + # Use provided helm manager or create a new one with kubeconfig + self.helm_manager = helm_manager or HelmManager(kubeconfig_path=self.kubeconfig_path) + + self._load_existing_helm_release_config() + + def set_aks_context(self, resource_group_name: Optional[str] = None, + cluster_name: Optional[str] = None, + subscription_id: Optional[str] = None): + """ + Set AKS context information for the agent. + + Args: + resource_group_name: Azure resource group name for AKS cluster + cluster_name: AKS cluster name + subscription_id: Azure subscription ID + """ + if resource_group_name: + self.resource_group_name = resource_group_name + if cluster_name: + self.cluster_name = cluster_name + if subscription_id: + self.subscription_id = subscription_id + + logger.debug("AKS context set: resource_group=%s, cluster=%s, subscription=%s", + self.resource_group_name, self.cluster_name, self.subscription_id) + + def _init_k8s_client(self): + """Initialize Kubernetes client configuration.""" + try: + if self.kubeconfig_path: + config.load_kube_config(config_file=self.kubeconfig_path) + else: + config.load_kube_config() + + self.k8s_client = client.ApiClient() + self.apps_v1 = client.AppsV1Api() + self.core_v1 = client.CoreV1Api() + self.rbac_v1 = client.RbacAuthorizationV1Api() + logger.debug("Kubernetes client initialized successfully") + + except Exception as e: + logger.error("Failed to initialize Kubernetes client: %s", e) + raise + + def _load_existing_helm_release_config(self): + """ + Load configuration from Helm chart values. + + Returns: + Dictionary containing the configuration from Helm values + """ + try: + # Get helm values for the deployed chart + success, output = self._run_helm_command([ + "get", "values", self.helm_release_name, + "--namespace", self.namespace, + "--output", "json" + ], check=False) + + # Check if release not found + if output == "RELEASE_NOT_FOUND": + logger.debug("Helm release '%s' not found, initializing with empty model_list", + self.helm_release_name) + self.llm_config_manager.model_list = {} + return + if not success: + logger.error("Failed to get Helm values: %s", output) + raise AzCLIError(f"Failed to get Helm values: {output}") + + try: + helm_values = json.loads(output) + + model_list = helm_values.get("modelList", {}) + self.llm_config_manager.model_list = model_list + if not model_list: + logger.warning("No modelList found in Helm values") + else: + logger.debug("LLM configuration loaded from Helm values: %d models found", len(model_list)) + + # Read API keys from Kubernetes secret and populate model_list + self._populate_api_keys_from_secret() + + # Load managed identity client ID if present + mcp_addons = helm_values.get("mcpAddons", {}) + aks_config = mcp_addons.get("aks", {}) + azure_config = aks_config.get("azure", {}) + self.managed_identity_client_id = azure_config.get("clientId") + + if self.managed_identity_client_id: + logger.debug("Managed identity client ID loaded: %s", self.managed_identity_client_id) + else: + logger.debug("No managed identity client ID found in Helm values") + + service_account_config = aks_config.get("serviceAccount", {}) + self.customized_cluster_role_name = service_account_config.get("customClusterRoleName", "") + + except json.JSONDecodeError as e: + logger.error("Failed to parse Helm values JSON: %s", e) + raise AzCLIError(f"Failed to parse Helm values JSON: {e}") + + except Exception as e: # pylint: disable=broad-exception-caught + logger.error("Failed to load LLM config from Helm values: %s", e) + raise AzCLIError(f"Failed to load LLM config from Helm values: {e}") + + def _populate_api_keys_from_secret(self): + """ + Read API keys from Kubernetes secret and populate them into model_list. + + The model_list from Helm values contains environment variable references like + '{{ env.AZURE_GPT_4_API_KEY }}'. This method reads the actual API keys from + the Kubernetes secret and replaces those references with actual values. + """ + try: + # Try to read the secret + secret = self.core_v1.read_namespaced_secret( + name=self.llm_secret_name, + namespace=self.namespace + ) + + if not secret.data: + logger.warning("Secret '%s' exists but has no data", self.llm_secret_name) + return + + # Decode secret data (base64 encoded) + secret_data = {} + for key, value in secret.data.items(): + decoded_value = base64.b64decode(value).decode("utf-8") + secret_data[key] = decoded_value + + logger.debug("Read %d API keys from secret '%s'", len(secret_data), self.llm_secret_name) + + from azext_aks_agent.agent.llm_providers.base import LLMProvider + + # Populate API keys into model_list + + for model_name, model_config in self.llm_config_manager.model_list.items(): + # Get the expected secret key for this model + secret_key = LLMProvider.sanitize_k8s_secret_key(model_config) + + # If the secret contains this key, populate it + if secret_key in secret_data: + model_config["api_key"] = secret_data[secret_key] + logger.debug("Populated API key for model '%s' from secret key '%s'", + model_name, secret_key) + else: + logger.warning("API key is not found for model '%s', please update the model '%s' API key.", + model_name, model_name) + + except ApiException as e: + if e.status == 404: + logger.debug("Secret '%s' not found in namespace '%s', skipping API key population", + self.llm_secret_name, self.namespace) + else: + logger.warning("Failed to read secret '%s': %s", self.llm_secret_name, e) + except Exception as e: # pylint: disable=broad-exception-caught + logger.warning("Unexpected error reading API keys from secret: %s", e) + + def get_agent_pods(self) -> Tuple[bool, Union[List[str], str]]: + """ + Get running AKS agent pods from the Kubernetes cluster. + + This function searches for pods with the label selector 'app.kubernetes.io/name=aks-agent' + in the 'aks-agent' namespace and returns information about their status. + Note: + This function will log warning messages if some pods are not running but at least + one pod is available. Check the logs for complete status information. + Returns: + Tuple[bool, Union[List[str], str]]: + - First element: True if running pods found, False if error occurred + - Second element: List of running pod names if successful, detailed error message if failed + """ + try: + # List pods with either label selector + logger.debug("Searching for pods with label selector '%s' or '%s' in namespace '%s'", + AGENT_LABEL_SELECTOR, AKS_MCP_LABEL_SELECTOR, self.namespace) + + # Try to get pods with either label selector + agent_pods = self.core_v1.list_namespaced_pod( + namespace=self.namespace, + label_selector=AGENT_LABEL_SELECTOR + ) + mcp_pods = self.core_v1.list_namespaced_pod( + namespace=self.namespace, + label_selector=AKS_MCP_LABEL_SELECTOR + ) + + # Combine pods from both label selectors + all_pod_items = list(agent_pods.items) + list(mcp_pods.items) + + # Create a pod_list-like object with combined items + class PodList: # pylint: disable=too-few-public-methods + def __init__(self, items): + self.items = items + pod_list = PodList(all_pod_items) + + if not pod_list.items: + error_msg = ( + f"No pods found with label selector '{AGENT_LABEL_SELECTOR}' or " + f"'{AKS_MCP_LABEL_SELECTOR}' in namespace '{self.namespace}'. " + f"This could mean:\n" + f" 1. The AKS agent is not deployed in the cluster\n" + f" 2. The namespace '{self.namespace}' does not exist\n" + f" 3. The pods have different labels than expected\n" + f" 4. You may not have sufficient permissions to list pods in this namespace" + ) + logger.error(error_msg) + return False, error_msg + + # Categorize pods by status + running_pods = [] + pending_pods = [] + failed_pods = [] + other_pods = [] + + for pod in pod_list.items: + pod_name = pod.metadata.name + pod_phase = pod.status.phase + + if pod_phase == 'Running': + running_pods.append(pod_name) + elif pod_phase == 'Pending': + pending_pods.append(pod_name) + elif pod_phase == 'Failed': + failed_pods.append(pod_name) + else: + other_pods.append(f"{pod_name} ({pod_phase})") + + # Log pod status summary + logger.debug("Found %d total pods: %d running, %d pending, %d failed, %d other", + len(pod_list.items), len(running_pods), len(pending_pods), + len(failed_pods), len(other_pods)) + + # Return running pods if any are available + if running_pods: + logger.debug("Available running pods: %s", ', '.join(running_pods)) + + # Warn about any non-running pods + warning_details = [] + if pending_pods: + warning_details.append(f"{len(pending_pods)} pending pod(s): {', '.join(pending_pods)}") + if failed_pods: + warning_details.append(f"{len(failed_pods)} failed pod(s): {', '.join(failed_pods)}") + if other_pods: + warning_details.append(f"{len(other_pods)} pod(s) in other states: {', '.join(other_pods)}") + + if warning_details: + warning_summary = "; ".join(warning_details) + logger.warning( + "Found %d running AKS agent pod(s), but some pods are not running: %s. " + "These pods may need attention.", + len(running_pods), warning_summary + ) + + return True, running_pods + + # No running pods found - provide detailed error message + status_details = [] + if pending_pods: + status_details.append(f"{len(pending_pods)} pending pod(s): {', '.join(pending_pods)}") + if failed_pods: + status_details.append(f"{len(failed_pods)} failed pod(s): {', '.join(failed_pods)}") + if other_pods: + status_details.append(f"{len(other_pods)} pod(s) in other states: {', '.join(other_pods)}") + + status_summary = "; ".join(status_details) if status_details else "all pods are in unknown state" + + error_msg = ( + f"No running pods found with label selector '{AGENT_LABEL_SELECTOR}' or " + f"'{AKS_MCP_LABEL_SELECTOR}' in namespace '{self.namespace}'. " + f"Found {len(pod_list.items)} pod(s) but none are in Running state: {status_summary}. " + f"The AKS agent pods may be starting up, failing to start, or experiencing issues." + ) + logger.error(error_msg) + return False, error_msg + + except ApiException as e: + if e.status == 403: + error_msg = ( + f"Access denied when trying to list pods in namespace '{self.namespace}'. " + f"You may not have sufficient RBAC permissions. " + f"Error details: {e}" + ) + elif e.status == 404: + error_msg = ( + f"Namespace '{self.namespace}' not found. " + f"The AKS agent namespace may not exist in this cluster. " + f"Error details: {e}" + ) + else: + error_msg = f"Kubernetes API error when listing pods: {e}" + + logger.error(error_msg) + return False, error_msg + except Exception as e: # pylint: disable=broad-exception-caught + error_msg = f"Unexpected error while searching for AKS agent pods: {e}" + logger.error(error_msg) + return False, error_msg + + def _run_helm_command(self, args: List[str], check: bool = True) -> tuple[bool, str]: + """ + Execute a helm command using the helm manager. + + Args: + args: List of helm command arguments + check: Whether to raise exception on non-zero exit code + + Returns: + Tuple of (success, output) + """ + return self.helm_manager.run_command(args, check=check) + + def deploy_agent(self, chart_version: Optional[str] = None, + create_namespace: bool = True) -> Tuple[bool, str]: + """ + Deploy AKS agent using helm chart. + + Args: + chart_version: Specific chart version to deploy (default: latest) + create_namespace: Whether to create namespace if it doesn't exist + + Returns: + Tuple[bool, str]: (success, error_message) + - success: True if deployment was successful, False otherwise + - error_message: Error message if deployment failed, empty string if successful + """ + logger.info("Deploying/Upgrading AKS agent to namespace '%s'", self.namespace) + + # Prepare helm install command + helm_args = [ + "upgrade", self.helm_release_name, self.chart_repo, + "--namespace", self.namespace, + "--create-namespace" if create_namespace else "", + "--wait", + "--install", + "--timeout", "2m" + ] + + # Add chart version if specified (prefer parameter, fallback to instance variable) + version_to_use = chart_version or self.chart_version + if version_to_use: + helm_args.extend(["--version", version_to_use]) + + # Add custom values if provided + values = self._create_helm_values() + + # Create temporary file in a cross-platform way + values_file = None + try: + import yaml + + # Create a temporary file that works on both Windows and Unix/Linux + with tempfile.NamedTemporaryFile(mode='w', suffix='.yaml', delete=False) as f: + values_file = f.name + yaml.dump(values, f) + helm_args.extend(["--values", values_file]) + except Exception as e: # pylint: disable=broad-exception-caught + logger.warning("Failed to write values file: %s", e) + + # Remove empty strings from args + helm_args = [arg for arg in helm_args if arg] + + # Execute helm install + success, output = self._run_helm_command(helm_args) + + # Clean up temporary values file + if values_file: + try: + if os.path.exists(values_file): + os.remove(values_file) + logger.debug("Removed temporary values file: %s", values_file) + except Exception as e: # pylint: disable=broad-exception-caught + logger.debug("Failed to remove temporary values file: %s", e) + + if success: + logger.info("AKS agent deployed/upgraded successfully") + return True, "" + + return False, output + + def get_agent_status(self) -> Dict: # pylint: disable=too-many-locals + """ + Get the current status of AKS agent deployment. + + Returns: + Dictionary containing status information + """ + status = { + "namespace": self.namespace, + "helm_release": self.helm_release_name, + "deployments": [], + "pods": [], + "ready": False, + "llm_configs": [] + } + + try: + # First, check if helm release exists + list_success, list_output = self._run_helm_command([ + "list", + "--namespace", self.namespace, + "--filter", self.helm_release_name, + "--output", "json" + ], check=False) + + release_exists = False + if list_success: + try: + releases = json.loads(list_output) + release_exists = any( + release.get("name") == self.helm_release_name + for release in releases + ) + except json.JSONDecodeError: + logger.warning("Failed to parse helm list output") + + if release_exists: + # Get detailed helm release status + success, helm_output = self._run_helm_command([ + "status", self.helm_release_name, + "--namespace", self.namespace, + "--output", "json" + ], check=False) + + if success: + try: + helm_status = json.loads(helm_output) + status["helm_status"] = helm_status.get("info", {}).get("status") + except json.JSONDecodeError: + status["helm_status"] = "unknown" + else: + status["helm_status"] = "error" + else: + status["helm_status"] = "not_found" + status["ready"] = False + return status + + # Get aks-agent and aks-mcp deployment status + agent_deployments = self.apps_v1.list_namespaced_deployment( + namespace=self.namespace, + label_selector=AGENT_LABEL_SELECTOR + ) + mcp_deployments = self.apps_v1.list_namespaced_deployment( + namespace=self.namespace, + label_selector=AKS_MCP_LABEL_SELECTOR + ) + all_deployments = list(agent_deployments.items) + list(mcp_deployments.items) + + for deployment in all_deployments: + dep_status = { + "name": deployment.metadata.name, + "replicas": deployment.status.replicas or 0, + "ready_replicas": deployment.status.ready_replicas or 0, + "updated_replicas": deployment.status.updated_replicas or 0, + "available_replicas": deployment.status.available_replicas or 0 + } + status["deployments"].append(dep_status) + + # Get aks-agent and aks-mcp pod status + agent_pods = self.core_v1.list_namespaced_pod( + namespace=self.namespace, + label_selector=AGENT_LABEL_SELECTOR + ) + mcp_pods = self.core_v1.list_namespaced_pod( + namespace=self.namespace, + label_selector=AKS_MCP_LABEL_SELECTOR + ) + all_pods = list(agent_pods.items) + list(mcp_pods.items) + + # Create a pods-like object with combined items + class PodList: # pylint: disable=too-few-public-methods + def __init__(self, items): + self.items = items + pods = PodList(all_pods) + + for pod in pods.items: + pod_status = { + "name": pod.metadata.name, + "phase": pod.status.phase, + "ready": False + } + + # Check if pod is ready + if pod.status.conditions: + for condition in pod.status.conditions: + if condition.type == "Ready" and condition.status == "True": + pod_status["ready"] = True + break + + status["pods"].append(pod_status) + + # Determine overall readiness + if status["deployments"]: + all_deployments_ready = all( + dep["ready_replicas"] == dep["replicas"] and dep["replicas"] > 0 + for dep in status["deployments"] + ) + status["ready"] = all_deployments_ready + + # Add LLM configuration information + if self.llm_config_manager.model_list: + for model_name, model_config in self.llm_config_manager.model_list.items(): + llm_info = {"model": model_name} + if "api_base" in model_config: + llm_info["api_base"] = model_config["api_base"] + if "api_version" in model_config: + llm_info["api_version"] = model_config["api_version"] + status["llm_configs"].append(llm_info) + + except Exception as e: # pylint: disable=broad-exception-caught + logger.error("Failed to get agent status: %s", e) + status["error"] = str(e) + + return status + + def check_llm_config_exists(self) -> bool: + """ + Check if LLM configuration exists by verifying secret in Kubernetes cluster. + + Returns: + True if LLM config secret exists, False otherwise + + Raises: + ApiException: If API error occurs (except 404) + AzCLIError: If unexpected error occurs + """ + try: + # Check if the LLM config secret exists + self.core_v1.read_namespaced_secret( + name=self.llm_secret_name, + namespace=self.namespace + ) + logger.debug("LLM config secret '%s' found", self.llm_secret_name) + return True and self.llm_config_manager.model_list != {} + except ApiException as e: + if e.status == 404: + logger.debug("LLM config secret '%s' not found in namespace '%s'", + self.llm_secret_name, self.namespace) + return False + logger.error("Failed to check LLM config existence (API error %s): %s", + e.status, e) + raise + except Exception as e: # pylint: disable=broad-exception-caught + logger.error("Unexpected error checking LLM config existence: %s", e) + raise AzCLIError(f"Failed to check LLM config existence: {e}") + + def uninstall_agent(self, delete_secret: bool = True) -> bool: + """ + Uninstall AKS agent helm release and optionally delete LLM configuration secret. + + Args: + delete_secret: Whether to delete the LLM configuration secret (default: True) + + Returns: + True if uninstallation was successful + """ + logger.info("Uninstalling AKS agent from namespace '%s'", self.namespace) + + # Execute helm uninstall + success, output = self._run_helm_command([ + "uninstall", self.helm_release_name, + "--namespace", self.namespace, + "--wait", + "--timeout", "1m" + ]) + + # Check if release not found + if output == "RELEASE_NOT_FOUND": + logger.debug("Helm release '%s' not found", self.helm_release_name) + # Still try to delete the secret if it exists and requested + if delete_secret: + self.delete_llm_config_secret() + return True + + if success: + logger.info("AKS agent uninstalled successfully") + # Delete the LLM configuration secret if requested + if delete_secret: + self.delete_llm_config_secret() + return True + raise AzCLIError(f"Failed to uninstall AKS agent: {output}") + + def exec_aks_agent(self, command_flags: str = "") -> bool: + """ + Execute commands on the AKS agent pod using PodExecManager. + + This method automatically discovers a running AKS agent pod and executes + the specified command on it. + + Args: + command_flags: Additional flags for the aks-agent command + + Returns: + True if execution was successful + + Raises: + AzCLIError: If execution fails or no running pods are found + """ + logger.info("Executing AKS agent command with flags: %s", command_flags) + + try: + # Find available AKS agent pods internally + success, result = self.get_agent_pods() + if not success: + error_msg = f"Failed to find AKS agent pods: {result}\n" + error_msg += ( + "The AKS agent may not be deployed. " + "Run 'az aks agent --init' to initialize the deployment." + ) + raise AzCLIError(error_msg) + + pod_names = result + if not pod_names: + error_msg = "No running AKS agent pods found.\n" + error_msg += ( + "The AKS agent may not be deployed. " + "Run 'az aks agent --init' to initialize the deployment." + ) + raise AzCLIError(error_msg) + + # Use the first available pod or randomly select one? + pod_name = pod_names[0] + logger.debug("Using pod: %s", pod_name) + + # Prepare the command to execute in the pod + exec_command = [ + "/bin/bash", "-c", + f"TERM=xterm PYTHONUNBUFFERED=0 PROMPT_TOOLKIT_NO_CPR=1 python aks-agent.py ask {command_flags}" + ] + + # Execute the command using the standalone exec function + success = exec_command_in_pod( + pod_name=pod_name, + command=exec_command, + namespace=self.namespace, + kubeconfig_path=self.kubeconfig_path, + interactive=True, + tty=True + ) + + if not success: + raise AzCLIError("Failed to execute AKS agent command") + + logger.info("AKS agent command executed successfully") + return True + + except Exception as e: + logger.error("Failed to execute AKS agent command: %s", e) + raise + + def create_llm_config_secret(self) -> None: + """ + Create or update the LLM configuration Kubernetes secret. + Raises AzCLIError when failed. + """ + + secret_data = self.llm_config_manager.get_llm_model_secret_data() + secret_body = client.V1Secret( + api_version="v1", + kind="Secret", + metadata=client.V1ObjectMeta(name=self.llm_secret_name, namespace=self.namespace), + data=secret_data, + type="Opaque", # Or other built-in types like kubernetes.io/tls + ) + try: + # Try to create the secret + self.core_v1.create_namespaced_secret( + namespace=self.namespace, + body=secret_body + ) + logger.info("LLM configuration secret '%s' created successfully", self.llm_secret_name) + + except ApiException as e: + if e.status == 409: + # Secret already exists, update it + try: + self.core_v1.replace_namespaced_secret( + name=self.llm_secret_name, + namespace=self.namespace, + body=secret_body + ) + logger.info("LLM configuration secret '%s' updated successfully", self.llm_secret_name) + except ApiException as update_error: + raise AzCLIError(f"Failed to update LLM configuration secret: {update_error}") + else: + raise AzCLIError(f"Failed to create LLM configuration secret: {e}") + except Exception as e: + raise AzCLIError(f"Unexpected error managing LLM configuration secret: {e}") + + def delete_llm_config_secret(self) -> None: + """ + Delete the LLM configuration Kubernetes secret. + Logs warning if secret doesn't exist, but doesn't raise an error. + """ + try: + self.core_v1.delete_namespaced_secret( + name=self.llm_secret_name, + namespace=self.namespace + ) + logger.info("LLM configuration secret '%s' deleted successfully", self.llm_secret_name) + except ApiException as e: + if e.status == 404: + logger.debug("LLM configuration secret '%s' not found, skipping deletion", self.llm_secret_name) + else: + logger.warning("Failed to delete LLM configuration secret: %s", e) + except Exception as e: # pylint: disable=broad-exception-caught + logger.warning("Unexpected error deleting LLM configuration secret: %s", e) + + def _create_helm_values(self): + """ + Create Helm values for deploying the AKS agent with LLM configuration. + + Returns: + Dictionary of Helm values + """ + env_vars = self.llm_config_manager.get_env_vars(self.llm_secret_name) + + helm_values = { + "modelList": self.llm_config_manager.secured_model_list(), + "additionalEnvVars": env_vars, + "nodeSelector": {"kubernetes.io/os": "linux"}, + } + + # Add AKS context as helm values + aks_context = {} + if self.resource_group_name: + aks_context["resourceGroupName"] = self.resource_group_name + if self.cluster_name: + aks_context["clusterName"] = self.cluster_name + if self.subscription_id: + aks_context["subscriptionID"] = self.subscription_id + if aks_context: + helm_values["aksContext"] = aks_context + + if "mcpAddons" not in helm_values: + helm_values["mcpAddons"] = {} + if "aks" not in helm_values["mcpAddons"]: + helm_values["mcpAddons"]["aks"] = {} + + helm_values["mcpAddons"]["aks"]["serviceAccount"] = { + "customClusterRoleName": self.customized_cluster_role_name + } + + helm_values["mcpAddons"]["aks"]["workloadIdentity"] = { + "enabled": bool(self.managed_identity_client_id) + } + helm_values["mcpAddons"]["aks"]["azure"] = { + "clientId": self.managed_identity_client_id + } + + return helm_values + + def get_default_cluster_role(self) -> V1ClusterRole: + """ + Get the default cluster role used by the AKS agent. + + Returns: + The default cluster role rules + """ + rules = [ + { + "api_groups": ["*"], + "resources": ["*"], + "verbs": ["get", "list", "watch"] + }, + ] + cluster_role = V1ClusterRole( + metadata=client.V1ObjectMeta( + name=f"{self.helm_release_name}-aks-mcp" + ), + rules=[V1PolicyRule(**rule) for rule in rules] + ) + return cluster_role diff --git a/src/aks-agent/azext_aks_agent/agent/k8s/helm_manager.py b/src/aks-agent/azext_aks_agent/agent/k8s/helm_manager.py new file mode 100644 index 00000000000..5613ae16df9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/agent/k8s/helm_manager.py @@ -0,0 +1,330 @@ +# -------------------------------------------------------------------------------------------- +# 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 platform +import shutil +import stat +import subprocess +import tarfile +import tempfile +import urllib.request +import zipfile +from pathlib import Path +from typing import List, Optional, Tuple + +from azext_aks_agent._consts import HELM_VERSION +from knack.log import get_logger + +logger = get_logger(__name__) + + +class HelmManager: + """ + Helm Binary Manager for OS-agnostic helm operations. + + This class provides functionality to: + - Download and manage helm binaries locally + - Support multiple operating systems and architectures + - Execute helm commands using the managed binary + - Share helm functionality across different chart deployments + """ + + def __init__(self, helm_version: str = HELM_VERSION, local_bin_dir: Optional[str] = None, + kubeconfig_path: Optional[str] = None): + """ + Initialize the Helm Manager. + + Args: + helm_version: Helm version to use (default: HELM_VERSION from _consts) + local_bin_dir: Local directory for helm binary (default: ~/.aks-agent/bin) + kubeconfig_path: Path to kubeconfig file (default: None - use default config) + """ + self.helm_version = helm_version + self.kubeconfig_path = kubeconfig_path + + # Set up local binary directory + if local_bin_dir: + self.local_bin_dir = Path(local_bin_dir) + else: + home_dir = Path.home() + self.local_bin_dir = home_dir / ".aks-agent" / "bin" + + self.local_bin_dir.mkdir(parents=True, exist_ok=True) + self.helm_binary_path = self._ensure_helm_binary() + + def _get_platform_info(self) -> Tuple[str, str]: + """ + Get platform-specific information for helm binary download. + + Returns: + Tuple of (os_name, arch) for helm binary selection + """ + system = platform.system().lower() + machine = platform.machine().lower() + + # Map system names + if system == "darwin": + os_name = "darwin" + elif system == "windows": + os_name = "windows" + elif system == "linux": + os_name = "linux" + else: + raise ValueError(f"Unsupported operating system: {system}") + + # Map architecture names + if machine in ("x86_64", "amd64"): + arch = "amd64" + elif machine in ("aarch64", "arm64"): + arch = "arm64" + elif machine.startswith("arm"): + arch = "arm" + elif machine in ("i386", "i686"): + arch = "386" + else: + # Default to amd64 for unknown architectures + logger.warning("Unknown architecture %s, defaulting to amd64", machine) + arch = "amd64" + + return os_name, arch + + def _download_helm_binary(self) -> str: + """ + Download helm binary for the current platform. + + Returns: + Path to the downloaded helm binary + """ + os_name, arch = self._get_platform_info() + + # Construct download URL + if os_name == "windows": + filename = f"helm-v{self.helm_version}-{os_name}-{arch}.zip" + binary_name = "helm.exe" + else: + filename = f"helm-v{self.helm_version}-{os_name}-{arch}.tar.gz" + binary_name = "helm" + + download_url = f"https://get.helm.sh/{filename}" + logger.info("Downloading helm binary from: %s", download_url) + + # Download to temporary file + with tempfile.NamedTemporaryFile(delete=False, suffix=f".{filename.split('.')[-1]}") as temp_file: + try: + with urllib.request.urlopen(download_url) as response: + shutil.copyfileobj(response, temp_file) + temp_file_path = temp_file.name + except Exception as e: # pylint: disable=broad-exception-caught + logger.error("Failed to download helm binary: %s", e) + raise + + # Extract binary + extracted_binary_path = None + try: + if os_name == "windows": + # Handle ZIP file + with zipfile.ZipFile(temp_file_path, 'r') as zip_file: + # Find the helm binary in the zip + for member in zip_file.namelist(): + if member.endswith(binary_name): + # Extract to local bin directory + zip_file.extract(member, self.local_bin_dir) + extracted_path = self.local_bin_dir / member + extracted_binary_path = self.local_bin_dir / binary_name + # Move to final location if needed + if extracted_path != extracted_binary_path: + shutil.move(str(extracted_path), str(extracted_binary_path)) + # Clean up extracted directory if it exists + parent_dir = extracted_path.parent + if parent_dir != self.local_bin_dir and parent_dir.exists(): + shutil.rmtree(parent_dir) + break + else: + # Handle TAR.GZ file + with tarfile.open(temp_file_path, 'r:gz') as tar_file: + # Find the helm binary in the tar + for member in tar_file.getnames(): + if member.endswith(binary_name): + # Extract to local bin directory + tar_file.extract(member, self.local_bin_dir) + extracted_path = self.local_bin_dir / member + extracted_binary_path = self.local_bin_dir / binary_name + # Move to final location if needed + if extracted_path != extracted_binary_path: + shutil.move(str(extracted_path), str(extracted_binary_path)) + # Clean up extracted directory if it exists + parent_dir = extracted_path.parent + if parent_dir != self.local_bin_dir and parent_dir.exists(): + shutil.rmtree(parent_dir) + break + + if not extracted_binary_path or not extracted_binary_path.exists(): + raise ValueError("Helm binary not found in downloaded archive") + + # Make binary executable on Unix systems + if os_name != "windows": + extracted_binary_path.chmod(extracted_binary_path.stat().st_mode | stat.S_IEXEC) + + logger.info("Helm binary downloaded and extracted to: %s", extracted_binary_path) + return str(extracted_binary_path) + + except Exception as e: # pylint: disable=broad-exception-caught + logger.error("Failed to extract helm binary: %s", e) + raise + finally: + # Clean up temporary file + try: + os.unlink(temp_file_path) + except OSError: + pass + + def _ensure_helm_binary(self) -> str: + """ + Ensure helm binary is available locally. + + Returns: + Path to helm binary + """ + os_name, _ = self._get_platform_info() + binary_name = "helm.exe" if os_name == "windows" else "helm" + binary_path = self.local_bin_dir / binary_name + + # Check if binary already exists and is executable + if binary_path.exists(): + try: + # Test if binary works + result = subprocess.run( + [str(binary_path), "version", "--client", "--short"], + capture_output=True, + text=True, + timeout=10 + ) + if result.returncode == 0: + logger.debug("Using existing helm binary: %s", binary_path) + return str(binary_path) + logger.warning("Existing helm binary is not working, downloading new one") + except Exception as e: # pylint: disable=broad-exception-caught + logger.warning("Failed to test existing helm binary: %s", e) + + # Download helm binary + return self._download_helm_binary() + + def run_command(self, args: List[str], check: bool = True, # pylint: disable=too-many-return-statements + timeout: int = 300) -> Tuple[bool, str]: + """ + Execute a helm command using the locally managed helm binary. + + Args: + args: List of helm command arguments + check: Whether to raise exception on non-zero exit code + timeout: Command timeout in seconds + + Returns: + Tuple of (success, output) + """ + cmd = [self.helm_binary_path] + + # Add --kubeconfig flag if specified + if self.kubeconfig_path: + cmd.extend(["--kubeconfig", self.kubeconfig_path]) + logger.debug("Using kubeconfig: %s", self.kubeconfig_path) + + cmd.extend(args) + logger.debug("Executing helm command: %s", ' '.join(cmd)) + + try: + result = subprocess.run( + cmd, + capture_output=True, + text=True, + check=check, + timeout=timeout + ) + + if result.returncode == 0: + logger.debug("Helm command succeeded: %s", result.stdout) + return True, result.stdout + # Check if this is a "release not found" error + stderr_lower = result.stderr.lower() + if "release: not found" in stderr_lower or "not found" in stderr_lower: + logger.debug("Helm release not found: %s", result.stderr) + return False, "RELEASE_NOT_FOUND" + + logger.error("Helm command failed: %s", result.stderr) + return False, result.stderr + + except subprocess.TimeoutExpired: + error_msg = f"Helm command timed out: {' '.join(cmd)}" + logger.error("%s", error_msg) + return False, error_msg + except subprocess.CalledProcessError as e: + # Check if this is a "release not found" error + stderr_lower = e.stderr.lower() if e.stderr else "" + if "release: not found" in stderr_lower or "not found" in stderr_lower: + logger.debug("Helm release not found: %s", e.stderr) + return False, "RELEASE_NOT_FOUND" + + error_msg = f"Helm command failed with exit code {e.returncode}: {e.stderr}" + logger.error("%s", error_msg) + return False, error_msg + except Exception as e: # pylint: disable=broad-exception-caught + error_msg = f"Unexpected error running helm command: {e}" + logger.error("%s", error_msg) + return False, error_msg + + def get_version(self) -> Optional[str]: + """ + Get the version of the helm binary. + + Returns: + Helm version string or None if failed + """ + success, output = self.run_command(["version", "--client", "--short"], check=False) + if success: + return output.strip() + return None + + def repo_add(self, name: str, url: str) -> bool: + """ + Add a helm repository. + + Args: + name: Repository name + url: Repository URL + + Returns: + True if successful + """ + success, _ = self.run_command(["repo", "add", name, url]) + return success + + def repo_update(self) -> bool: + """ + Update helm repositories. + + Returns: + True if successful + """ + success, _ = self.run_command(["repo", "update"]) + return success + + +def create_helm_manager(helm_version: str = HELM_VERSION, + local_bin_dir: Optional[str] = None) -> HelmManager: + """ + Factory function to create a HelmManager instance. + + Args: + helm_version: Helm version to use (default: HELM_VERSION from _consts) + local_bin_dir: Local directory for helm binary + + Returns: + HelmManager instance + """ + return HelmManager( + helm_version=helm_version, + local_bin_dir=local_bin_dir + ) diff --git a/src/aks-agent/azext_aks_agent/agent/k8s/pod_exec.py b/src/aks-agent/azext_aks_agent/agent/k8s/pod_exec.py new file mode 100644 index 00000000000..904b06ed7e7 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/agent/k8s/pod_exec.py @@ -0,0 +1,278 @@ +# -------------------------------------------------------------------------------------------- +# 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 platform +import signal +import struct +import sys +import threading +import time +from typing import List, Optional, Tuple + +from azext_aks_agent._consts import AGENT_NAMESPACE, HEARTBEAT_INTERVAL, RESIZE_CHANNEL +from knack.log import get_logger +from kubernetes import client, config +from kubernetes.stream import stream + +# Platform-specific imports +IS_WINDOWS = platform.system() == 'Windows' + +if not IS_WINDOWS: + import fcntl + import select + import termios +else: + # Windows doesn't have fcntl, select, or termios + fcntl = None + select = None + termios = None + +logger = get_logger(__name__) + + +def _get_terminal_size() -> Tuple[int, int]: + """ + Get current terminal size. + + Returns: + Tuple of (rows, cols) + """ + try: + if IS_WINDOWS: + # Windows-specific terminal size detection + import shutil + size = shutil.get_terminal_size(fallback=(80, 24)) + return size.lines, size.columns + + # Unix/Linux terminal size detection + size_struct = struct.pack('HHHH', 0, 0, 0, 0) + result = fcntl.ioctl(sys.stdout.fileno(), termios.TIOCGWINSZ, size_struct) + rows, cols, _, _ = struct.unpack('HHHH', result) + return rows, cols + except (OSError, IOError, ImportError, AttributeError): + # Fallback to environment variables or defaults + return int(os.environ.get('LINES', 24)), int(os.environ.get('COLUMNS', 80)) + + +def _resize_terminal_handler(_signum, _frame, exec_stream): + """ + Handle terminal resize signal and send new size to pod via WebSocket channel. + + Args: + signum: Signal number + frame: Current stack frame + exec_stream: The WebSocket stream object + """ + try: + rows, cols = _get_terminal_size() + # Create resize message as JSON + resize_message = json.dumps({ + "Width": cols, + "Height": rows + }) + # Send resize message through WebSocket channel 4 (RESIZE_CHANNEL) + exec_stream.write_channel(RESIZE_CHANNEL, resize_message) + logger.debug("Terminal resized to %dx%d", cols, rows) + except Exception as e: # pylint: disable=broad-exception-caught + logger.debug("Failed to resize terminal: %s", e) + + +def _heartbeat_worker(exec_stream, stop_event): + """ + Heartbeat worker thread to maintain WebSocket connection alive. + Sends periodic ping frames to prevent connection timeout. + + Args: + exec_stream: The WebSocket stream object + stop_event: Threading event to stop the heartbeat + """ + last_heartbeat = time.time() + + while not stop_event.is_set() and exec_stream.is_open(): + current_time = time.time() + + # Send heartbeat if interval has passed + if current_time - last_heartbeat >= HEARTBEAT_INTERVAL: + try: + # Send ping frame through WebSocket + if hasattr(exec_stream, 'ping'): + exec_stream.ping() + else: + # Fallback: send empty data to keep connection alive + exec_stream.write_stdin('') + + last_heartbeat = current_time + logger.debug("Heartbeat sent to maintain WebSocket connection") + except Exception as e: # pylint: disable=broad-exception-caught + logger.debug("Heartbeat failed: %s", e) + break + + # Sleep for a short interval to avoid busy waiting + stop_event.wait(min(1.0, HEARTBEAT_INTERVAL / 5)) + + +def exec_command_in_pod(pod_name: str, command: List[str], # pylint: disable=too-many-branches + namespace: str = AGENT_NAMESPACE, + kubeconfig_path: Optional[str] = None, + interactive: bool = True, + tty: bool = True) -> bool: + """ + Execute a command in a specific pod with interactive session. + + Args: + pod_name: Name of the pod to exec into + command: Command to execute as a list of strings + namespace: Namespace of the pod (default: AGENT_NAMESPACE) + kubeconfig_path: Path to kubeconfig file (default: None - use default config) + interactive: Whether to enable interactive mode + tty: Whether to allocate a TTY + + Returns: + True if execution was successful + """ + logger.info("Executing command in pod '%s' in namespace '%s'", pod_name, namespace) + logger.debug("Command: %s", ' '.join(command)) + + try: + # Initialize Kubernetes client + if kubeconfig_path: + config.load_kube_config(config_file=kubeconfig_path) + else: + config.load_kube_config() + + core_v1 = client.CoreV1Api() + + # Create the exec session + resp = stream( + core_v1.connect_get_namespaced_pod_exec, + pod_name, + namespace, + command=command, + stdin=interactive, + stdout=True, + stderr=True, + tty=tty, + _preload_content=False + ) + + if not interactive: + # Non-interactive mode - just capture output + while resp.is_open(): + resp.update(timeout=1) + if resp.peek_stdout(): + print(resp.read_stdout(), end='') + if resp.peek_stderr(): + print(resp.read_stderr(), end='', file=sys.stderr) + resp.close() + return True + + # Interactive mode setup + original_sigwinch = None + heartbeat_stop_event = None + heartbeat_thread = None + fd = None + fl = None + + try: + # Set up terminal resize handler (Unix/Linux only) + if not IS_WINDOWS and hasattr(signal, 'SIGWINCH'): + def resize_handler(signum, frame): + _resize_terminal_handler(signum, frame, resp) + + # Register signal handler for terminal resize + original_sigwinch = signal.signal(signal.SIGWINCH, resize_handler) + + # Set up heartbeat mechanism + heartbeat_stop_event = threading.Event() + heartbeat_thread = threading.Thread( + target=_heartbeat_worker, + args=(resp, heartbeat_stop_event), + daemon=True + ) + heartbeat_thread.start() + + # Make stdin non-blocking (Unix/Linux only) + if not IS_WINDOWS: + fd = sys.stdin.fileno() + fl = fcntl.fcntl(fd, fcntl.F_GETFL) + fcntl.fcntl(fd, fcntl.F_SETFL, fl | os.O_NONBLOCK) + + # Send initial terminal size if TTY is enabled + if tty: + try: + rows, cols = _get_terminal_size() + resize_message = json.dumps({ + "Width": cols, + "Height": rows + }) + resp.write_channel(RESIZE_CHANNEL, resize_message) + except Exception as e: # pylint: disable=broad-exception-caught + logger.debug("Failed to send initial terminal size: %s", e) + + # Main interaction loop + while resp.is_open(): + resp.update(timeout=0.1) + + # Handle stdout + if resp.peek_stdout(): + stdout_data = resp.read_stdout() + sys.stdout.write(stdout_data) + sys.stdout.flush() + + # Handle stderr + if resp.peek_stderr(): + stderr_data = resp.read_stderr() + sys.stderr.write(stderr_data) + sys.stderr.flush() + + # Handle stdin + try: + if IS_WINDOWS: + # Windows: Use msvcrt for non-blocking input + import msvcrt + if msvcrt.kbhit(): + data = msvcrt.getwch() + if data: + resp.write_stdin(data) + else: + # Unix/Linux: Use select for non-blocking input + if select.select([sys.stdin], [], [], 0)[0]: + data = sys.stdin.read() + if data: + resp.write_stdin(data) + except (OSError, IOError, ImportError): + # No input available or import failed + pass + + logger.info("Pod exec session completed successfully") + return True + + except KeyboardInterrupt: + logger.info("Pod exec session interrupted by user") + return True + finally: + # Cleanup + if heartbeat_stop_event: + heartbeat_stop_event.set() + if heartbeat_thread and heartbeat_thread.is_alive(): + heartbeat_thread.join(timeout=2.0) + + if original_sigwinch and not IS_WINDOWS: + signal.signal(signal.SIGWINCH, original_sigwinch) + + # Restore stdin to blocking mode (Unix/Linux only) + if not IS_WINDOWS and fd is not None and fl is not None: + try: + fcntl.fcntl(fd, fcntl.F_SETFL, fl) + except (NameError, OSError, IOError): + pass + + resp.close() + + except Exception as e: # pylint: disable=broad-exception-caught + logger.error("Failed to execute command in pod '%s': %s", pod_name, e) + return False diff --git a/src/aks-agent/azext_aks_agent/agent/llm_config_manager.py b/src/aks-agent/azext_aks_agent/agent/llm_config_manager.py index 741d27f8213..b9be35bfee8 100644 --- a/src/aks-agent/azext_aks_agent/agent/llm_config_manager.py +++ b/src/aks-agent/azext_aks_agent/agent/llm_config_manager.py @@ -4,14 +4,9 @@ # -------------------------------------------------------------------------------------------- -import os -from typing import Dict, List, Optional +from typing import Dict, List -import yaml -from azext_aks_agent._consts import CONST_AGENT_CONFIG_FILE_NAME -from azext_aks_agent.agent.llm_providers import PROVIDER_REGISTRY -from azure.cli.core.api import get_config_dir -from azure.cli.core.azclierror import AzCLIError +from azext_aks_agent.agent.llm_providers import LLMProvider from knack.log import get_logger logger = get_logger(__name__) @@ -20,168 +15,37 @@ class LLMConfigManager: """Manages loading and saving LLM configuration from/to a YAML file.""" - def __init__(self, config_path=None): - if config_path is None: - config_path = os.path.join( - get_config_dir(), CONST_AGENT_CONFIG_FILE_NAME) - self.config_path = os.path.expanduser(config_path) + def __init__(self, model_list: Dict = None): + self.model_list = model_list if model_list is not None else {} - def validate_config(self): - default_config_path = os.path.join(get_config_dir(), CONST_AGENT_CONFIG_FILE_NAME) - # suppose the default config is always valid since it's created by the CLI - if self.config_path == default_config_path: - return + def save(self, provider: LLMProvider, params: dict): + # save the model config, and translate the model name to the one with llm provider route + model_name = provider.model_name(params.get("model")) + params["model"] = model_name + self.model_list[model_name] = params - try: - with open(self.config_path, "r") as f: - config_data = yaml.safe_load(f) + def secured_model_list(self) -> Dict[str, dict]: + secured_config = {} + for model_name, model_config in self.model_list.items(): + secured_config[model_name] = LLMProvider.to_secured_model_list_config(model_config) + return secured_config - # Validate the configuration structure - if not isinstance(config_data, dict): - raise ValueError( - f"Configuration file {self.config_path} must contain a YAML dictionary/mapping.") - - if "llms" not in config_data: - raise ValueError( - f"Configuration file {self.config_path} must contain an 'llms' key.") - - if not isinstance(config_data["llms"], list): - raise ValueError( - f"Configuration file {self.config_path}: 'llms' must be a list.") - - if len(config_data["llms"]) == 0: - raise ValueError( - f"Configuration file {self.config_path}: 'llms' list cannot be empty.") - - for llm_config in config_data["llms"]: - if not isinstance(llm_config, dict): - raise ValueError( - f"Configuration file {self.config_path}: " - "each LLM configuration must be a dictionary/mapping.") - except FileNotFoundError: - raise ValueError(f"Configuration file {self.config_path} not found.") - except yaml.YAMLError as e: - raise ValueError(f"Invalid YAML syntax in configuration file {self.config_path}: {e}") - except Exception as e: - raise ValueError(f"Failed to load configuration file {self.config_path}: {e}") - - def save(self, provider_name: str, params: dict): - configs = self.load() - if not isinstance(configs, Dict): - configs = {} - - models = configs.get("llms", []) - - # modify existing azure openai config from model name to deloyment name - for model in models: - if provider_name.lower() == "azure" and "MODEL_NAME" in model: - model["DEPLOYMENT_NAME"] = model.pop("MODEL_NAME") - - def _update_llm_config(provider_name, required_key, params, existing_models): - required_value = params.get(required_key) - if not required_value: - raise ValueError(f"{required_key} is required to save configuration.") - - # Check if model already exists, update it and move it to the last; - # otherwise, append the new one. - models = [ - cfg for cfg in existing_models if not ( - cfg.get("provider") == provider_name and cfg.get(required_key) == required_value)] - models.append({"provider": provider_name, **params}) - return models - - # To be consistent, we expose DEPLOYMENT_NAME for Azure provider in both configuration file and init prompts. - if provider_name.lower() == "azure": - configs["llms"] = _update_llm_config(provider_name, "DEPLOYMENT_NAME", params, models) - else: - configs["llms"] = _update_llm_config(provider_name, "MODEL_NAME", params, models) - - with open(self.config_path, "w") as f: - yaml.safe_dump(configs, f, sort_keys=False) - - def load(self): - """Load configurations from the YAML file.""" - if not os.path.exists(self.config_path): - return {} - with open(self.config_path, "r") as f: - configs = yaml.safe_load(f) - return configs if isinstance(configs, Dict) else {} - - def get_list(self) -> List[Dict]: - """Get the list of all model configurations""" - return self.load()["llms"] if self.load( - ) and "llms" in self.load() else [] - - def get_latest(self) -> Optional[Dict]: - """Get the last model configuration""" - model_configs = self.get_list() - if model_configs: - return model_configs[-1] - return None - - def get_specific( - self, - provider_name: str, - model_name: str) -> Optional[Dict]: + def get_llm_model_secret_data(self) -> Dict[str, str]: """ - Get specific model configuration by provider and model name during Q&A with --model provider/model + Get Kubernetes secret data for all LLM models in the configuration. """ - model_configs = self.get_list() - for cfg in model_configs: - if cfg.get("provider") == provider_name and provider_name.lower() == "azure": - if cfg.get("DEPLOYMENT_NAME") == model_name or cfg.get("MODEL_NAME") == model_name: - return cfg - if cfg.get("provider") == provider_name and cfg.get("MODEL_NAME") == model_name: - return cfg - return None - - def get_model_config(self, model) -> Optional[Dict]: - prompt_for_init = "Run 'az aks agent-init' to set up your LLM endpoint (recommended path).\n" \ - "To configure your LLM manually, create a config file using the templates provided here: " \ - "https://aka.ms/aks/agentic-cli/init" - - if not model: - llm_config: Optional[Dict] = self.get_latest() - if not llm_config: - raise AzCLIError(f"No LLM configurations found. {prompt_for_init}") - return llm_config + secrets_data = {} + for _, model_config in self.model_list.items(): + secret_data = LLMProvider.to_k8s_secret_data(model_config) + secrets_data.update(secret_data) + return secrets_data - provider_name = "openai" - model_name = model - if "/" in model: - provider_name, model_name = model.split("/", 1) - llm_config = self.get_specific(provider_name, model_name) - if not llm_config: - raise AzCLIError( - f"No configuration found for model '{model}'. {prompt_for_init}") - return llm_config - - def is_config_complete(self, config, provider_schema): + def get_env_vars(self, secret_name: str) -> List[Dict[str, str]]: """ - Check if the given config has all required keys and valid values as per the provider schema. + Get environment variable mappings for all LLM models in the configuration. """ - for key, meta in provider_schema.items(): - if meta.get("validator") and not meta["validator"]( - config.get(key)): - return False - return True - - def export_model_config(self, llm_config) -> str: - # Check if the configuration is complete - provider_name = llm_config.get("provider") - provider_instance = PROVIDER_REGISTRY.get(provider_name)() - # NOTE(mainred) for backward compatibility with Azure OpenAI, replace the MODEL_NAME with DEPLOYMENT_NAME - if provider_name.lower() == "azure" and "MODEL_NAME" in llm_config: - llm_config["DEPLOYMENT_NAME"] = llm_config.pop("MODEL_NAME") - - model_name_key = "MODEL_NAME" if provider_name.lower() != "azure" else "DEPLOYMENT_NAME" - model = provider_instance.model_name(llm_config.get(model_name_key)) - - # Set environment variables for the model provider - for k, v in llm_config.items(): - if k not in ["provider", "MODEL_NAME", "DEPLOYMENT_NAME"]: - os.environ[k] = v - logger.info( - "Using provider: %s, model: %s, Env vars setup successfully.", provider_name, llm_config.get("MODEL_NAME")) - - return model + env_vars_list = [] + for _, model_config in self.model_list.items(): + env_var = LLMProvider.to_env_vars(secret_name, model_config) + env_vars_list.append(env_var) + return env_vars_list diff --git a/src/aks-agent/azext_aks_agent/agent/llm_providers/__init__.py b/src/aks-agent/azext_aks_agent/agent/llm_providers/__init__.py index 3792eb97a8f..c98dc8e52db 100644 --- a/src/aks-agent/azext_aks_agent/agent/llm_providers/__init__.py +++ b/src/aks-agent/azext_aks_agent/agent/llm_providers/__init__.py @@ -5,7 +5,7 @@ from typing import List, Tuple -from azext_aks_agent._consts import ERROR_COLOR, HELP_COLOR +from azext_aks_agent.agent.console import ERROR_COLOR, HELP_COLOR from rich.console import Console from .anthropic_provider import AnthropicProvider diff --git a/src/aks-agent/azext_aks_agent/agent/llm_providers/anthropic_provider.py b/src/aks-agent/azext_aks_agent/agent/llm_providers/anthropic_provider.py index 091889ddf06..c1ad559b747 100644 --- a/src/aks-agent/azext_aks_agent/agent/llm_providers/anthropic_provider.py +++ b/src/aks-agent/azext_aks_agent/agent/llm_providers/anthropic_provider.py @@ -4,6 +4,8 @@ # -------------------------------------------------------------------------------------------- +from typing import Tuple + import requests from .base import LLMProvider, non_empty @@ -21,13 +23,13 @@ def model_route(self) -> str: @property def parameter_schema(self): return { - "ANTHROPIC_API_KEY": { + "api_key": { "secret": True, "default": None, "hint": None, "validator": non_empty }, - "MODEL_NAME": { + "model": { "secret": False, "default": "claude-sonnet-4", "hint": None, @@ -35,12 +37,11 @@ def parameter_schema(self): }, } - def validate_connection(self, params: dict): - api_key = params.get("ANTHROPIC_API_KEY") - model_name = params.get("MODEL_NAME") - + def validate_connection(self, params: dict) -> Tuple[str, str]: + api_key = params.get("api_key") + model_name = params.get("model") if not all([api_key, model_name]): - return False, "Missing required Anthropic parameters.", "retry_input" + return "Missing required Anthropic parameters.", "retry_input" url = "https://api.anthropic.com/v1/messages" headers = { @@ -58,10 +59,10 @@ def validate_connection(self, params: dict): resp = requests.post(url, headers=headers, json=payload, timeout=10) resp.raise_for_status() - return True, "Connection successful.", "save" + return None, "save" # None error means success except requests.exceptions.HTTPError as e: if 400 <= resp.status_code < 500: - return False, f"Client error: {e} - {resp.text}", "retry_input" - return False, f"Server error: {e} - {resp.text}", "connection_error" + return f"Client error: {e} - {resp.text}", "retry_input" + return f"Server error: {e} - {resp.text}", "connection_error" except requests.exceptions.RequestException as e: - return False, f"Request error: {e}", "connection_error" + return f"Request error: {e}", "connection_error" diff --git a/src/aks-agent/azext_aks_agent/agent/llm_providers/azure_provider.py b/src/aks-agent/azext_aks_agent/agent/llm_providers/azure_provider.py index f475a01371d..178095a8cbc 100644 --- a/src/aks-agent/azext_aks_agent/agent/llm_providers/azure_provider.py +++ b/src/aks-agent/azext_aks_agent/agent/llm_providers/azure_provider.py @@ -32,25 +32,26 @@ def model_route(self) -> str: @property def parameter_schema(self): return { - "DEPLOYMENT_NAME": { + "model": { "secret": False, "default": None, "hint": "ensure your deployment name is the same as the model name, e.g., gpt-5", - "validator": non_empty + "validator": non_empty, + "alias": "deployment_name" }, - "AZURE_API_KEY": { + "api_key": { "secret": True, "default": None, "hint": None, "validator": non_empty }, - "AZURE_API_BASE": { + "api_base": { "secret": False, "default": None, "hint": "https://{azure-openai-service-name}.openai.azure.com/", "validator": is_valid_api_base }, - "AZURE_API_VERSION": { + "api_version": { "secret": False, "default": "2025-04-01-preview", "hint": None, @@ -58,14 +59,14 @@ def parameter_schema(self): } } - def validate_connection(self, params: dict) -> Tuple[bool, str, str]: - api_key = params.get("AZURE_API_KEY") - api_base = params.get("AZURE_API_BASE") - api_version = params.get("AZURE_API_VERSION") - deployment_name = params.get("DEPLOYMENT_NAME") + def validate_connection(self, params: dict) -> Tuple[str, str]: + api_key = params.get("api_key") + api_base = params.get("api_base") + api_version = params.get("api_version") + deployment_name = params.get("model") if not all([api_key, api_base, api_version, deployment_name]): - return False, "Missing required Azure parameters.", "retry_input" + return "Missing required Azure parameters.", "retry_input" # REST API reference: https://learn.microsoft.com/en-us/azure/ai-foundry/openai/api-version-lifecycle?tabs=rest url = urljoin(api_base, f"openai/deployments/{deployment_name}/chat/completions") @@ -83,10 +84,10 @@ def validate_connection(self, params: dict) -> Tuple[bool, str, str]: resp = requests.post(full_url, headers=headers, json=payload, timeout=10) resp.raise_for_status() - return True, "Connection successful.", "save" + return None, "save" # None error means success except requests.exceptions.HTTPError as e: if 400 <= resp.status_code < 500: - return False, f"Client error: {e} - {resp.text}", "retry_input" - return False, f"Server error: {e} - {resp.text}", "connection_error" + return f"Client error: {e} - {resp.text}", "retry_input" + return f"Server error: {e} - {resp.text}", "connection_error" except requests.exceptions.RequestException as e: - return False, f"Request error: {e}", "connection_error" + return f"Request error: {e}", "connection_error" diff --git a/src/aks-agent/azext_aks_agent/agent/llm_providers/base.py b/src/aks-agent/azext_aks_agent/agent/llm_providers/base.py index 774e47affba..3e4c1135c26 100644 --- a/src/aks-agent/azext_aks_agent/agent/llm_providers/base.py +++ b/src/aks-agent/azext_aks_agent/agent/llm_providers/base.py @@ -4,16 +4,18 @@ # -------------------------------------------------------------------------------------------- +import base64 from abc import ABC, abstractmethod from typing import Any, Callable, Dict, Tuple from urllib.parse import urlparse -from azext_aks_agent._consts import ERROR_COLOR, HELP_COLOR -from rich.console import Console - -console = Console() -HINT_COLOR = "bright_black" -DEFAULT_COLOR = "bright_black" +from azext_aks_agent.agent.console import ( + DEFAULT_VALUE_COLOR, + ERROR_COLOR, + HELP_COLOR, + HINT_COLOR, + get_console, +) def non_empty(v: str) -> bool: @@ -78,7 +80,8 @@ def parameter_schema(self) -> Dict[str, Dict[str, Any]]: "secret": True/False, "default": "default value or None", "hint": "Additional hint to show user", - "validator": Callable[[str], bool] # function to validate input + "validator": Callable[[str], bool] # function to validate input, + "alias": "alias" # optional alternative names for the param } } """ @@ -89,7 +92,10 @@ def prompt_params(self): schema = self.parameter_schema params = {} for param, meta in schema.items(): - prompt = meta.get("prompt", f"[bold {HELP_COLOR}]Enter value for {param}: [/]") + prompt_name = param + if "alias" in meta: + prompt_name = meta["alias"] + prompt = meta.get("prompt", f"[bold {HELP_COLOR}]Enter value for {prompt_name}: [/]") default = meta.get("default") hint = meta.get("hint") secret = meta.get("secret", False) @@ -97,10 +103,11 @@ def prompt_params(self): "validator", lambda x: True) if default: - prompt += f" [italic {DEFAULT_COLOR}](Default: {default})[/] " + prompt += f" [italic {DEFAULT_VALUE_COLOR}](Default: {default})[/] " if hint: prompt += f" [italic {HINT_COLOR}](Hint: {hint})[/] " + console = get_console() while True: if secret: # For password input, we'll handle the display differently @@ -132,7 +139,7 @@ def prompt_params(self): params[param] = value break console.print( - f"Invalid value for {param}. Please try again, or type '/exit' to exit.", + f"Invalid value for {prompt_name}. Please try again, or type '/exit' to exit.", style=f"{ERROR_COLOR}") return params @@ -151,12 +158,70 @@ def validate_params(self, params: dict): # pylint: disable=unused-argument @abstractmethod - def validate_connection(self, params: dict) -> Tuple[bool, str, str]: + def validate_connection(self, params: dict) -> Tuple[str, str]: """ Validate connection to the model endpoint using provided parameters. - Returns a tuple of (is_valid: bool, message: str, action: str) - where action can be "retry_input", "connection_error", or "save". + Returns a tuple of (error: str | None, action: str) + where error is None if validation is successful, otherwise contains the error message. + Action can be "retry_input", "connection_error", or "save". """ # TODO(mainred): leverage 3rd party libraries like litellm instead of # calling http request in each provider to complete the connection check. raise NotImplementedError() + + @classmethod + def to_k8s_secret_data(cls, params: dict): + """Create a Kubernetes secret dictionary from the provider parameters. + """ + secret_key = cls.sanitize_k8s_secret_key(params) + secret_value = params.get("api_key") + secret_data = { + secret_key: base64.b64encode(secret_value.encode("utf-8")).decode("utf-8"), + } + return secret_data + + @classmethod + def sanitize_k8s_secret_key(cls, params: dict): + """Create a unique Kubernetes secret key from the provider parameters. + """ + import re + + # A valid secret config key must consist of alphanumeric characters, '-', '_' or '.' (e.g. 'key.name', + # or 'KEY_NAME', or 'key-name', regex used for validation is '[-._a-zA-Z0-9]+') + model_name = params.get("model") + + # Create a valid k8s secret key by combining model_route and model_name + # Replace any invalid characters with underscores and use dot as separator + def sanitize_key_part(part): + # Replace any character that's not alphanumeric or '_' with '_' + return re.sub(r'[^_a-zA-Z0-9]', '_', str(part)).upper() + + sanitized_route_model_name = sanitize_key_part(model_name) + secret_key = f"{sanitized_route_model_name}_API_KEY" + + return secret_key + + @classmethod + def to_secured_model_list_config(cls, params: dict) -> Dict[str, dict]: + """Create a model config dictionary for the model list from the provider parameters. + Returns a copy of params with the api_key replaced by environment variable reference. + """ + secret_key = cls.sanitize_k8s_secret_key(params) + secured_params = params.copy() + secured_params.update({"api_key": f"{{{{ env.{secret_key} }}}}"}) + return secured_params + + @classmethod + def to_env_vars(cls, secret_name, params: dict) -> Dict[str, str]: + """Create a model config dictionary for the model list from the provider parameters. + """ + secret_key = cls.sanitize_k8s_secret_key(params) + return { + "name": secret_key, + "valueFrom": { + "secretKeyRef": { + "name": secret_name, + "key": secret_key + } + } + } diff --git a/src/aks-agent/azext_aks_agent/agent/llm_providers/gemini_provider.py b/src/aks-agent/azext_aks_agent/agent/llm_providers/gemini_provider.py index 461ad534b1c..53fdbd16640 100644 --- a/src/aks-agent/azext_aks_agent/agent/llm_providers/gemini_provider.py +++ b/src/aks-agent/azext_aks_agent/agent/llm_providers/gemini_provider.py @@ -4,6 +4,8 @@ # -------------------------------------------------------------------------------------------- +from typing import Tuple + import requests from .base import LLMProvider, non_empty @@ -21,13 +23,13 @@ def model_route(self) -> str: @property def parameter_schema(self): return { - "GEMINI_API_KEY": { + "api_key": { "secret": True, "default": None, "hint": None, "validator": non_empty }, - "MODEL_NAME": { + "model": { "secret": False, "default": None, "hint": "gemini-2.5", @@ -35,12 +37,12 @@ def parameter_schema(self): }, } - def validate_connection(self, params: dict): - api_key = params.get("GEMINI_API_KEY") - model_name = params.get("MODEL_NAME") + def validate_connection(self, params: dict) -> Tuple[str, str]: + api_key = params.get("api_key") + model_name = params.get("model") if not all([api_key, model_name]): - return False, "Missing required Gemini parameters.", "retry_input" + return "Missing required Gemini parameters.", "retry_input" url = f"https://generativelanguage.googleapis.com/v1beta/models/{model_name}:generateContent" headers = {"Content-Type": "application/json", @@ -53,10 +55,10 @@ def validate_connection(self, params: dict): resp = requests.post(url, headers=headers, json=payload, timeout=10) resp.raise_for_status() - return True, "Connection successful.", "save" + return None, "save" # None error means success except requests.exceptions.HTTPError as e: if 400 <= resp.status_code < 500: - return False, f"Client error: {e} - {resp.text}", "retry_input" - return False, f"Server error: {e} - {resp.text}", "connection_error" + return f"Client error: {e} - {resp.text}", "retry_input" + return f"Server error: {e} - {resp.text}", "connection_error" except requests.exceptions.RequestException as e: - return False, f"Request error: {e}", "connection_error" + return f"Request error: {e}", "connection_error" diff --git a/src/aks-agent/azext_aks_agent/agent/llm_providers/openai_compatible_provider.py b/src/aks-agent/azext_aks_agent/agent/llm_providers/openai_compatible_provider.py index 5c75f4817d1..1f63dbd08c3 100644 --- a/src/aks-agent/azext_aks_agent/agent/llm_providers/openai_compatible_provider.py +++ b/src/aks-agent/azext_aks_agent/agent/llm_providers/openai_compatible_provider.py @@ -3,6 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +from typing import Tuple from urllib.parse import urljoin import requests @@ -28,19 +29,19 @@ def model_route(self) -> str: @property def parameter_schema(self): return { - "MODEL_NAME": { + "model": { "secret": False, "default": None, "hint": None, "validator": non_empty }, - "API_KEY": { + "api_key": { "secret": True, "default": None, "hint": None, "validator": non_empty }, - "API_BASE": { + "api_base": { "secret": False, "default": "https://api.openai.com/v1", "hint": None, @@ -48,13 +49,13 @@ def parameter_schema(self): }, } - def validate_connection(self, params: dict): - api_key = params.get("API_KEY") - api_base = params.get("API_BASE") - model_name = params.get("MODEL_NAME") + def validate_connection(self, params: dict) -> Tuple[str, str]: + api_key = params.get("api_key") + api_base = params.get("api_base") + model_name = params.get("model") if not all([api_key, api_base, model_name]): - return False, "Missing required parameters.", "retry_input" + return "Missing required parameters.", "retry_input" url = urljoin(api_base, "chat/completions") headers = {"Authorization": f"Bearer {api_key}", @@ -69,10 +70,10 @@ def validate_connection(self, params: dict): resp = requests.post(url, headers=headers, json=payload, timeout=10) resp.raise_for_status() - return True, "Connection successful.", "save" + return None, "save" # None error means success except requests.exceptions.HTTPError as e: if 400 <= resp.status_code < 500: - return False, f"Client error: {e} - {resp.text}", "retry_input" - return False, f"Server error: {e} - {resp.text}", "connection_error" + return f"Client error: {e} - {resp.text}", "retry_input" + return f"Server error: {e} - {resp.text}", "connection_error" except requests.exceptions.RequestException as e: - return False, f"Request error: {e}", "connection_error" + return f"Request error: {e}", "connection_error" diff --git a/src/aks-agent/azext_aks_agent/agent/llm_providers/openai_provider.py b/src/aks-agent/azext_aks_agent/agent/llm_providers/openai_provider.py index 4ea4e9372bd..87ae448ed91 100644 --- a/src/aks-agent/azext_aks_agent/agent/llm_providers/openai_provider.py +++ b/src/aks-agent/azext_aks_agent/agent/llm_providers/openai_provider.py @@ -4,6 +4,8 @@ # -------------------------------------------------------------------------------------------- +from typing import Tuple + import requests from .base import LLMProvider, non_empty @@ -26,13 +28,13 @@ def model_route(self) -> str: @property def parameter_schema(self): return { - "MODEL_NAME": { + "model": { "secret": False, "default": "gpt-5", "hint": None, "validator": non_empty }, - "OPENAI_API_KEY": { + "api_key": { "secret": True, "default": None, "hint": None, @@ -40,12 +42,11 @@ def parameter_schema(self): }, } - def validate_connection(self, params: dict): - api_key = params.get("OPENAI_API_KEY") - model_name = params.get("MODEL_NAME") - + def validate_connection(self, params: dict) -> Tuple[str, str]: + api_key = params.get("api_key") + model_name = params.get("model") if not all([api_key, model_name]): - return False, "Missing required OpenAI parameters.", "retry_input" + return "Missing required OpenAI parameters.", "retry_input" url = "https://api.openai.com/v1/chat/completions" headers = {"Authorization": f"Bearer {api_key}", @@ -60,10 +61,10 @@ def validate_connection(self, params: dict): resp = requests.post(url, headers=headers, json=payload, timeout=10) resp.raise_for_status() - return True, "Connection successful", "save" + return None, "save" # None error means success except requests.exceptions.HTTPError as e: if 400 <= resp.status_code < 500: - return False, f"Client error: {e} - {resp.text}", "retry_input" - return False, f"Server error: {e} - {resp.text}", "connection_error" + return f"Client error: {e} - {resp.text}", "retry_input" + return f"Server error: {e} - {resp.text}", "connection_error" except requests.exceptions.RequestException as e: - return False, f"Request error: {e}", "connection_error" + return f"Request error: {e}", "connection_error" diff --git a/src/aks-agent/azext_aks_agent/agent/logging.py b/src/aks-agent/azext_aks_agent/agent/logging.py deleted file mode 100644 index 4d67a595ea9..00000000000 --- a/src/aks-agent/azext_aks_agent/agent/logging.py +++ /dev/null @@ -1,72 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: disable=line-too-long - -import logging -from contextlib import contextmanager - - -# azure cli core will handle and log the exceptions with metadata_logger, while rich handler may cause duplicate logs. -# ref: https://github.com/Azure/azure-cli/blob/37e3d6e857bfe05dbad6b9594d65589b8cfaee5a/src/azure-cli-core/azure/cli/core/azlogging.py#L207 -def mute_rich_logging(): - """ - Remove rich handlers from the root logger to prevent duplicate logging when raising errors. - """ - root_logger = logging.getLogger() - rich_handlers = [] - - # Find and remove rich handlers - for handler in root_logger.handlers[:]: # Create a copy to iterate safely - if (hasattr(handler, 'console') or - handler.__class__.__name__ == 'RichHandler' or - 'rich' in handler.__class__.__module__.lower()): - rich_handlers.append(handler) - root_logger.removeHandler(handler) - - -# NOTE(mainred): holmes leverage the log handler RichHandler to provide colorful, readable and well-formatted logs -# making the interactive mode more user-friendly. -# And we removed exising log handlers to avoid duplicate logs. -# Also make the console log consistent, we remove the telemetry and data logger to skip redundant logs. -def init_log(): - # NOTE(mainred): we need to disable INFO logs from LiteLLM before LiteLLM library is loaded, to avoid logging the - # debug logs from heading of LiteLLM. - logging.getLogger("LiteLLM").setLevel(logging.WARNING) - logging.getLogger("telemetry.main").setLevel(logging.WARNING) - logging.getLogger("telemetry.process").setLevel(logging.WARNING) - logging.getLogger("telemetry.save").setLevel(logging.WARNING) - logging.getLogger("telemetry.client").setLevel(logging.WARNING) - logging.getLogger("az_command_data_logger").setLevel(logging.WARNING) - - from holmes.utils.console.logging import init_logging - - # TODO: make log verbose configurable, currently disabled by []. - return init_logging([]) - - -@contextmanager -def rich_logging(): - """ - Context manager that initializes logging and automatically mutes rich logging on errors. - This combines initialization with automatic error handling. - - Usage: - with rich_logging() as console: - # Rich logging is available - console.print("This will use rich logging") - - # If any error is raised, rich logging will be muted automatically - raise CLIError("This won't be logged by rich handler") - """ - # Initialize logging first - console = init_log() - - try: - yield console - except Exception: - # When any exception occurs, mute rich logging to prevent duplicates - mute_rich_logging() - # Re-raise the exception so it can be handled normally by CLI - raise diff --git a/src/aks-agent/azext_aks_agent/agent/mcp_manager.py b/src/aks-agent/azext_aks_agent/agent/mcp_manager.py deleted file mode 100644 index b1652ee58d6..00000000000 --- a/src/aks-agent/azext_aks_agent/agent/mcp_manager.py +++ /dev/null @@ -1,422 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -MCP Manager module for AKS MCP integration. - -This module provides the main interface for managing the AKS Model Context Protocol -server lifecycle and integration with the AKS agent. -""" - -import os -import asyncio -from typing import Optional -from azure.cli.core.api import get_config_dir - -from .binary_manager import AksMcpBinaryManager -from .._consts import CONST_MCP_BINARY_DIR -from .error_handler import ServerError - - -class MCPManager: - """MCP lifecycle management with server process control""" - - def __init__(self, config_dir: str = None, verbose: bool = False): - """ - Initialize MCP manager. - - :param config_dir: Configuration directory path (defaults to Azure CLI config dir) - :type config_dir: Optional[str] - :param verbose: Enable verbose output - :type verbose: bool - """ - self.config_dir = config_dir or get_config_dir() - self.binary_manager = AksMcpBinaryManager( - os.path.join(self.config_dir, CONST_MCP_BINARY_DIR) - ) - self.verbose = verbose - - # Server process management - self.server_process = None - self.server_url = None - self.server_port = None - - def is_binary_available(self) -> bool: - """ - Check if MCP binary is available. - - :return: True if binary is available, False otherwise - :rtype: bool - """ - return self.binary_manager.is_binary_available() - - def get_binary_version(self) -> Optional[str]: - """ - Get binary version if available. - - :return: Version string if available, None otherwise - :rtype: Optional[str] - """ - return self.binary_manager.get_binary_version() - - def get_binary_path(self) -> str: - """ - Get the path where the MCP binary should be located. - - :return: Path to the binary - :rtype: str - """ - return self.binary_manager.get_binary_path() - - def validate_binary_version(self) -> bool: - """ - Validate that the binary meets minimum version requirements. - - :return: True if binary meets requirements, False otherwise - :rtype: bool - """ - return self.binary_manager.validate_version() - - async def start_server(self) -> bool: - """ - Start aks-mcp server process. - - :return: True if server started successfully, False otherwise - :rtype: bool - :raises: Exception if server cannot be started - """ - import subprocess - from .user_feedback import ProgressReporter - from .._consts import CONST_MCP_DEFAULT_PORT - - # Check if server is already running - if self.is_server_running(): - if self.is_server_healthy(): - if self.verbose: - ProgressReporter.show_status_message("MCP server is already running and healthy", "info") - return True - # Server is running but unhealthy, stop it first - self.stop_server() - - # Ensure binary is available - if not self.is_binary_available(): - raise ServerError( - "MCP binary is not available for server startup", - "BINARY_UNAVAILABLE", - [ - "The MCP binary should be automatically downloaded", - "Check your internet connection for binary download", - "Try running the command again to retry download", - "Run without --aks-mcp to stay in traditional mode" - ] - ) - - # Find available port - self.server_port = self._find_available_port(CONST_MCP_DEFAULT_PORT) - self.server_url = f"http://localhost:{self.server_port}/sse" - - # Build command to start server - binary_path = self.get_binary_path() - cmd = [binary_path, "--transport", "sse", "--port", str(self.server_port)] - - try: - if self.verbose: - ProgressReporter.show_status_message(f"Starting MCP server on port {self.server_port}", "info") - - # Start the server using asyncio subprocess with DEVNULL stdio to avoid - # transport pipe cleanup on loop shutdown. - self.server_process = await asyncio.create_subprocess_exec( - *cmd, - stdout=subprocess.DEVNULL, - stderr=subprocess.DEVNULL, - stdin=subprocess.DEVNULL, - ) - - # Wait a moment for server to initialize - await asyncio.sleep(2) - - # Check if server is healthy - if self.is_server_healthy(): - if self.verbose: - ProgressReporter.show_status_message("MCP server started successfully", "info") - return True - # Server failed to start properly - self.stop_server() - raise RuntimeError(f"MCP server failed to start or is unhealthy on port {self.server_port}") - - except Exception as e: - # Clean up on failure - self.stop_server() - raise RuntimeError(f"Failed to start MCP server: {str(e)}") from e - - def stop_server(self) -> None: # pylint: disable=too-many-nested-blocks, too-many-branches - """ - Stop aks-mcp server process. - """ - if self.server_process is not None: # pylint: disable=too-many-nested-blocks - try: - # Get process info for debugging - pid = getattr(self.server_process, 'pid', 'unknown') - - if self.verbose: - from .user_feedback import ProgressReporter - ProgressReporter.show_status_message( - f"Attempting graceful shutdown of MCP server (PID: {pid})", "info" - ) - - # Gracefully terminate the process - try: - self.server_process.terminate() - except Exception: # pylint: disable=broad-exception-caught - # Ignore terminate errors and continue with kill path - pass - - # Wait up to 8 seconds for graceful shutdown - import time - start_time = time.time() - timeout = 8.0 - check_interval = 0.1 - last_log_time = start_time # limit verbose logs to once every ~2 seconds - - # Poll for process exit (works for both Popen-like and asyncio Process) - while (time.time() - start_time) < timeout: - time.sleep(check_interval) - rc = None - try: - if hasattr(self.server_process, 'poll'): - rc = self.server_process.poll() - else: - rc = getattr(self.server_process, 'returncode', None) - except Exception: # pylint: disable=broad-exception-caught - rc = 0 # Assume exited - - if rc is not None: - if self.verbose: - from .user_feedback import ProgressReporter - elapsed = time.time() - start_time - ProgressReporter.show_status_message( - f"MCP server shut down gracefully in {elapsed:.2f}s", "info" - ) - return - # Fallback: OS-level existence check (handles asyncio Process without active loop) - try: - if pid != 'unknown': - os.kill(pid, 0) - # If no exception, process still exists - except (OSError, ProcessLookupError): - if self.verbose: - from .user_feedback import ProgressReporter - elapsed = time.time() - start_time - ProgressReporter.show_status_message( - f"MCP server shut down gracefully in {elapsed:.2f}s", "info" - ) - return - # Debug: emit a message at most once every ~2 seconds in verbose mode - if self.verbose: - now = time.time() - if (now - last_log_time) >= 2.0: - elapsed = now - start_time - ProgressReporter.show_status_message( - f"Waiting for graceful shutdown... {elapsed:.1f}s", "info" - ) - last_log_time = now - - # If we get here, timeout was reached and process might still be running - try: # pylint: disable=too-many-nested-blocks - # If still running, force kill (support both Popen and asyncio Process) - still_running = False - try: - if hasattr(self.server_process, 'poll'): - still_running = self.server_process.poll() is None - else: - still_running = getattr(self.server_process, 'returncode', None) is None - except Exception: # pylint: disable=broad-exception-caught - still_running = False - - if still_running: - if self.verbose: - from .user_feedback import ProgressReporter - ProgressReporter.show_status_message( - f"Graceful shutdown timed out after {timeout}s, using force kill", "warning" - ) - - try: - # asyncio subprocess has .kill(); Popen has .kill() as well - self.server_process.kill() - except Exception: # pylint: disable=broad-exception-caught - pass - - # Wait up to 3 seconds for kill to complete - kill_start = time.time() - while (time.time() - kill_start) < 3.0: - time.sleep(0.1) - try: - if hasattr(self.server_process, 'poll'): - if self.server_process.poll() is not None: - if self.verbose: - ProgressReporter.show_status_message( - "MCP server force killed successfully", - "info" - ) - break - else: - if getattr(self.server_process, 'returncode', None) is not None: - if self.verbose: - ProgressReporter.show_status_message( - "MCP server force killed successfully", - "info" - ) - break - except Exception: # pylint: disable=broad-exception-caught - break - - # If still running, warn - try: - still_running = False - if hasattr(self.server_process, 'poll'): - still_running = self.server_process.poll() is None - else: - still_running = getattr(self.server_process, 'returncode', None) is None - # OS-level last check - if pid != 'unknown': - try: - os.kill(pid, 0) - except (OSError, ProcessLookupError): - still_running = False - except Exception: # pylint: disable=broad-exception-caught - still_running = False - if still_running and self.verbose: - ProgressReporter.show_status_message( - f"Warning: MCP server (PID: {pid}) may still be running", "warning" - ) - else: - # Already terminated - if self.verbose: - from .user_feedback import ProgressReporter - ProgressReporter.show_status_message( - "Process terminated (PID unavailable, assuming success)", "info" - ) - - except (OSError, ProcessLookupError): - # Process no longer exists - it terminated during our timeout check - if self.verbose: - from .user_feedback import ProgressReporter - ProgressReporter.show_status_message( - "MCP server terminated successfully (detected late)", "info" - ) - - except Exception as e: # pylint: disable=broad-exception-caught - if self.verbose: - from .user_feedback import ProgressReporter - ProgressReporter.show_status_message(f"Error stopping server: {str(e)}", "error") - finally: - # Explicitly close pipes to avoid lingering file descriptors - try: - stdin_obj = getattr(self.server_process, "stdin", None) - if stdin_obj is not None: - try: - stdin_obj.close() - except Exception: # pylint: disable=broad-exception-caught - pass - for stream_name in ("stdout", "stderr"): - stream_obj = getattr(self.server_process, stream_name, None) - # StreamReader doesn't have close(); ignore safely - if stream_obj is not None and hasattr(stream_obj, "close"): - try: - stream_obj.close() - except Exception: # pylint: disable=broad-exception-caught - pass - finally: - self.server_process = None - self.server_url = None - self.server_port = None - - def is_server_running(self) -> bool: - """ - Check if server process is running. - - :return: True if server process is running, False otherwise - :rtype: bool - """ - if self.server_process is None: - return False - - # Check if process is still alive - try: - # Prefer 'returncode' when available (stable for mocks/tests) - if hasattr(self.server_process, 'returncode'): - return getattr(self.server_process, 'returncode', None) is None - # Otherwise use poll() if available - if hasattr(self.server_process, 'poll'): - return self.server_process.poll() is None - return False - except Exception: # pylint: disable=broad-exception-caught - return False - - def is_server_healthy(self) -> bool: - """ - Health check server via HTTP. - - :return: True if server is healthy and responding, False otherwise - :rtype: bool - """ - if not self.is_server_running() or self.server_url is None: - return False - - try: - import urllib.request - import urllib.error - - # Simple HTTP health check with short timeout - # The SSE endpoint should respond with appropriate headers even for GET requests - with urllib.request.urlopen(self.server_url, timeout=3) as response: - # Server is responding - consider it healthy - # SSE servers typically return 200 OK even for simple GET requests - return response.status == 200 - - except (urllib.error.URLError, urllib.error.HTTPError, OSError): - return False - - def _find_available_port(self, start_port: int = 8003) -> int: - """ - Find available port for server. - - :param start_port: Port to start searching from (default 8003) - :type start_port: int - :return: Available port number - :rtype: int - """ - import socket - - # Try the preferred port first - for port in range(start_port, start_port + 100): - try: - with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock: - sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) - sock.bind(('localhost', port)) - return port - except OSError: - continue - - # If no port is available in range, raise an exception - raise RuntimeError(f"No available ports found in range {start_port}-{start_port + 99}") - - def get_server_url(self) -> Optional[str]: - """ - Get the current server URL if server is running. - - :return: Server URL if available, None otherwise - :rtype: Optional[str] - """ - return self.server_url if self.is_server_running() else None - - def get_server_port(self) -> Optional[int]: - """ - Get the current server port if server is running. - - :return: Server port if available, None otherwise - :rtype: Optional[int] - """ - return self.server_port if self.is_server_running() else None diff --git a/src/aks-agent/azext_aks_agent/agent/prompt.py b/src/aks-agent/azext_aks_agent/agent/prompt.py deleted file mode 100644 index 629ccb3c6a3..00000000000 --- a/src/aks-agent/azext_aks_agent/agent/prompt.py +++ /dev/null @@ -1,214 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -# Base context template shared by both modes -_AKS_BASE_CONTEXT = """ -# AKS-Specific Context and Workflow - -You are now operating in Azure Kubernetes Service (AKS) mode. All investigations must consider both Azure control plane and Kubernetes data plane components. - -## AKS Context Requirements - -### MANDATORY: Establish AKS Cluster Context -Before any troubleshooting, you MUST establish and validate the AKS cluster context: - -{% if cluster_name and resource_group %} -**User-provided context:** -- Cluster: `{{cluster_name}}` -- Resource Group: `{{resource_group}}` -- Subscription: `{{subscription_id}}` - -⚠️ **MANDATORY Validation** - You MUST perform ALL Context Validation Steps below before proceeding with any investigation. Do not skip validation even when context is provided by the user. -{% else %} -**Auto-discovery required** - Detect AKS context using this priority: - -{% if is_mcp_mode %} -1. **Primary method**: Use MCP tools from aks-mcp server to get cluster context directly - - MCP tools provide the most comprehensive and reliable context discovery - - Call MCP tools to extract current AKS cluster information -2. **IMPORTANT**: Do not try to use traditional toolsets if MCP tools are not available, just report failure -{% else %} -1. **Primary method**: Check if `aks/core` toolset is available in your toolsets - - If available, use the `aks/core` tools to get cluster context directly - - This is the preferred method as it provides the most reliable context discovery -2. **Fallback method**: If `aks/core` toolset is not available: - - Get current Azure subscription ID - - Extract AKS cluster name from current kubeconfig context - - Find resource group by listing AKS clusters with matching name in the subscription -{% endif %} - -**Critical**: You MUST first check toolset availability before choosing the discovery method. - -**Error handling:** If discovery fails (empty response, errors, or toolset unavailable), you MUST: -1. **IMMEDIATELY STOP ALL OPERATIONS** - Do not proceed with any investigation -2. **DO NOT ATTEMPT ANY TROUBLESHOOTING** - No kubectl commands, no Azure commands, nothing -3. **DO NOT INFER THE RESOURCE NAME** - Do not assume any resource name, resource group, or subscription ID -4. **ONLY display the context failure message** exactly as follows with no extra blank lines (replace the first three placeholders with actual detected values or None): - - list "Cluster name", "Resource group", "Subscription ID" with detected value or None - - prompt to the user to either provide the the cluster context in the prompt including Cluster name", "Resource group" and "Subscription ID", or - - restart the command specifying the cluster info in flags with examples (e.g., --name --resource-group --subscription ) - -{% endif %} - -### Context Validation Steps - MANDATORY FOR ALL SCENARIOS -**These steps MUST be performed whether context is user-provided or auto-discovered:** - -1. **Verify cluster exists** in specified resource group/subscription: - - Confirm the AKS cluster can be found under the resource group and subscription - - If cluster is not found, STOP and report the validation failure -2. **Check kubeconfig context** - ensure the current kubectl context matches the target AKS cluster: - - **MANDATORY**: This step MUST be performed even if you're only checking Azure resources - - Get current kubectl context: `kubectl config current-context` - - **ONLY if context doesn't match the target AKS cluster name**: - a. **Attempt to download credentials**: Use `az aks get-credentials` to download cluster credentials - b. **If credential download fails or no tool is available**, you MUST instruct the user to manually download credentials: - ``` - Please manually download AKS credentials: - az aks get-credentials --resource-group {{resource_group}} --name {{cluster_name}} --subscription {{subscription_id}} - ``` - c. **Attempt to switch the kubernetes context**: Use `kubectl config use-context` command (NEVER use `run_bash_command` tool to switch context) - d. **If context switch fails or no tool is available**, you MUST instruct the user to manually switch context: - ``` - Please manually switch to the correct kubectl context: - kubectl config use-context {{cluster_name}} - ``` - - **Verify the current context is now set to the cluster name**: Run `kubectl config current-context` and confirm it matches the target AKS cluster name - - **If context already matches**: Skip credential download and proceed - - **This ensures the kubectl context is actively switched to the target cluster for any future Kubernetes operations in the session** - -**CRITICAL**: Before performing ANY Kubernetes operations (kubectl commands, checking pods, services, deployments, etc.), you MUST ALWAYS verify that the current kubectl context matches the target AKS cluster name. If it doesn't match, you MUST download the correct credentials and switch context before proceeding. This validation is required EVERY TIME you need to interact with Kubernetes resources, even if you've already validated Azure resources in the same session. - -**Only proceed with investigation after ALL validation steps pass successfully.** -""" - -# MCP Mode specific toolset instructions -_MCP_TOOLSET_INSTRUCTIONS = """ -## 🚀 MCP Mode - Enhanced AKS Troubleshooting via aks-mcp - -You are running in **MCP Mode** with the aks-mcp server providing MCP tools. - -### ✅ MCP Tool Usage Guidelines: -1. Prefer MCP tools over traditional toolsets when available. -2. Do not fallback to traditional toolsets if MCP tools are unavailable; just report failure. -3. Be explicit about the chosen MCP tool and why. - -### 🧰 Common MCP Tools -When MCP tools are available, prefer these over manual commands: -1. `kubectl_diagnostics` (collects metrics and diagnostics for K8s resources) -2. `aks_core` (reads AKS control plane level info) -3. `network_diagnostics` (inspects network connectivity and related issues) - -### ❓ If unsure which tool to use -Ask the user for more details: -``` -To help me select the most appropriate tool, could you please: -- Specify if you know the exact MCP tool name that should be used -- Provide more specific details about what you want to accomplish -- Include any specific AKS/Kubernetes resource types or operations involved - -Examples of helpful details: -- "Use the [tool-name] tool to..." -- "I need to check pod logs in namespace X" -- "I want to diagnose node issues on cluster Y" -- "I need to examine AKS cluster networking configuration" - -This will help me select the right MCP tool for your specific needs. -``` - -5. **List available MCP tools** if you can see them in your toolset, so the user can choose the most appropriate one - -The MCP server provides comprehensive, integrated tools that combine Azure and Kubernetes operations with enhanced context awareness and intelligent troubleshooting capabilities. -""" - -# Traditional Mode specific toolset instructions -_TRADITIONAL_TOOLSET_INSTRUCTIONS = """ -## 🔧 Traditional Mode - Standard AKS Toolset Configuration - -**IMPORTANT - Toolset Usage Guidelines:** -You are running in **Traditional Mode** with standard Holmes toolsets enabled. - -### 🎯 MANDATORY Tool Usage Rules for Traditional Mode: - -**For AKS and Kubernetes operations, follow this strict hierarchy:** - -1. **AKS Operations** - Use in this order: - - **First choice**: `aks/core` toolset tools - - **Second choice**: `aks/node-health` toolset tools - - **Last resort**: Manual instruction to user (avoid bash for complex operations) - -2. **Kubernetes Operations** - Use in this order: - - **First choice**: `kubernetes/core` toolset tools - - **Second choice**: `kubernetes/logs` toolset tools - - **Third choice**: `kubernetes/live-metrics` toolset tools - - **Last resort**: Manual instruction to user (avoid bash for complex operations) - -3. **CRITICAL RESTRICTIONS for bash toolset:** - - **NEVER use bash toolset** for `kubectl` operations - - **NEVER use bash toolset** for `az aks` operations - - **Bash is ONLY acceptable for**: - - Simple file operations (ls, cat, grep on log files) - - Basic system checks (ps, netstat, df) - - Text processing and parsing - - Non-AKS/Kubernetes administrative tasks - -**Why avoid bash for AKS/Kubernetes?** -- Dedicated toolsets provide better error handling -- Integrated context and state management -- Safer parameter validation -- Enhanced output formatting and parsing -- Consistent behavior across environments - -**Tool Selection Examples:** -- ❌ `bash: kubectl get pods` → ✅ `kubernetes/core: get pods` -- ❌ `bash: az aks show` → ✅ `aks/core: get cluster info` -- ✅ `bash: cat /tmp/debug.log` (file operation - acceptable) -- ✅ `bash: grep ERROR application.log` (text processing - acceptable) - -Use specialized toolsets for specialized tasks - they provide better integration, error handling, and user experience. -""" - -# MCP Mode prompt template -AKS_CONTEXT_PROMPT_MCP = _AKS_BASE_CONTEXT + _MCP_TOOLSET_INSTRUCTIONS + """ -### AKS Investigation Approach (MCP Mode) -- **Start with cluster health** using MCP tools for comprehensive diagnostics -- **Check Azure-specific components** via MCP integration (load balancers, NSGs, managed identity) -- **Check Kubernetes-specific components** via MCP tools (deployments, services, ingress, namespaces, RBAC) -- **Analyze both Azure and Kubernetes logs** through unified MCP interface -- **Leverage MCP's enhanced capabilities** for cross-layer troubleshooting -- **Consider AKS limitations and best practices** with MCP-provided insights - -## 📚 Example Usage - MCP Enhanced Capabilities - -**Common MCP Tool Usage Examples:** - -1. **Resource Metrics & Diagnostics:** - - To get metrics of Kubernetes resources (e.g., node CPU usage), use `kubectl_diagnostics` tool in aks-mcp - - For memory usage analysis: `kubectl_diagnostics` provides detailed resource consumption data - - For storage metrics: `kubectl_diagnostics` can analyze PV/PVC usage and capacity - -2. **Node Inventory (Read-Only Safe):** - - To list Kubernetes nodes and their readiness/status, prefer `kubectl get nodes -o wide` (via available Kubernetes tools) over Azure VMSS enumeration. - - If Azure Compute operations are restricted by read-only policy, do not attempt VMSS list/instance operations; use Kubernetes-level listing instead. - -**MCP Advantage:** These tools provide context-aware analysis that traditional kubectl/az commands cannot match, offering deeper insights and automated correlation across the entire AKS stack. - -**Note**: "Cluster" in this context refers to both the Azure-managed AKS cluster AND the Kubernetes resources running within it. MCP tools provide unified access to both layers with enhanced context awareness. -""" - -# Traditional Mode prompt template -AKS_CONTEXT_PROMPT_TRADITIONAL = _AKS_BASE_CONTEXT + _TRADITIONAL_TOOLSET_INSTRUCTIONS + """ -### AKS Investigation Approach (Traditional Mode) -- **Start with cluster health** using `aks/core` and `kubernetes/core` toolsets -- **Check Azure-specific components** using `aks/core` tools (load balancers, NSGs, managed identity) -- **Check Kubernetes-specific components** using `kubernetes/core` and `kubernetes/logs` toolsets (deployments, services, ingress, namespaces, RBAC) -- **Analyze logs** using dedicated `kubernetes/logs` toolset where possible -- **Use AKS-aware tools** from available specialized toolsets -- **Consider AKS limitations and best practices** within traditional toolset capabilities - -**Note**: "Cluster" in this context refers to both the Azure-managed AKS cluster AND the Kubernetes resources running within it. Use specialized toolsets for each layer rather than generic bash commands. -""" - -# Default prompt (for backward compatibility) -AKS_CONTEXT_PROMPT = AKS_CONTEXT_PROMPT_TRADITIONAL diff --git a/src/aks-agent/azext_aks_agent/agent/status.py b/src/aks-agent/azext_aks_agent/agent/status.py deleted file mode 100644 index 8df6c63e8fc..00000000000 --- a/src/aks-agent/azext_aks_agent/agent/status.py +++ /dev/null @@ -1,357 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Status collection and management for AKS Agent. - -This module provides comprehensive status collection for the AKS Agent, -including MCP binary status, server status, and configuration status. -""" - -import os -import json -import psutil -from datetime import datetime -from typing import Optional, Dict, Any - -from azure.cli.core.api import get_config_dir - -from .status_models import AgentStatus, BinaryStatus, ServerStatus, ConfigStatus -from .binary_manager import AksMcpBinaryManager -from .mcp_manager import MCPManager -from .config_generator import ConfigurationGenerator -from .._consts import ( - CONST_MCP_BINARY_DIR, - CONST_AGENT_CONFIG_FILE_NAME -) - - -class AgentStatusManager: # pylint: disable=too-few-public-methods - """Manages agent status collection and reporting.""" - - def __init__(self, config_dir: str = None): - """ - Initialize status manager. - - :param config_dir: Configuration directory path (defaults to Azure CLI config dir) - :type config_dir: Optional[str] - """ - self.config_dir = config_dir or get_config_dir() - self.binary_manager = AksMcpBinaryManager( - os.path.join(self.config_dir, CONST_MCP_BINARY_DIR) - ) - - async def get_status(self) -> AgentStatus: - """ - Get comprehensive agent status. - - :param verbose: Include verbose information in status - :type verbose: bool - :return: Complete agent status information - :rtype: AgentStatus - """ - try: - # Collect status from all components - binary_status = self._get_mcp_binary_status() - server_status = await self._get_server_status() - config_status = self._get_configuration_status() - - # Determine current mode - current_mode = self._determine_current_mode(config_status, binary_status, server_status) - - # Get last used timestamp - last_used = self._get_last_used_timestamp() - - # Create comprehensive status - status = AgentStatus( - mode=current_mode, - mcp_binary=binary_status, - server=server_status, - config=config_status, - last_used=last_used - ) - - return status - - except Exception as e: # pylint: disable=broad-exception-caught - return AgentStatus( - mode="error", - error_message=f"Status collection failed: {str(e)}" - ) - - def _get_mcp_binary_status(self) -> BinaryStatus: - """ - Collect MCP binary status. - - :return: Binary status information - :rtype: BinaryStatus - """ - try: - binary_path = self.binary_manager.get_binary_path() - - if not os.path.exists(binary_path): - return BinaryStatus( - available=False, - path=binary_path, - error_message="Binary not found" - ) - - # Get version and validate - version = self.binary_manager.get_binary_version() - version_valid = self.binary_manager.validate_version() - - # Create status from file information - return BinaryStatus.from_file_path( - binary_path, - version=version, - version_valid=version_valid - ) - - except Exception as e: # pylint: disable=broad-exception-caught - return BinaryStatus( - available=False, - error_message=f"Binary status check failed: {str(e)}" - ) - - async def _get_server_status(self) -> ServerStatus: - """ - Collect MCP server status. - - :return: Server status information - :rtype: ServerStatus - """ - try: - # Create temporary MCP manager to check server status - mcp_manager = MCPManager(config_dir=self.config_dir, verbose=False) - - # Check if server process is running - is_running = mcp_manager.is_server_running() - is_healthy = False - server_url = None - server_port = None - server_pid = None - uptime = None - start_time = None - error_message = None - - if is_running: - # Get server details - server_url = mcp_manager.get_server_url() - server_port = mcp_manager.get_server_port() - - # Try to get process information - if hasattr(mcp_manager, 'server_process') and mcp_manager.server_process: - try: - server_pid = mcp_manager.server_process.pid - - # Get process start time and calculate uptime - if server_pid: - process = psutil.Process(server_pid) - start_time = datetime.fromtimestamp(process.create_time()) - uptime = datetime.now() - start_time - except (psutil.NoSuchProcess, psutil.AccessDenied): - # Process might have died or no access - is_running = False - error_message = "Server process not accessible" - - # Check server health - if is_running: - is_healthy = mcp_manager.is_server_healthy() - if not is_healthy: - error_message = "Server health check failed" - - return ServerStatus( - running=is_running, - healthy=is_healthy, - url=server_url, - port=server_port, - pid=server_pid, - uptime=uptime, - start_time=start_time, - error_message=error_message - ) - - except Exception as e: # pylint: disable=broad-exception-caught - return ServerStatus( - running=False, - healthy=False, - error_message=f"Server status check failed: {str(e)}" - ) - - def _get_configuration_status(self) -> ConfigStatus: - """ - Collect configuration status. - - :return: Configuration status information - :rtype: ConfigStatus - """ - try: - # Get current mode from state file - current_mode = self._get_last_mode() - - # Get configuration file path - config_file_path = os.path.join(self.config_dir, CONST_AGENT_CONFIG_FILE_NAME) - config_file = config_file_path if os.path.exists(config_file_path) else None - - # Initialize status - toolsets_enabled = [] - mcp_servers = [] - config_valid = True - error_message = None - last_mode_change = self._get_last_mode_change_time() - - # Try to parse configuration if it exists - if config_file: - try: - config_data = self._load_config_file(config_file) - if config_data: - # Extract toolsets information - toolsets = config_data.get("toolsets", {}) - toolsets_enabled = [ - name for name, config in toolsets.items() - if config.get("enabled", True) - ] - - # Extract MCP servers information - mcp_servers_config = config_data.get("mcp_servers", {}) - mcp_servers = list(mcp_servers_config.keys()) - - # Validate configuration based on mode - if current_mode == "mcp": - config_valid = ConfigurationGenerator.validate_mcp_config(config_data) - elif current_mode == "traditional": - config_valid = ConfigurationGenerator.validate_traditional_config(config_data) - - except Exception as e: # pylint: disable=broad-exception-caught - config_valid = False - error_message = f"Configuration parsing failed: {str(e)}" - - return ConfigStatus( - mode=current_mode, - config_file=config_file, - toolsets_enabled=toolsets_enabled, - mcp_servers=mcp_servers, - last_mode_change=last_mode_change, - config_valid=config_valid, - error_message=error_message - ) - - except Exception as e: # pylint: disable=broad-exception-caught - return ConfigStatus( - mode="unknown", - config_valid=False, - error_message=f"Configuration status check failed: {str(e)}" - ) - - def _determine_current_mode(self, config_status: ConfigStatus, - binary_status: BinaryStatus, - server_status: ServerStatus) -> str: - """ - Determine the current operational mode based on component status. - - :param config_status: Configuration status - :param binary_status: Binary status - :param server_status: Server status - :return: Current mode string - :rtype: str - """ - # Check configuration mode first - if config_status.is_mcp_mode: - return "mcp" - if config_status.is_traditional_mode: - return "traditional" - - # Infer mode from component status - if binary_status.ready and server_status.running: - return "mcp" - if binary_status.available and not server_status.running: - return "mcp_available" - return "traditional" - - def _get_last_mode(self) -> str: - """ - Get the last used mode from state file. - - :return: Last mode string or 'unknown' if not found - :rtype: str - """ - try: - state_file_path = os.path.join(self.config_dir, "aks_agent_mode_state") - if os.path.exists(state_file_path): - with open(state_file_path, 'r', encoding='utf-8') as f: - state_data = json.load(f) - return state_data.get('last_mode', 'unknown') - except Exception: # pylint: disable=broad-exception-caught - pass - return 'unknown' - - def _get_last_mode_change_time(self) -> Optional[datetime]: - """ - Get the timestamp of the last mode change. - - :return: Last mode change timestamp or None if not available - :rtype: Optional[datetime] - """ - try: - state_file_path = os.path.join(self.config_dir, "aks_agent_mode_state") - if os.path.exists(state_file_path): - # Use file modification time as proxy for mode change time - mod_time = os.path.getmtime(state_file_path) - return datetime.fromtimestamp(mod_time) - except Exception: # pylint: disable=broad-exception-caught - pass - return None - - def _get_last_used_timestamp(self) -> Optional[datetime]: - """ - Get the timestamp when the agent was last used. - - :return: Last used timestamp or None if not available - :rtype: Optional[datetime] - """ - try: - # Check various files to determine last usage - potential_files = [ - os.path.join(self.config_dir, CONST_AGENT_CONFIG_FILE_NAME), - os.path.join(self.config_dir, "aks_agent_mode_state"), - os.path.join(self.config_dir, CONST_MCP_BINARY_DIR, "aks-mcp") - ] - - latest_time = None - for file_path in potential_files: - if os.path.exists(file_path): - mod_time = datetime.fromtimestamp(os.path.getmtime(file_path)) - if latest_time is None or mod_time > latest_time: - latest_time = mod_time - - return latest_time - - except Exception: # pylint: disable=broad-exception-caught - return None - - def _load_config_file(self, config_file_path: str) -> Optional[Dict[str, Any]]: - """ - Load and parse configuration file. - - :param config_file_path: Path to configuration file - :type config_file_path: str - :return: Parsed configuration data or None if failed - :rtype: Optional[Dict[str, Any]] - """ - try: - with open(config_file_path, 'r', encoding='utf-8') as f: - # Try JSON first, then YAML if available - content = f.read().strip() - if content.startswith('{'): - return json.loads(content) - # Try YAML parsing if content doesn't look like JSON - try: - import yaml - return yaml.safe_load(content) - except ImportError: - # YAML not available, assume it's JSON-like - return json.loads(content) - except Exception: # pylint: disable=broad-exception-caught - return None diff --git a/src/aks-agent/azext_aks_agent/agent/status_models.py b/src/aks-agent/azext_aks_agent/agent/status_models.py deleted file mode 100644 index 01c89b06def..00000000000 --- a/src/aks-agent/azext_aks_agent/agent/status_models.py +++ /dev/null @@ -1,254 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -"""Status data models for AKS agent components.""" - -import os -from dataclasses import dataclass -from datetime import datetime, timedelta -from typing import List, Optional - - -@dataclass -class BinaryStatus: - """MCP binary status information.""" - - available: bool = False - version: Optional[str] = None - path: Optional[str] = None - last_updated: Optional[datetime] = None - size: Optional[int] = None - version_valid: bool = False - error_message: Optional[str] = None - - @property - def ready(self) -> bool: - """Check if binary is ready for use.""" - return self.available and self.version_valid - - @classmethod - def from_file_path( - cls, - file_path: str, - version: Optional[str] = None, - version_valid: bool = False - ) -> "BinaryStatus": - """Create BinaryStatus from file path with metadata.""" - if not file_path or not os.path.exists(file_path): - return cls(available=False, path=file_path) - - try: - stat = os.stat(file_path) - size = stat.st_size - last_updated = datetime.fromtimestamp(stat.st_mtime) - - return cls( - available=True, - version=version, - path=file_path, - last_updated=last_updated, - size=size, - version_valid=version_valid - ) - except OSError as e: - return cls( - available=False, - path=file_path, - error_message=f"Failed to get file info: {str(e)}" - ) - - -@dataclass -class ServerStatus: # pylint: disable=too-many-instance-attributes - """MCP server status information.""" - - running: bool = False - healthy: bool = False - url: Optional[str] = None - port: Optional[int] = None - pid: Optional[int] = None - uptime: Optional[timedelta] = None - start_time: Optional[datetime] = None - error_message: Optional[str] = None - - @property - def status_text(self) -> str: - """Get human-readable status text.""" - if not self.running: - return "Stopped" - if not self.healthy: - return "Running (Unhealthy)" - return "Running (Healthy)" - - @property - def uptime_text(self) -> str: - """Get human-readable uptime text.""" - if not self.uptime: - return "N/A" - - total_seconds = int(self.uptime.total_seconds()) - hours, remainder = divmod(total_seconds, 3600) - minutes, seconds = divmod(remainder, 60) - - if hours > 0: - return f"{hours}h {minutes}m {seconds}s" - if minutes > 0: - return f"{minutes}m {seconds}s" - return f"{seconds}s" - - -@dataclass -class ConfigStatus: - """Configuration status information.""" - - mode: str = "unknown" - config_file: Optional[str] = None - toolsets_enabled: List[str] = None - mcp_servers: List[str] = None - last_mode_change: Optional[datetime] = None - config_valid: bool = True - error_message: Optional[str] = None - - def __post_init__(self): - """Initialize mutable default values.""" - if self.toolsets_enabled is None: - self.toolsets_enabled = [] - if self.mcp_servers is None: - self.mcp_servers = [] - - @property - def is_mcp_mode(self) -> bool: - """Check if currently in MCP mode.""" - return self.mode.lower() == "mcp" - - @property - def is_traditional_mode(self) -> bool: - """Check if currently in traditional mode.""" - return self.mode.lower() == "traditional" - - @property - def active_toolsets_count(self) -> int: - """Get count of active toolsets.""" - return len(self.toolsets_enabled) - - @property - def mcp_servers_count(self) -> int: - """Get count of configured MCP servers.""" - return len(self.mcp_servers) - - -@dataclass -class AgentStatus: - """Complete agent status information.""" - - mode: str = "unknown" - mcp_binary: Optional[BinaryStatus] = None - server: Optional[ServerStatus] = None - config: Optional[ConfigStatus] = None - last_used: Optional[datetime] = None - overall_health: str = "unknown" - error_message: Optional[str] = None - - def __post_init__(self): - """Initialize default status objects if not provided.""" - if self.mcp_binary is None: - self.mcp_binary = BinaryStatus() - if self.server is None: - self.server = ServerStatus() - if self.config is None: - self.config = ConfigStatus() - - # Update overall health based on component status - self._update_overall_health() - - def _update_overall_health(self): - """Update overall health status based on component status.""" - if self.error_message: - self.overall_health = "error" - return - - # In MCP mode, check all components - if self.config.is_mcp_mode: - if not self.mcp_binary.ready: - self.overall_health = "degraded" - elif not self.server.running: - self.overall_health = "degraded" - elif not self.server.healthy: - self.overall_health = "degraded" - else: - self.overall_health = "healthy" - # In traditional mode, only check config - elif self.config.is_traditional_mode: - if self.config.config_valid: - self.overall_health = "healthy" - else: - self.overall_health = "degraded" - else: - self.overall_health = "unknown" - - @property - def is_healthy(self) -> bool: - """Check if agent is in healthy state.""" - return self.overall_health == "healthy" - - @property - def is_operational(self) -> bool: - """Check if agent is operational (healthy or degraded).""" - return self.overall_health in ["healthy", "degraded"] - - @property - def health_emoji(self) -> str: - """Get emoji representation of health status.""" - health_map = { - "healthy": "✅", - "degraded": "⚠️", - "error": "❌", - "unknown": "❓" - } - return health_map.get(self.overall_health, "❓") - - @property - def mode_emoji(self) -> str: - """Get emoji representation of mode.""" - if self.config.is_mcp_mode: - return "🚀" # MCP mode - enhanced - if self.config.is_traditional_mode: - return "🔧" # Traditional mode - tools - return "❓" # Unknown mode - - def get_summary(self) -> str: - """Get a one-line status summary.""" - health_text = self.overall_health.title() - mode_text = self.mode.title() - return f"{self.health_emoji} {health_text} | {self.mode_emoji} {mode_text} Mode" - - def get_recommendations(self) -> List[str]: - """Get status-based recommendations for the user.""" - recommendations = [] - - # MCP mode specific recommendations - if self.config.is_mcp_mode: - if not self.mcp_binary.available: - recommendations.append("Download the MCP binary to enable enhanced capabilities") - elif not self.mcp_binary.version_valid: - recommendations.append("Update the MCP binary to the latest version") - elif not self.server.running: - recommendations.append("Start the MCP server for enhanced functionality") - elif not self.server.healthy: - recommendations.append("Check MCP server logs for health issues") - - # Traditional mode specific recommendations - elif self.config.is_traditional_mode: - if self.mcp_binary.ready: - recommendations.append("Consider using MCP mode for enhanced capabilities (run with --aks-mcp)") - - # General recommendations - if not self.config.config_valid: - recommendations.append("Check configuration file for syntax errors") - - if self.error_message: - recommendations.append(f"Resolve error: {self.error_message}") - - return recommendations diff --git a/src/aks-agent/azext_aks_agent/agent/telemetry.py b/src/aks-agent/azext_aks_agent/agent/telemetry.py index 3f1e5c8a7ad..c19fea59322 100644 --- a/src/aks-agent/azext_aks_agent/agent/telemetry.py +++ b/src/aks-agent/azext_aks_agent/agent/telemetry.py @@ -4,7 +4,6 @@ # -------------------------------------------------------------------------------------------- import datetime -import json import logging import os import platform @@ -79,21 +78,3 @@ def _get_application_insights_instrumentation_key(self) -> str: return os.getenv( APPLICATIONINSIGHTS_INSTRUMENTATION_KEY_ENV, DEFAULT_INSTRUMENTATION_KEY ) - - def track_agent_feedback(self, feedback): - # NOTE: We should try to avoid importing holmesgpt at the top level to prevent dependency issues - from holmes.core.feedback import Feedback, FeedbackMetadata - - # Type hint validation for development purposes - if not isinstance(feedback, Feedback): - raise TypeError(f"Expected Feedback object, got {type(feedback)}") - - # Before privacy team's approval for other user data, we keep only direct user feedback, and model info. - feedback_filtered = Feedback() - feedback_filtered.user_feedback = feedback.user_feedback - feedback_metadata = FeedbackMetadata() - feedback_metadata.llm = feedback.metadata.llm - feedback_filtered.metadata = feedback_metadata - self.track("AgentCLIFeedback", properties={"feedback": json.dumps(feedback_filtered.to_dict())}) - # Flush the telemetry data immediately to avoid too much data being sent at once - self.flush() diff --git a/src/aks-agent/azext_aks_agent/agent/user_feedback.py b/src/aks-agent/azext_aks_agent/agent/user_feedback.py deleted file mode 100644 index 04677f60166..00000000000 --- a/src/aks-agent/azext_aks_agent/agent/user_feedback.py +++ /dev/null @@ -1,108 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -"""User feedback module for AKS Agent operations.""" - -import sys - - -class ProgressReporter: - """Provides user feedback for long-running operations like binary downloads.""" - - @staticmethod - def show_download_progress(downloaded: int, total: int, filename: str, console=None) -> None: - """ - Show download progress with progress bar. - - :param downloaded: Bytes downloaded so far - :param total: Total bytes to download - :param filename: Name of file being downloaded - :param console: Console object for output (optional, will use Holmes console if available) - """ - if total <= 0: - return - - percentage = min(100, (downloaded / total) * 100) - - # If no console provided, try to get Holmes console, otherwise fall back to print - if console is None: - try: - from holmes.utils.console.logging import init_logging - console = init_logging([]) - except ImportError: - # Fallback to simple print if Holmes not available - print(f"Downloading {filename}: {percentage:.1f}% ({downloaded}/{total} bytes)") - return - - # Only show progress if we have a TTY (interactive terminal) - if not sys.stdout.isatty(): - return - - # Create a simple progress bar using rich console formatting - bar_width = 40 - filled_width = int(bar_width * percentage / 100) - progress_bar = "█" * filled_width + "░" * (bar_width - filled_width) - - console.print(f"\r[cyan]Downloading {filename}[/cyan] [{progress_bar}] {percentage:.1f}%", end="") - - # Print newline when download is complete - if percentage >= 100: - console.print("") # New line after completion - - @staticmethod - def show_status_message(message: str, level: str = "info", console=None) -> None: - """ - Show status message with appropriate styling. - - :param message: Message to display - :param level: Message level ('info', 'warning', 'error', 'success') - :param console: Console object for output (optional, will use Holmes console if available) - """ - # If no console provided, try to get Holmes console, otherwise fall back to print - if console is None: - try: - from holmes.utils.console.logging import init_logging - console = init_logging([]) - except ImportError: - # Fallback to simple print if Holmes not available - print(f"[{level.upper()}] {message}") - return - - # Map levels to rich console styles - level_styles = { - "info": "[cyan]", - "warning": "[yellow]", - "error": "[red]", - "success": "[green]" - } - - style = level_styles.get(level.lower(), "[cyan]") - console.print(f"{style}{message}[/{style[1:-1]}]") - - @staticmethod - def show_binary_setup_status(status: str, console=None) -> None: - """ - Show binary setup status message. - - :param status: Status message to display - :param console: Console object for output (optional, will use Holmes console if available) - """ - ProgressReporter.show_status_message(f"MCP Binary: {status}", "info", console) - - @staticmethod - def show_server_status(status: str, silent_mode: bool = True, console=None) -> None: - """ - Show server status (only in verbose mode by default). - - :param status: Server status message - :param silent_mode: If True, only show in verbose mode - :param console: Console object for output (optional, will use Holmes console if available) - """ - if silent_mode: - # Only show server status in verbose mode - implementation depends on verbose flag - # For now, we'll show it as it's useful for debugging - pass - - ProgressReporter.show_status_message(f"MCP Server: {status}", "info", console) diff --git a/src/aks-agent/azext_aks_agent/commands.py b/src/aks-agent/azext_aks_agent/commands.py index 713771ddfb1..4cc971f4ced 100644 --- a/src/aks-agent/azext_aks_agent/commands.py +++ b/src/aks-agent/azext_aks_agent/commands.py @@ -3,6 +3,8 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +from azext_aks_agent._client_factory import cf_managed_clusters +from azure.cli.core.commands import CliCommandType from knack.log import get_logger logger = get_logger(__name__) @@ -10,8 +12,19 @@ # pylint: disable=too-many-statements def load_command_table(self, _): + managed_clusters_sdk = CliCommandType( + operations_tmpl="azext_aks_agent.vendored_sdks.azure_mgmt_containerservice.2025_10_01." + "operations._managed_clusters_operations#ManagedClustersOperations.{}", + operation_group="managed_clusters", + client_factory=cf_managed_clusters, + ) + with self.command_group( "aks", + managed_clusters_sdk, + client_factory=cf_managed_clusters, + ) as g: g.custom_command("agent", "aks_agent") g.custom_command("agent-init", "aks_agent_init") + g.custom_command("agent-cleanup", "aks_agent_cleanup") diff --git a/src/aks-agent/azext_aks_agent/custom.py b/src/aks-agent/azext_aks_agent/custom.py index 859d9e5ba0f..891944cc2bf 100644 --- a/src/aks-agent/azext_aks_agent/custom.py +++ b/src/aks-agent/azext_aks_agent/custom.py @@ -3,328 +3,497 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -import os - -from azext_aks_agent._consts import CONST_AGENT_CONFIG_FILE_NAME, HELP_COLOR - # pylint: disable=too-many-lines, disable=broad-except -from azext_aks_agent.agent.agent import aks_agent as aks_agent_internal -from azext_aks_agent.agent.llm_config_manager import LLMConfigManager + +from azext_aks_agent.agent.aks import get_aks_credentials +from azext_aks_agent.agent.console import ( + ERROR_COLOR, + HELP_COLOR, + INFO_COLOR, + SUCCESS_COLOR, + WARNING_COLOR, + get_console, +) +from azext_aks_agent.agent.k8s import AKSAgentManager from azext_aks_agent.agent.llm_providers import prompt_provider_choice -from azext_aks_agent.agent.logging import rich_logging -from azure.cli.core.api import get_config_dir +from azext_aks_agent.agent.telemetry import CLITelemetryClient from azure.cli.core.azclierror import AzCLIError +from azure.cli.core.commands.client_factory import get_subscription_id from knack.log import get_logger +from knack.util import CLIError logger = get_logger(__name__) -# pylint: disable=unused-argument -def aks_agent_init(cmd): - """Initialize AKS agent llm configuration.""" - from rich.console import Console - console = Console() +# pylint: disable=too-many-branches +def aks_agent_init(cmd, + client, + resource_group_name, + cluster_name + ): + """Initialize AKS agent helm deployment with LLM configuration and cluster role setup.""" + subscription_id = get_subscription_id(cmd.cli_ctx) + + kubeconfig_path = get_aks_credentials( + client, + resource_group_name, + cluster_name + ) + console = get_console() + console.print( - "Welcome to AKS Agent LLM configuration setup. Type '/exit' to exit.", + "Welcome to AKS Agent initialization. This will set up the agent deployment in your cluster.", style=f"bold {HELP_COLOR}") - provider = prompt_provider_choice() - params = provider.prompt_params() + try: + aks_agent_manager = AKSAgentManager( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + subscription_id=subscription_id, + kubeconfig_path=kubeconfig_path + ) - llm_config_manager = LLMConfigManager() - # If the connection to the model endpoint is valid, save the configuration - is_valid, msg, action = provider.validate_connection(params) + # ===== PHASE 1: LLM Configuration Setup ===== + # Check if LLM configuration exists by checking secret + llm_config_exists = aks_agent_manager.check_llm_config_exists() + + if llm_config_exists: + console.print( + "LLM configuration already exists (secret and llm config found in cluster).", + style=f"bold {HELP_COLOR}") + + # Display existing LLM configurations + model_list = aks_agent_manager.llm_config_manager.model_list + if model_list: + console.print("\n📋 Existing LLM Models:", style=f"bold {HELP_COLOR}") + for model_name, model_config in model_list.items(): + console.print(f" • {model_name}", style=INFO_COLOR) + if "api_base" in model_config: + console.print(f" API Base: {model_config['api_base']}", style="cyan") + if "api_version" in model_config: + console.print(f" API Version: {model_config['api_version']}", style="cyan") + + # TODO: allow the user config multiple llm configs at one time? + user_input = console.input( + f"\n[{HELP_COLOR}]Do you want to add/update the LLM configuration? (y/N): [/]").strip().lower() + if user_input not in ['y', 'yes']: + console.print("Skipping LLM configuration update.", style=f"bold {HELP_COLOR}") + else: + _setup_and_create_llm_config(console, aks_agent_manager) + else: + console.print("No existing LLM configuration found. Setting up new configuration...", + style=f"bold {HELP_COLOR}") + _setup_and_create_llm_config(console, aks_agent_manager) + + # ===== PHASE 2: Helm Deployment ===== + console.print("\n🚀 Phase 2: Helm Deployment", style=f"bold {HELP_COLOR}") + custom_cluster_role = None + managed_identity_client_id = None + + # Check current helm deployment status + agent_status = aks_agent_manager.get_agent_status() + helm_status = agent_status.get("helm_status", "not_found") + + if helm_status == "deployed": + console.print(f"✅ AKS agent helm chart is already deployed (status: {helm_status})", style=SUCCESS_COLOR) + # Find cluster role from existing ClusterRoleBinding to prompt for update + cluster_role_name = _get_existing_cluster_role(aks_agent_manager) + if not cluster_role_name: + raise AzCLIError("Could not determine existing cluster role from ClusterRoleBinding.") + + cluster_role = aks_agent_manager.rbac_v1.read_cluster_role(name=cluster_role_name) + console.print( + f"📋 Current cluster role to access kubernetes resources: {cluster_role_name}", style="cyan") + _display_cluster_role_rules(console, cluster_role) + + # Prompt for managed identity client ID update + existing_client_id = aks_agent_manager.managed_identity_client_id + if existing_client_id: + console.print(f"\n🔑 Current managed identity client ID: {existing_client_id}", style="cyan") + change_client_id = console.input( + f"[{HELP_COLOR}]Do you want to change the managed identity client ID? (y/N): [/]").strip().lower() + + if change_client_id in ['y', 'yes']: + managed_identity_client_id = _prompt_managed_identity_configuration(console) + aks_agent_manager.managed_identity_client_id = managed_identity_client_id + else: + console.print("\n🔑 No managed identity client ID currently configured.", style="cyan") + managed_identity_client_id = _prompt_managed_identity_configuration(console) + if managed_identity_client_id: + aks_agent_manager.managed_identity_client_id = managed_identity_client_id + elif helm_status == "not_found": + console.print( + f"Helm chart not deployed (status: {helm_status}). Setting up deployment...", + style=f"bold {HELP_COLOR}") + # Prompt for cluster role configuration + custom_cluster_role = _prompt_cluster_role_configuration(aks_agent_manager, console) + aks_agent_manager.customized_cluster_role_name = custom_cluster_role + + # Prompt for managed identity client ID + managed_identity_client_id = _prompt_managed_identity_configuration(console) + if managed_identity_client_id: + aks_agent_manager.managed_identity_client_id = managed_identity_client_id + else: + # Handle non-standard helm status (failed, pending-install, pending-upgrade, etc.) + console.print( + f"⚠️ Detected unexpected helm status: {helm_status}\n" + f"The AKS agent deployment is in an unexpected state.\n\n" + f"To investigate, run: az aks agent --status\n" + f"To recover:\n" + f" 1. Clean up and reinitialize: az aks agent cleanup && az aks agent init\n" + f" 2. Check deployment logs for more details", + style=HELP_COLOR) + raise AzCLIError(f"Cannot proceed with initialization due to unexpected helm status: {helm_status}") + + # Deploy if configuration changed or helm charts not deployed + console.print("\n🚀 Deploying AKS agent (this typically takes less than 2 minutes)...", style=INFO_COLOR) + success, error_msg = aks_agent_manager.deploy_agent() + + if success: + console.print("✅ AKS agent deployed successfully!", style=SUCCESS_COLOR) + else: + console.print("❌ Failed to deploy agent", style=ERROR_COLOR) + console.print(f"Error: {error_msg}", style=ERROR_COLOR) + console.print( + "Run 'az aks agent --status' to investigate the deployment issue.", + style=INFO_COLOR) + raise AzCLIError("Failed to deploy agent") + + # Verify deployment is ready + console.print("Verifying deployment status...", style=INFO_COLOR) + agent_status = aks_agent_manager.get_agent_status() + if agent_status.get("ready", False): + console.print("✅ AKS agent is ready and running!", style=SUCCESS_COLOR) + console.print("\n🎉 Initialization completed successfully!", style=SUCCESS_COLOR) + else: + console.print( + "⚠️ AKS agent is deployed but not yet ready. It may take a few moments to start.", + style=WARNING_COLOR) + if helm_status not in ["deployed", "superseded"]: + console.print("You can check the status later using 'az aks agent --status'", style="cyan") - if is_valid and action == "save": - llm_config_manager.save(provider.model_route if provider.model_route else "openai", params) - console.print( - f"LLM configuration setup successfully and is saved to {llm_config_manager.config_path}.", - style=f"bold {HELP_COLOR}") - elif not is_valid and action == "retry_input": - raise AzCLIError(f"Please re-run `az aks agent-init` to correct the input parameters. {str(msg)}") - else: - raise AzCLIError(f"Please check your deployed model and network connectivity. {str(msg)}") + except Exception as e: + console.print(f"❌ Error during initialization: {str(e)}", style=ERROR_COLOR) + raise AzCLIError(f"Agent initialization failed: {str(e)}") -# pylint: disable=unused-argument -# pylint: disable=too-many-locals -def aks_agent( - cmd, - prompt, - model, - max_steps, - config_file, - resource_group_name=None, - name=None, - api_key=None, - no_interactive=False, - no_echo_request=False, - show_tool_output=False, - refresh_toolsets=False, - status=False, - use_aks_mcp=False, -): - # If only status is requested, display and return early - if status: - return aks_agent_status(cmd) - - if not config_file: - config_file = os.path.join( - get_config_dir(), CONST_AGENT_CONFIG_FILE_NAME) - logger.info("Using default configuration file: %s", config_file) - else: - logger.info("Using user configuration file: %s", config_file) - llm_config_manager = LLMConfigManager(config_file) - llm_config_manager.validate_config() - llm_config = llm_config_manager.get_model_config(model) - llm_config_manager.export_model_config(llm_config) - - with rich_logging(): - aks_agent_internal( - cmd, - resource_group_name, - name, - prompt, - model, - api_key, - max_steps, - config_file, - no_interactive, - no_echo_request, - show_tool_output, - refresh_toolsets, - use_aks_mcp=use_aks_mcp, - ) +def _get_existing_cluster_role(aks_agent_manager): + """Get the cluster role from existing ClusterRoleBinding aks-agent-aks-mcp.""" + try: + cluster_role_binding_name = f"{aks_agent_manager.helm_release_name}-aks-mcp" + crb = aks_agent_manager.rbac_v1.read_cluster_role_binding(name=cluster_role_binding_name) + if crb and crb.role_ref: + return crb.role_ref.name + return None + except Exception as e: + logger.debug("Could not find ClusterRoleBinding %s: %s", cluster_role_binding_name, e) + return None -def aks_agent_status(cmd): - """ - Show AKS agent configuration and status. +def _display_cluster_role_rules(console, cluster_role): + """Display cluster role rules in a formatted manner.""" + if not cluster_role or not cluster_role.rules: + console.print(" No rules defined", style="dim") + return - :param cmd: Azure CLI command context - :return: None (displays status via console output) - """ - try: - from azext_aks_agent._consts import CONST_MCP_BINARY_DIR - from azext_aks_agent.agent.binary_manager import AksMcpBinaryManager - from azext_aks_agent.agent.mcp_manager import MCPManager - - # Initialize status information - status_info = { - "mode": "unknown", - "mcp_binary": { - "available": False, - "path": None, - "version": None - }, - "server": { - "running": False, - "healthy": False, - "url": None, - "port": None - } - } + console.print(" Permissions:", style="bold cyan") - try: - # Check MCP binary status - config_dir = get_config_dir() - binary_manager = AksMcpBinaryManager( - os.path.join(config_dir, CONST_MCP_BINARY_DIR) - ) - - # Binary information - binary_available = binary_manager.is_binary_available() - binary_version = binary_manager.get_binary_version() if binary_available else None - binary_path = binary_manager.get_binary_path() - - status_info["mcp_binary"] = { - "available": binary_available, - "path": binary_path, - "version": binary_version, - "version_valid": binary_manager.validate_version() if binary_available else False - } - - # Determine mode based on binary availability - if binary_available and status_info["mcp_binary"]["version_valid"]: - status_info["mode"] = "mcp_ready" - - # Check server status if binary is available - try: - mcp_manager = MCPManager(config_dir, verbose=False) - - status_info["server"] = { - "running": mcp_manager.is_server_running(), - "healthy": mcp_manager.is_server_healthy(), - "url": mcp_manager.get_server_url(), - "port": mcp_manager.get_server_port() - } - - except Exception as e: - logger.debug("Failed to get server status: %s", str(e)) - status_info["server"]["error"] = str(e) - else: - status_info["mode"] = "traditional" + for idx, rule in enumerate(cluster_role.rules, 1): + # Format API groups + api_groups = rule.api_groups if rule.api_groups else ["core"] + api_groups_str = ", ".join(api_groups) if api_groups else "core" - except Exception as e: - logger.debug("Failed to get binary status: %s", str(e)) - status_info["mcp_binary"]["error"] = str(e) - status_info["mode"] = "traditional" + # Format resources + resources = rule.resources if rule.resources else [] + resources_str = ", ".join(resources) if resources else "N/A" - # Display status with enhanced formatting - _display_agent_status(status_info) + # Format verbs + verbs = rule.verbs if rule.verbs else [] + verbs_str = ", ".join(verbs) if verbs else "N/A" - # Return None to avoid CLI framework printing the return value - return None + # Display rule + console.print(f" [{idx}] API Groups: {api_groups_str}", style=INFO_COLOR) + console.print(f" Resources: {resources_str}", style="cyan") + console.print(f" Verbs: {verbs_str}", style="green") - except Exception as e: - from knack.util import CLIError - raise CLIError(f"Failed to get agent status: {str(e)}") + # Show resource names if specified (less common but useful) + if rule.resource_names: + resource_names_str = ", ".join(rule.resource_names) + console.print(f" Resource Names: {resource_names_str}", style="magenta") + # Add spacing between rules + if idx < len(cluster_role.rules): + console.print() -def _display_agent_status(status_info): - """Display formatted status with rich console output.""" - from rich.console import Console - from rich.panel import Panel - from rich.table import Table - console = Console() +def _prompt_cluster_role_configuration(aks_agent_manager, console): + """Prompt user for cluster role configuration and return custom cluster role name if provided.""" + console.print("\n🔐 Cluster Role Configuration", style=f"bold {HELP_COLOR}") - # Title with emoji - mode_emoji = _get_mode_emoji(status_info.get("mode", "unknown")) - health_emoji = _get_health_emoji(status_info) + console.print( + "The AKS agent requires a cluster role to access Kubernetes resources.", + style=INFO_COLOR) - title = f"{health_emoji} AKS Agent Status {mode_emoji}" - console.print(Panel.fit(title, style="bold blue")) + # Show the default cluster role information + console.print("\n📋 Default Cluster Role Permissions:", + style=f"bold {HELP_COLOR}") + default_cluster_role = aks_agent_manager.get_default_cluster_role() + _display_cluster_role_rules(console, default_cluster_role) + # Prompt user for cluster role choice + user_input = console.input( + f"\n[{HELP_COLOR}]Do you want to provide your own custom cluster role name? (y/N): [/]").strip().lower() - # Create status table - table = Table(show_header=True, header_style="bold magenta") - table.add_column("Component", style="cyan", width=15) - table.add_column("Status", style="green", width=20) - table.add_column("Details", style="white", width=40) + if user_input in ['y', 'yes']: + custom_role_name = console.input(f"[{HELP_COLOR}]Please enter your custom cluster role name: [/]").strip() - # Mode row - mode_text = status_info.get("mode", "unknown").replace("_", " ").title() - table.add_row("Mode", f"{mode_emoji} {mode_text}", "") + if custom_role_name: + console.print(f"✅ Using custom cluster role: {custom_role_name}", style=SUCCESS_COLOR) + return custom_role_name + console.print("⚠️ No cluster role name provided, using default cluster role.", style=WARNING_COLOR) + return "" - # MCP Binary status - binary_info = status_info.get("mcp_binary", {}) - binary_status = "✅ Available" if binary_info.get( - "available") else "❌ Not available" - binary_details = [] + console.print("✅ Using default cluster role.", style=SUCCESS_COLOR) + return "" - if binary_info.get("version"): - version_valid = binary_info.get("version_valid", True) - version_indicator = "✅" if version_valid else "⚠️" - binary_details.append(f"{version_indicator} v{binary_info['version']}") - if binary_info.get("error"): - binary_details.append(f"❌ {binary_info['error']}") +def _prompt_managed_identity_configuration(console): + """Prompt user for managed identity client ID configuration.""" + console.print("\n🔑 Managed Identity Configuration", style=f"bold {HELP_COLOR}") - table.add_row("MCP Binary", binary_status, " | ".join(binary_details)) + console.print( + "To access Azure resources using workload identity, you need to provide the managed identity client ID.", + style=INFO_COLOR) - # Server status (only if binary is available) - if binary_info.get("available") and status_info.get( - "mode") in ["mcp_ready", "mcp"]: - server_info = status_info.get("server", {}) - server_status = "" - server_details = [] + configure = console.input( + f"[{HELP_COLOR}]Do you want to configure managed identity client ID? (Y/n): [/]").strip().lower() - if server_info.get("running"): - if server_info.get("healthy"): - server_status = "✅ Running & Healthy" - else: - server_status = "⚠️ Running (Unhealthy)" - else: - server_status = "❌ Not Running" + if configure in ['n', 'no']: + console.print( + "⚠️ Skipping managed identity configuration. Workload identity will not be configured.", + style=WARNING_COLOR + ) + return "" + + while True: + client_id = console.input( + f"[{HELP_COLOR}]Please enter your managed identity client ID: [/]").strip() + + if client_id: + console.print(f"✅ Using managed identity client ID: {client_id}", style=SUCCESS_COLOR) + return client_id + console.print( + "❌ Client ID cannot be empty. Please provide a valid client ID or answer 'N' to skip.", + style=ERROR_COLOR + ) + + +def _setup_and_create_llm_config(console, aks_agent_manager): + """Setup and create LLM configuration with user input.""" + + # Prompt for LLM configuration + console.print("Please provide your LLM configuration. Type '/exit' to exit.", style=f"bold {HELP_COLOR}") + + provider = prompt_provider_choice() + params = provider.prompt_params() + + # Validate the connection + error, action = provider.validate_connection(params) + + if error is None: + console.print("✅ LLM configuration validated successfully!", style=SUCCESS_COLOR) - if server_info.get("port"): - server_details.append(f"Port: {server_info['port']}") + try: + _create_llm_config_and_secret(aks_agent_manager, provider, params) + console.print( + "✅ LLM configuration secret created/updated successfully in Kubernetes cluster!", + style=SUCCESS_COLOR) + except Exception as e: + console.print(f"❌ Failed to create Kubernetes secret: {str(e)}", style=ERROR_COLOR) + raise AzCLIError(f"Failed to create Kubernetes secret for LLM configuration: {str(e)}") + + elif error is not None and action == "retry_input": + raise AzCLIError(f"Please re-run `az aks agent-init` to correct the input parameters. {error}") + else: + raise AzCLIError(f"Please check your deployed model and network connectivity. {error}") - if server_info.get("error"): - server_details.append(f"❌ {server_info['error']}") - table.add_row("MCP Server", server_status, " | ".join(server_details)) +def _create_llm_config_and_secret(aks_agent_manager, provider, params): + """Cache LLM configuration and create Kubernetes secret.""" + aks_agent_manager.llm_config_manager.save(provider, params) - console.print(table) + # Create the Kubernetes secret using the cached configuration + aks_agent_manager.create_llm_config_secret() - # Display recommendations - _display_recommendations(console, status_info) +def _aks_agent_status(agent_manager): + """Display the status of the AKS agent deployment.""" + console = get_console() -def _display_recommendations(console, status_info): - """Display status-based recommendations using rich console.""" - recommendations = _get_recommendations(status_info) + console.print("\n📊 Checking AKS agent status...", style=INFO_COLOR) + agent_status = agent_manager.get_agent_status() - if not recommendations: + # Display helm status + helm_status = agent_status.get("helm_status", "unknown") + if helm_status == "deployed": + console.print(f"\n✅ Helm Release: {helm_status}", style=SUCCESS_COLOR) + elif helm_status == "not_found": + console.print("\n❌ Helm Release: Not found", style=ERROR_COLOR) + console.print("The AKS agent is not installed. Run with az aks agent-init to install.", style=INFO_COLOR) return + else: + console.print(f"\n⚠️ Helm Release: {helm_status}", style=WARNING_COLOR) + + # Display deployment status + deployments = agent_status.get("deployments", []) + if deployments: + console.print("\n📦 Deployments:", style="bold cyan") + for dep in deployments: + ready_replicas = dep.get("ready_replicas", 0) + replicas = dep.get("replicas", 0) + status_color = SUCCESS_COLOR if ready_replicas == replicas and replicas > 0 else WARNING_COLOR + console.print(f" • {dep['name']}: {ready_replicas}/{replicas} ready", style=status_color) + + # Display pod status + pods = agent_status.get("pods", []) + if pods: + console.print("\n🐳 Pods:", style="bold cyan") + for pod in pods: + pod_name = pod.get("name", "unknown") + pod_phase = pod.get("phase", "unknown") + pod_ready = pod.get("ready", False) + + if pod_ready and pod_phase == "Running": + console.print(f" • {pod_name}: {pod_phase} ✓", style=SUCCESS_COLOR) + elif pod_phase == "Running": + console.print(f" • {pod_name}: {pod_phase} (not ready)", style=WARNING_COLOR) + else: + console.print(f" • {pod_name}: {pod_phase}", style=WARNING_COLOR) + + # Display LLM configurations + llm_configs = agent_status.get("llm_configs", []) + if llm_configs: + console.print("\n📋 LLM Configurations:", style="bold cyan") + for llm_config in llm_configs: + model_name = llm_config.get("model", "unknown") + console.print(f" • {model_name}", style=INFO_COLOR) + if "api_base" in llm_config: + console.print(f" API Base: {llm_config['api_base']}", style="cyan") + if "api_version" in llm_config: + console.print(f" API Version: {llm_config['api_version']}", style="cyan") + + # Display overall status + if agent_status.get("ready", False): + console.print("\n✅ AKS agent is ready and running!", style=SUCCESS_COLOR) + else: + console.print("\n⚠️ AKS agent is not fully ready", style=WARNING_COLOR) - console.print("\n💡 Recommendations:", style="bold yellow") - for rec in recommendations: - console.print(f" • {rec}", style="yellow") - - -def _get_recommendations(status_info): - """Get status-based recommendations for the user.""" - recommendations = [] - binary_info = status_info.get("mcp_binary", {}) - server_info = status_info.get("server", {}) - mode = status_info.get("mode", "unknown") - - if not binary_info.get("available"): - recommendations.append( - "Run 'az aks agent' to automatically download the MCP binary for enhanced capabilities") - elif not binary_info.get("version_valid", True): - recommendations.append( - "Update the MCP binary by running 'az aks agent --refresh-toolsets'") - elif mode == "mcp_ready" and not server_info.get("running"): - recommendations.append( - "MCP binary is ready - run 'az aks agent' to start using enhanced capabilities") - elif mode == "mcp_ready" and server_info.get("running") and not server_info.get("healthy"): - recommendations.append( - "MCP server is running but unhealthy - it will be automatically restarted on next use") - elif mode in ["mcp_ready", "mcp"] and server_info.get("running") and server_info.get("healthy"): - recommendations.append( - "✅ AKS agent is ready with enhanced MCP capabilities") - elif mode == "traditional": - if binary_info.get("available"): - recommendations.append( - "Consider using MCP mode for enhanced capabilities by running 'az aks agent' " - "(run again with --aks-mcp to switch modes)") - else: - recommendations.append("✅ AKS agent is ready in traditional mode") + +def aks_agent_cleanup( + cmd, + client, + resource_group_name, + cluster_name +): + """Cleanup and uninstall the AKS agent.""" + console = get_console() + + console.print( + "\n⚠️ Warning: This will uninstall the AKS agent and delete all associated resources.", + style=WARNING_COLOR) + + user_confirmation = console.input( + f"\n[{WARNING_COLOR}]Are you sure you want to proceed with cleanup? (y/N): [/]").strip().lower() + + if user_confirmation not in ['y', 'yes']: + console.print("❌ Cleanup cancelled.", style=INFO_COLOR) + return + + console.print("\n🗑️ Starting cleanup (this typically takes a few seconds)...", style=INFO_COLOR) + + kubeconfig = get_aks_credentials( + client, + resource_group_name, + cluster_name + ) + subscription_id = get_subscription_id(cmd.cli_ctx) + agent_manager = AKSAgentManager( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + subscription_id=subscription_id, + kubeconfig_path=kubeconfig + ) + + success = agent_manager.uninstall_agent() + + if success: + console.print("✅ Cleanup completed successfully! All resources have been removed.", style=SUCCESS_COLOR) else: - recommendations.append("✅ AKS agent is operational") - - return recommendations - - -def _get_mode_emoji(mode): - """Get emoji representation of mode.""" - mode_emojis = { - "mcp": "🚀", - "mcp_ready": "🚀", - "traditional": "🔧", - "unknown": "❓" - } - return mode_emojis.get(mode, "❓") - - -def _get_health_emoji(status_info): - """Get emoji representation of overall health status.""" - binary_info = status_info.get("mcp_binary", {}) - server_info = status_info.get("server", {}) - mode = status_info.get("mode", "unknown") - - # Determine health based on mode and component status - if mode == "traditional": - return "✅" # Traditional mode is always healthy if working - if mode in ["mcp_ready", "mcp"]: - if binary_info.get("available") and binary_info.get( - "version_valid", True): - if server_info.get("running") and server_info.get("healthy"): - return "✅" # Fully healthy - if server_info.get("running"): - return "⚠️" # Running but not healthy - return "⚠️" # Binary ready but server not running - return "❌" # Binary issues - return "❓" # Unknown state + console.print( + "❌ Cleanup failed. Please run 'az aks agent --status' to verify cleanup completion.", style=ERROR_COLOR) + + +# pylint: disable=unused-argument +# pylint: disable=too-many-locals +def aks_agent( + cmd, + client, + prompt, + model, + max_steps, + resource_group_name, + cluster_name, + no_interactive=False, + no_echo_request=False, + show_tool_output=False, + refresh_toolsets=False, + status=False, +): + """Run AI assistant to analyze and troubleshoot Azure Kubernetes Service (AKS) clusters.""" + with CLITelemetryClient(): + + subscription_id = get_subscription_id(cmd.cli_ctx) + + kubeconfig = get_aks_credentials( + client, + resource_group_name, + cluster_name + ) + + agent_manager = AKSAgentManager( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + subscription_id=subscription_id, + kubeconfig_path=kubeconfig + ) + if status: + _aks_agent_status(agent_manager) + return + + subscription_id = get_subscription_id(cmd.cli_ctx) + + success, result = agent_manager.get_agent_pods() + if not success: + # get_agent_pods already logged the error, provide helpful message + error_msg = f"Failed to find AKS agent pods: {result}\n" + error_msg += "The AKS agent may not be deployed. Run 'az aks agent --init' to initialize the deployment." + raise CLIError(error_msg) + + # prepare CLI flags + + # user quoted prompt to not break the command line parsing + flags = f'"{prompt}"' if prompt else '' + if model: + flags += f' --model "{model}"' + if max_steps: + flags += f' --max-steps {max_steps}' + if no_interactive: + flags += ' --no-interactive' + if no_echo_request: + flags += ' --no-echo-request' + if show_tool_output: + flags += ' --show-tool-output' + if refresh_toolsets: + flags += ' --refresh-toolsets' + + # Use AKSAgentManager to execute commands on the agent pod + agent_manager.exec_aks_agent(flags) diff --git a/src/aks-agent/azext_aks_agent/tests/evals/README.md b/src/aks-agent/azext_aks_agent/tests/evals/README.md deleted file mode 100644 index aaa22cd1e5c..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/README.md +++ /dev/null @@ -1,142 +0,0 @@ -# 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/braintrust_uploader.py b/src/aks-agent/azext_aks_agent/tests/evals/braintrust_uploader.py deleted file mode 100644 index d7092fce873..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/braintrust_uploader.py +++ /dev/null @@ -1,216 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 deleted file mode 100644 index 3c2b7f7e1c3..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/classifier.py +++ /dev/null @@ -1,246 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 deleted file mode 100644 index f65c22f1fcb..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/conftest.py +++ /dev/null @@ -1,60 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 deleted file mode 100644 index 984ff37b2bc..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/manifests.yaml +++ /dev/null @@ -1,214 +0,0 @@ -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 deleted file mode 100644 index 878b09db541..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/mocks/response.txt +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 1e236e00b80..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/test_case.yaml +++ /dev/null @@ -1,12 +0,0 @@ -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 deleted file mode 100644 index f4de6c4b9b6..00000000000 --- 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 +++ /dev/null @@ -1,30 +0,0 @@ -{"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 deleted file mode 100644 index 068f4b4759c..00000000000 --- 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 +++ /dev/null @@ -1,31 +0,0 @@ -{"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 deleted file mode 100644 index 43df42e950f..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 232b1c7be43..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 8048eca3f7c..00000000000 --- 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 +++ /dev/null @@ -1,67 +0,0 @@ -{"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 deleted file mode 100644 index de14ce36d59..00000000000 --- 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 +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index d6dd6765e17..00000000000 --- 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 +++ /dev/null @@ -1,8 +0,0 @@ -{"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 deleted file mode 100644 index c095707958d..00000000000 --- 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 +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index 5225d3b2f44..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/manifest.yaml +++ /dev/null @@ -1,17 +0,0 @@ -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 deleted file mode 100644 index 7defc0cefd2..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/mocks/response.txt +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index c0d858f7c1f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/test_case.yaml +++ /dev/null @@ -1,17 +0,0 @@ -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 deleted file mode 100644 index ed428509bb4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_describe.txt +++ /dev/null @@ -1,55 +0,0 @@ -{"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 deleted file mode 100644 index 6d1e2f6b7e6..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_get_all.txt +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index 5a2e651ce21..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_get_pod.txt +++ /dev/null @@ -1,4 +0,0 @@ -{"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 deleted file mode 100644 index 083ba788d03..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/mocks/response.txt +++ /dev/null @@ -1,7 +0,0 @@ -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 deleted file mode 100644 index d357cb8f888..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/test_case.yaml +++ /dev/null @@ -1,36 +0,0 @@ -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 deleted file mode 100644 index facf85164f0..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/kubectl_find_resource.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index bf6f4c23b4c..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/kubectl_get_yaml.txt +++ /dev/null @@ -1,179 +0,0 @@ -{"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 deleted file mode 100644 index bca82762b21..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/mocks/response.txt +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index d25dcb11839..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/test_case.yaml +++ /dev/null @@ -1,28 +0,0 @@ -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 deleted file mode 100644 index 89424bf55c4..00000000000 --- 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 +++ /dev/null @@ -1,69 +0,0 @@ -{"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 deleted file mode 100644 index 397ee7dce10..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_deployment.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index 084acbbd231..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_pod_front-end.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index 712b41a1cc9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_sock-shop-deployment.txt +++ /dev/null @@ -1,16 +0,0 @@ -{"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 deleted file mode 100644 index 6e4d76eaddd..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_lineage_children.txt +++ /dev/null @@ -1,8 +0,0 @@ -{"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 deleted file mode 100644 index 56728cac9ba..00000000000 --- 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 +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index 3a048c4f3b5..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/test_case.yaml +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 76bd393f0b5..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/toolsets.yaml +++ /dev/null @@ -1,9 +0,0 @@ -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 deleted file mode 100644 index f1419ab7a8e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_describe.txt +++ /dev/null @@ -1,71 +0,0 @@ -{"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 deleted file mode 100644 index a32f427321e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_find_resource.txt +++ /dev/null @@ -1,6 +0,0 @@ -{"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 deleted file mode 100644 index 403c9f12b1e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_logs.txt +++ /dev/null @@ -1,6 +0,0 @@ -{"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 deleted file mode 100644 index 4e0c533421d..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/mocks/response.txt +++ /dev/null @@ -1,6 +0,0 @@ -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 deleted file mode 100644 index 4d7c2ae310e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/test_case.yaml +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index 4f98fa73d50..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/app.py +++ /dev/null @@ -1,295 +0,0 @@ -#!/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 deleted file mode 100644 index ca1b4ea74ca..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/payment-api.yaml +++ /dev/null @@ -1,80 +0,0 @@ -# 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 deleted file mode 100644 index 1246a62591b..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/promtail-config.yaml +++ /dev/null @@ -1,46 +0,0 @@ -# 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 deleted file mode 100644 index b715274f72b..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/test_case.yaml +++ /dev/null @@ -1,76 +0,0 @@ -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 deleted file mode 100644 index e468aacbf90..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/toolsets.yaml +++ /dev/null @@ -1,13 +0,0 @@ -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 deleted file mode 100644 index 8822b3679fa..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/app.py +++ /dev/null @@ -1,95 +0,0 @@ -#!/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 deleted file mode 100644 index ae394e5771f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/payment-api.yaml +++ /dev/null @@ -1,80 +0,0 @@ -# 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 deleted file mode 100644 index a0a10c0940f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/promtail-config.yaml +++ /dev/null @@ -1,46 +0,0 @@ -# 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 deleted file mode 100644 index 9076328f051..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/test_case.yaml +++ /dev/null @@ -1,88 +0,0 @@ -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 deleted file mode 100644 index 43cb312e80e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/toolsets.yaml +++ /dev/null @@ -1,13 +0,0 @@ -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 deleted file mode 100644 index f889e996b4e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/app.py +++ /dev/null @@ -1,43 +0,0 @@ -#!/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 deleted file mode 100644 index 7cef7ed26d1..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/deployment.yaml +++ /dev/null @@ -1,109 +0,0 @@ -# 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 deleted file mode 100644 index b055bce6ebd..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/test_case.yaml +++ /dev/null @@ -1,77 +0,0 @@ -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 deleted file mode 100644 index 2c45d4ba16a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/toolsets.yaml +++ /dev/null @@ -1,12 +0,0 @@ -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 deleted file mode 100644 index 87bf178c355..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/103_logs_transparency_default_limit/manifest.yaml +++ /dev/null @@ -1,78 +0,0 @@ -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 deleted file mode 100644 index 16619867c35..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/103_logs_transparency_default_limit/test_case.yaml +++ /dev/null @@ -1,25 +0,0 @@ -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 deleted file mode 100644 index 1c3f33bf2f9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/manifest.yaml +++ /dev/null @@ -1,114 +0,0 @@ -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 deleted file mode 100644 index d5f39f0c586..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/mocks/response.txt +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 48a6658588f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/test_case.yaml +++ /dev/null @@ -1,25 +0,0 @@ -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 deleted file mode 100644 index b88ad00fdc9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/108_logs_nearby_lines/manifest.yaml +++ /dev/null @@ -1,110 +0,0 @@ -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 deleted file mode 100644 index 771a191d9d4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/108_logs_nearby_lines/test_case.yaml +++ /dev/null @@ -1,24 +0,0 @@ -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 deleted file mode 100644 index 4d875fd91b5..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/manifest.yaml +++ /dev/null @@ -1,51 +0,0 @@ -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 deleted file mode 100644 index 5f726e2badc..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/mocks/response.txt +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index 1300a7d680a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/test_case.yaml +++ /dev/null @@ -1,25 +0,0 @@ -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 deleted file mode 100644 index b4502fcc7c8..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/kubectl_describe.txt +++ /dev/null @@ -1,61 +0,0 @@ -{"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 deleted file mode 100644 index 57293a0d3b0..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/kubectl_find_resource.txt +++ /dev/null @@ -1,8 +0,0 @@ -{"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 deleted file mode 100644 index 43e6a449822..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/mocks/response.txt +++ /dev/null @@ -1,10 +0,0 @@ -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 deleted file mode 100644 index e8fec526949..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/test_case.yaml +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index fecc6526f76..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/deployment.yaml +++ /dev/null @@ -1,25 +0,0 @@ -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 deleted file mode 100644 index 0243bf5bc3a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/mocks/response.txt +++ /dev/null @@ -1,13 +0,0 @@ -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 deleted file mode 100644 index 28486d36e99..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/test_case.yaml +++ /dev/null @@ -1,16 +0,0 @@ -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 deleted file mode 100644 index e25414a71f4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/manifest.yaml +++ /dev/null @@ -1,24 +0,0 @@ -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 deleted file mode 100644 index 815c4d8e30f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/mocks/response.txt +++ /dev/null @@ -1,6 +0,0 @@ -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 deleted file mode 100644 index 2516951fd69..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/test_case.yaml +++ /dev/null @@ -1,16 +0,0 @@ -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 deleted file mode 100644 index 827c1ab3984..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/manifest.yaml +++ /dev/null @@ -1,160 +0,0 @@ -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 deleted file mode 100644 index 7c4ea03b1c8..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/mocks/response.txt +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 14dfd1fd9cd..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/test_case.yaml +++ /dev/null @@ -1,18 +0,0 @@ -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 deleted file mode 100644 index 783958e99c9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/checkout-service.yaml +++ /dev/null @@ -1,169 +0,0 @@ -# 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 deleted file mode 100644 index 085993f966f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/test_case.yaml +++ /dev/null @@ -1,127 +0,0 @@ -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 deleted file mode 100644 index 7298e06876f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/toolsets.yaml +++ /dev/null @@ -1,10 +0,0 @@ -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 deleted file mode 100644 index 40cab41f0c7..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/traffic-generator.yaml +++ /dev/null @@ -1,157 +0,0 @@ -# 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 deleted file mode 100644 index 40f60acbe5d..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/checkout-service.yaml +++ /dev/null @@ -1,183 +0,0 @@ -# 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 deleted file mode 100644 index 6be3c94a8a2..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/test_case.yaml +++ /dev/null @@ -1,128 +0,0 @@ -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 deleted file mode 100644 index 7298e06876f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/toolsets.yaml +++ /dev/null @@ -1,10 +0,0 @@ -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 deleted file mode 100644 index fbd0e6a3eb9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/traffic-generator.yaml +++ /dev/null @@ -1,163 +0,0 @@ -# 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 deleted file mode 100644 index 3c3d3a7e02c..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_describe.txt +++ /dev/null @@ -1,41 +0,0 @@ -{"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 deleted file mode 100644 index c02f46bb525..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_find_resource.txt +++ /dev/null @@ -1,6 +0,0 @@ -{"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 deleted file mode 100644 index 70ea8209915..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_get_by_kind_in_cluster.txt +++ /dev/null @@ -1,5 +0,0 @@ -{"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 deleted file mode 100644 index c8951fdc679..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/mocks/response.txt +++ /dev/null @@ -1,6 +0,0 @@ -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 deleted file mode 100644 index e7740979101..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/test_case.yaml +++ /dev/null @@ -1,12 +0,0 @@ -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 deleted file mode 100644 index 55996b9a9e6..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_describe.txt +++ /dev/null @@ -1,41 +0,0 @@ -{"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 deleted file mode 100644 index c02f46bb525..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_find_resource.txt +++ /dev/null @@ -1,6 +0,0 @@ -{"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 deleted file mode 100644 index 70ea8209915..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_get_by_kind_in_cluster.txt +++ /dev/null @@ -1,5 +0,0 @@ -{"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 deleted file mode 100644 index 1efb3872157..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/mocks/response.txt +++ /dev/null @@ -1,4 +0,0 @@ -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 deleted file mode 100644 index 8a5ec8e8913..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/test_case.yaml +++ /dev/null @@ -1,18 +0,0 @@ -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 deleted file mode 100644 index 9daa854f22f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_describe_deployment.txt +++ /dev/null @@ -1,46 +0,0 @@ -{"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 deleted file mode 100644 index 432d355cdc0..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_describe_pod.txt +++ /dev/null @@ -1,51 +0,0 @@ -{"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 deleted file mode 100644 index 318380f5f38..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_find_resource_deployment.txt +++ /dev/null @@ -1,6 +0,0 @@ -{"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 deleted file mode 100644 index 713ad3bc802..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_find_resource_pod.txt +++ /dev/null @@ -1,6 +0,0 @@ -{"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 deleted file mode 100644 index f8f20d4ffc8..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_lineage_children.txt +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index 05e6f0f4aa4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/mocks/response.txt +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index af5029bb25f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/test_case.yaml +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index 8afc6435ad9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/manifest.yaml +++ /dev/null @@ -1,24 +0,0 @@ -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 deleted file mode 100644 index 4b445139950..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/mocks/response.txt +++ /dev/null @@ -1,3 +0,0 @@ -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 deleted file mode 100644 index c558bf96d97..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/test_case.yaml +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index b47cbd8b7f5..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/fast_oom_deployment.yaml +++ /dev/null @@ -1,32 +0,0 @@ -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 deleted file mode 100644 index 45be92ada27..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_describe.txt +++ /dev/null @@ -1,76 +0,0 @@ -{"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 deleted file mode 100644 index 178fbc795bb..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_find_resource.txt +++ /dev/null @@ -1,6 +0,0 @@ -{"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 deleted file mode 100644 index 9b0e0bcdbb6..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_logs.txt +++ /dev/null @@ -1,5 +0,0 @@ -{"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 deleted file mode 100644 index f26270837d5..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/mocks/response.txt +++ /dev/null @@ -1,4 +0,0 @@ -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 deleted file mode 100644 index 7174bbf9f9a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/test_case.yaml +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index f11423b5c65..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_describe.txt +++ /dev/null @@ -1,74 +0,0 @@ -{"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 deleted file mode 100644 index 5cee13fd477..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_find_resource.txt +++ /dev/null @@ -1,6 +0,0 @@ -{"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 deleted file mode 100644 index 5bbbf5ccd58..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_logs.txt +++ /dev/null @@ -1,58 +0,0 @@ -{"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 deleted file mode 100644 index a27b903bbca..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/manifest.yaml +++ /dev/null @@ -1,173 +0,0 @@ -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 deleted file mode 100644 index 38cd5f0cad8..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/mocks/response.txt +++ /dev/null @@ -1,13 +0,0 @@ -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 deleted file mode 100644 index 80313caa56f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/test_case.yaml +++ /dev/null @@ -1,37 +0,0 @@ -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 deleted file mode 100644 index 55a62c155b1..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/fetch_logs.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index acf97075ed4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/generate_logs.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/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 deleted file mode 100644 index 011feca4163..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/kubectl_describe.txt +++ /dev/null @@ -1,59 +0,0 @@ -{"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 deleted file mode 100644 index 88fe9a96f7a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/kubectl_find_resource.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index f85386b001d..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index bc88c891f39..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/mocks/response.txt +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index cce4c748481..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/test_case.yaml +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 13a42e26798..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/manifest.yaml +++ /dev/null @@ -1,65 +0,0 @@ -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 deleted file mode 100644 index f05bda9f638..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/test_case.yaml +++ /dev/null @@ -1,83 +0,0 @@ -# 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 deleted file mode 100644 index d04cb4a1756..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/toolsets.yaml +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index 9a70054e916..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/curl.yaml +++ /dev/null @@ -1,27 +0,0 @@ -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 deleted file mode 100644 index 25cfc64ccfc..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/deployment.yaml +++ /dev/null @@ -1,39 +0,0 @@ -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 deleted file mode 100644 index cd7488548a0..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/namespace.yaml +++ /dev/null @@ -1,4 +0,0 @@ -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 deleted file mode 100644 index 0dfe50e444f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/test_case.yaml +++ /dev/null @@ -1,19 +0,0 @@ -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 deleted file mode 100644 index 3247e8276aa..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24_misconfigured_pvc/mocks/response.txt +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index ee948b64086..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24_misconfigured_pvc/test_case.yaml +++ /dev/null @@ -1,10 +0,0 @@ -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 deleted file mode 100644 index d11608cafc6..00000000000 --- 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 +++ /dev/null @@ -1,18 +0,0 @@ -{"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 deleted file mode 100644 index 8e5418d1b4c..00000000000 --- 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 +++ /dev/null @@ -1,18 +0,0 @@ -{"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 deleted file mode 100644 index e373abc191e..00000000000 --- 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 +++ /dev/null @@ -1,60 +0,0 @@ -{"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 deleted file mode 100644 index d1d3996bff9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_find_resource_pod_redis.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index abc24931002..00000000000 --- 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 +++ /dev/null @@ -1,4 +0,0 @@ -{"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 deleted file mode 100644 index 1d24cac1846..00000000000 --- 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 +++ /dev/null @@ -1,4 +0,0 @@ -{"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 deleted file mode 100644 index cbb0f03b8fc..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/mocks/response.txt +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index 4a626d1134b..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/test_case.yaml +++ /dev/null @@ -1,12 +0,0 @@ -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 deleted file mode 100644 index a6742dc1085..00000000000 --- 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 +++ /dev/null @@ -1,18 +0,0 @@ -{"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 deleted file mode 100644 index ec849415b20..00000000000 --- 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 +++ /dev/null @@ -1,18 +0,0 @@ -{"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 deleted file mode 100644 index 491b439ea73..00000000000 --- 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 +++ /dev/null @@ -1,60 +0,0 @@ -{"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 deleted file mode 100644 index d1d3996bff9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_find_resource_pod_redis.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index 9158cabd006..00000000000 --- 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 +++ /dev/null @@ -1,4 +0,0 @@ -{"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 deleted file mode 100644 index 76627934ba8..00000000000 --- 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 +++ /dev/null @@ -1,4 +0,0 @@ -{"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 deleted file mode 100644 index c760e1afcee..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/test_case.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# 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 deleted file mode 100644 index 31ab59e1509..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/ingress_with_class.yaml +++ /dev/null @@ -1,57 +0,0 @@ -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 deleted file mode 100644 index 390afae986e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/test_case.yaml +++ /dev/null @@ -1,14 +0,0 @@ -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 deleted file mode 100644 index 2aa31278c61..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/toolsets.yaml +++ /dev/null @@ -1,3 +0,0 @@ -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 deleted file mode 100644 index 7f4ced2d1a4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/generate_logs.py +++ /dev/null @@ -1,47 +0,0 @@ -#!/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 deleted file mode 100644 index 11167875aa9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/manifest.yaml +++ /dev/null @@ -1,29 +0,0 @@ -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 deleted file mode 100644 index fdf0f9f1308..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/mocks/response.txt +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index de595e205dd..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/test_case.yaml +++ /dev/null @@ -1,30 +0,0 @@ -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 deleted file mode 100644 index af8942020c6..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/generate_logs.py +++ /dev/null @@ -1,69 +0,0 @@ -#!/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 deleted file mode 100644 index 5f1eb0f8f20..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/manifest.yaml +++ /dev/null @@ -1,39 +0,0 @@ -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 deleted file mode 100644 index edacaacca10..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/mocks/response.txt +++ /dev/null @@ -1,16 +0,0 @@ -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 deleted file mode 100644 index 7aacb41cefd..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/test_case.yaml +++ /dev/null @@ -1,34 +0,0 @@ -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 deleted file mode 100644 index af8942020c6..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/generate_logs.py +++ /dev/null @@ -1,69 +0,0 @@ -#!/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 deleted file mode 100644 index 0724928aa3a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/manifest.yaml +++ /dev/null @@ -1,39 +0,0 @@ -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 deleted file mode 100644 index 7d980dd953a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/mocks/response.txt +++ /dev/null @@ -1,17 +0,0 @@ -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 deleted file mode 100644 index 0627477b967..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/test_case.yaml +++ /dev/null @@ -1,34 +0,0 @@ -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 deleted file mode 100644 index a8cda664e12..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/00_system.md +++ /dev/null @@ -1,105 +0,0 @@ -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 deleted file mode 100644 index 7af1e3acfe8..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/01_assistant.md +++ /dev/null @@ -1,12 +0,0 @@ -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 deleted file mode 100644 index 03c2435c0b4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/02_assistant.md +++ /dev/null @@ -1,19 +0,0 @@ -`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 deleted file mode 100644 index 03c2435c0b4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/03_assistant.md +++ /dev/null @@ -1,19 +0,0 @@ -`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 deleted file mode 100644 index c067596a87e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs.txt +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 405e20cbc7e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs_absolute.txt +++ /dev/null @@ -1,8500 +0,0 @@ -{"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 deleted file mode 100644 index 6d8884ff080..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs_relative_21600.txt +++ /dev/null @@ -1,8994 +0,0 @@ -{"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 deleted file mode 100644 index ec21f745437..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/helm/sock-shop.yaml +++ /dev/null @@ -1,902 +0,0 @@ -# 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 deleted file mode 100644 index 54ea8e42b62..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_find_resource.txt +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index a9701246d7d..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_find_resource_deployment_catalogue.txt +++ /dev/null @@ -1,4 +0,0 @@ -{"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 deleted file mode 100644 index 187ab3cd2b5..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_get_by_kind_in_namespace.txt +++ /dev/null @@ -1,17 +0,0 @@ -{"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 deleted file mode 100644 index 24f096bbbcf..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_get_by_name.txt +++ /dev/null @@ -1,4 +0,0 @@ -{"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 deleted file mode 100644 index 58cd97fcb93..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_lineage_children.txt +++ /dev/null @@ -1,8 +0,0 @@ -{"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 deleted file mode 100644 index 8d8be05cc28..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/test_case.yaml +++ /dev/null @@ -1,16 +0,0 @@ -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 deleted file mode 100644 index d2904c22b16..00000000000 --- 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 +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index c4b5d0ab43a..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 57b26d7c0ec..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/kubectl_logs.txt +++ /dev/null @@ -1,10 +0,0 @@ -{"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 deleted file mode 100644 index eda4332dd78..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/manifest.yaml +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index ebb6b366241..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/test_case.yaml +++ /dev/null @@ -1,19 +0,0 @@ -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 deleted file mode 100644 index 0c666eab6f9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/toolsets.yaml +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index 6a29638d157..00000000000 --- 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 +++ /dev/null @@ -1,59733 +0,0 @@ -{"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 deleted file mode 100644 index 5cebc03fe56..00000000000 --- 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 +++ /dev/null @@ -1,65 +0,0 @@ -{"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 deleted file mode 100644 index 0903744f7c8..00000000000 --- 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 +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index c148b3c9ac6..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/manifest.yaml +++ /dev/null @@ -1,40 +0,0 @@ -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 deleted file mode 100644 index 95bef59602e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/test_case.yaml +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 5ea5b239e0a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/toolsets.yaml +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index e6b204d1958..00000000000 --- 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 +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index 731fb549746..00000000000 --- 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 +++ /dev/null @@ -1,12 +0,0 @@ -{"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 deleted file mode 100644 index f987e366fa7..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/get_current_time_.txt +++ /dev/null @@ -1,7 +0,0 @@ -{"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 deleted file mode 100644 index f7def61f3ad..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/kubectl_find_resource_robusta-holmes_pod.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index 633ce995511..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/test_case.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# 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 deleted file mode 100644 index 5ea5b239e0a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/toolsets.yaml +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index 0b810c5145a..00000000000 --- 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 +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index e6b204d1958..00000000000 --- 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 +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index f987e366fa7..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/get_current_time_.txt +++ /dev/null @@ -1,7 +0,0 @@ -{"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 deleted file mode 100644 index f7def61f3ad..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/kubectl_find_resource_robusta-holmes_pod.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index e27fca1cdf3..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/test_case.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# '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 deleted file mode 100644 index 5ea5b239e0a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/toolsets.yaml +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index 2ab61b02d9c..00000000000 --- 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 +++ /dev/null @@ -1,6 +0,0 @@ -{"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 deleted file mode 100644 index 5f92c8441ee..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 46432c27409..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 278e60ff563..00000000000 --- 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 +++ /dev/null @@ -1,6 +0,0 @@ -{"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 deleted file mode 100644 index 4a7d0c8197e..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 7c41614a036..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 6d91c1b4e02..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index e6b204d1958..00000000000 --- 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 +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index 8b3bb1434e5..00000000000 --- 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 +++ /dev/null @@ -1,170 +0,0 @@ -{"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 deleted file mode 100644 index 58a4bb0d23d..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 4c7ea242ddd..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index a0acbdb05f1..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index f987e366fa7..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/get_current_time_.txt +++ /dev/null @@ -1,7 +0,0 @@ -{"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 deleted file mode 100644 index 2837fc16ce9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/kubectl_find_resourcerobusta-holmes_pod.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index f541bcec493..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/test_case.yaml +++ /dev/null @@ -1,16 +0,0 @@ -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 deleted file mode 100644 index 5ea5b239e0a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/toolsets.yaml +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index c5866c4efa8..00000000000 --- 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 +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index 945492df02c..00000000000 --- 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 +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index 0a2f972ba8c..00000000000 --- 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 +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index fce3884a401..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs_default.txt +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index f987e366fa7..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/get_current_time_.txt +++ /dev/null @@ -1,7 +0,0 @@ -{"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 deleted file mode 100644 index 7dd8a5cb5ba..00000000000 --- 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 +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index 900d5bd744f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/test_case.yaml +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 5ea5b239e0a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/toolsets.yaml +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index a5d27f71c70..00000000000 --- 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 +++ /dev/null @@ -1,700 +0,0 @@ -{"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 deleted file mode 100644 index 7b0aa9f20a8..00000000000 --- 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 +++ /dev/null @@ -1,670 +0,0 @@ -{"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 deleted file mode 100644 index 6d3a61272a5..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/generate_logs.py +++ /dev/null @@ -1,70 +0,0 @@ -#!/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 deleted file mode 100644 index 022ee7e3e77..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/kubectl_find_resource_my-app-51_pod.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index a88c0d44b27..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/manifest.yaml +++ /dev/null @@ -1,41 +0,0 @@ -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 deleted file mode 100644 index 2e3d18ab50a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/mocks/response.txt +++ /dev/null @@ -1,13 +0,0 @@ -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 deleted file mode 100644 index c62e67b157d..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/test_case.yaml +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 5ea5b239e0a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/toolsets.yaml +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index 02dc88e0d3d..00000000000 --- 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 +++ /dev/null @@ -1,55 +0,0 @@ -{"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 deleted file mode 100644 index a16318e0227..00000000000 --- 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 +++ /dev/null @@ -1,4 +0,0 @@ -{"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 deleted file mode 100644 index 9daf2734c22..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/manifest.yaml +++ /dev/null @@ -1,41 +0,0 @@ -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 deleted file mode 100644 index b55a6f25404..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/mocks/response.txt +++ /dev/null @@ -1,6 +0,0 @@ -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 deleted file mode 100644 index 6add8bffe32..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/test_case.yaml +++ /dev/null @@ -1,10 +0,0 @@ -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 deleted file mode 100644 index 3c9a2dc2475..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/toolsets.yaml +++ /dev/null @@ -1,3 +0,0 @@ -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 deleted file mode 100755 index 71d31e8838d..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/wait_for_replicas.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/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 deleted file mode 100644 index a8cda664e12..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/conversation_history/00_system.md +++ /dev/null @@ -1,105 +0,0 @@ -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 deleted file mode 100644 index 1ec8ccaed5f..00000000000 --- 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 +++ /dev/null @@ -1,53 +0,0 @@ -{"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 deleted file mode 100644 index d939419c51e..00000000000 --- 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 +++ /dev/null @@ -1,53 +0,0 @@ -{"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 deleted file mode 100644 index 958b9e888c4..00000000000 --- 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 +++ /dev/null @@ -1,53 +0,0 @@ -{"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 deleted file mode 100644 index 821bba95c90..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_find_resourcecustomer-relations-webapp_pod.txt +++ /dev/null @@ -1,5 +0,0 @@ -{"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 deleted file mode 100644 index 46a935121c9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/test_case.yaml +++ /dev/null @@ -1,17 +0,0 @@ -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 deleted file mode 100644 index b93afd06eee..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/toolsets.yaml +++ /dev/null @@ -1,25 +0,0 @@ -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 deleted file mode 100644 index 2d6ba3d2970..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/kubectl_find_resourcevideo-streamer_pod.txt +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 200220701a3..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/kubectl_get_by_kind_in_namespacepod_app-57.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index a69a0be703f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/manifest.yaml +++ /dev/null @@ -1,44 +0,0 @@ -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 deleted file mode 100644 index 9a7fc3937c2..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/test_case.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# 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 deleted file mode 100644 index 4bc91dff843..00000000000 --- 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 +++ /dev/null @@ -1,14 +0,0 @@ -{"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 deleted file mode 100644 index 777a87c3dc0..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/manifests.yaml +++ /dev/null @@ -1,124 +0,0 @@ -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 deleted file mode 100644 index 8f45ad57836..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/test_case.yaml +++ /dev/null @@ -1,14 +0,0 @@ -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 deleted file mode 100644 index 838a17cb878..00000000000 --- 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 +++ /dev/null @@ -1,14 +0,0 @@ -{"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 deleted file mode 100644 index bc780a2e4cf..00000000000 --- 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 +++ /dev/null @@ -1,7 +0,0 @@ -{"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 deleted file mode 100644 index deebfe7d3ef..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/manifests.yaml +++ /dev/null @@ -1,189 +0,0 @@ -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 deleted file mode 100644 index bbe016afeca..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/mocks/response.txt +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 662e82def1f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/test_case.yaml +++ /dev/null @@ -1,12 +0,0 @@ -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 deleted file mode 100644 index 0b7bcb8cc2f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/manifests.yaml +++ /dev/null @@ -1,126 +0,0 @@ -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 deleted file mode 100644 index 349d8091d0e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/mocks/response.txt +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 59d7b3d5792..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/test_case.yaml +++ /dev/null @@ -1,44 +0,0 @@ -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 deleted file mode 100644 index 9b449236c2e..00000000000 --- 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 +++ /dev/null @@ -1,13 +0,0 @@ -{"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 deleted file mode 100644 index 02bdb20bc38..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/manifests.yaml +++ /dev/null @@ -1,161 +0,0 @@ -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 deleted file mode 100644 index b685d27308f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/mocks/response.txt +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 20de369e94e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/test_case.yaml +++ /dev/null @@ -1,13 +0,0 @@ -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 deleted file mode 100644 index 08bb9b743c6..00000000000 --- 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 +++ /dev/null @@ -1,7 +0,0 @@ -{"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 deleted file mode 100644 index 3f2729162dd..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/generate_logs.py +++ /dev/null @@ -1,39 +0,0 @@ -#!/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 deleted file mode 100644 index 9a45625a724..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/kubectl_find_resourcepayment-service_pod.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index 54af9dc8dc4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/manifest.yaml +++ /dev/null @@ -1,33 +0,0 @@ -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 deleted file mode 100644 index ac98be0c6ae..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/mocks/response.txt +++ /dev/null @@ -1,10 +0,0 @@ -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 deleted file mode 100644 index a5141d43cc3..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/test_case.yaml +++ /dev/null @@ -1,37 +0,0 @@ -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 deleted file mode 100644 index 1dbdae4ec93..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/app.py +++ /dev/null @@ -1,46 +0,0 @@ -#!/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 deleted file mode 100644 index 65c18c2d576..00000000000 --- 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 +++ /dev/null @@ -1,2 +0,0 @@ -{"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 deleted file mode 100644 index 1f24a3b41a0..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/kubectl_find_resourceuser-api_pod.txt +++ /dev/null @@ -1,3 +0,0 @@ -{"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 deleted file mode 100644 index a05122ce1d4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/manifest.yaml +++ /dev/null @@ -1,33 +0,0 @@ -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 deleted file mode 100644 index 62cf321ab82..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/mocks/response.txt +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 74b8f59622e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/test_case.yaml +++ /dev/null @@ -1,17 +0,0 @@ -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 deleted file mode 100644 index 8c8eb805c65..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/generate_logs.py +++ /dev/null @@ -1,55 +0,0 @@ -#!/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 deleted file mode 100644 index fc86e88bb17..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index 1d3dfdefd49..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/test_case.yaml +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index ee6e0645f2e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/generate_logs.py +++ /dev/null @@ -1,64 +0,0 @@ -#!/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 deleted file mode 100644 index c137c86b871..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index 34c11bf8505..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/test_case.yaml +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 02096c935c2..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/generate_logs.py +++ /dev/null @@ -1,124 +0,0 @@ -#!/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 deleted file mode 100644 index 0fe9cc8fba3..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index 5975356d731..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/test_case.yaml +++ /dev/null @@ -1,23 +0,0 @@ -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 deleted file mode 100644 index 0e1c7bab801..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/generate_logs.py +++ /dev/null @@ -1,101 +0,0 @@ -#!/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 deleted file mode 100644 index ae31349c18f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index 5b4537f2c4d..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/test_case.yaml +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 052b4a829c5..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/generate_logs.py +++ /dev/null @@ -1,100 +0,0 @@ -#!/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 deleted file mode 100644 index 3cb191c39f3..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index 569757e5388..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/test_case.yaml +++ /dev/null @@ -1,23 +0,0 @@ -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 deleted file mode 100644 index aa7c3b52462..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/generate_logs.py +++ /dev/null @@ -1,154 +0,0 @@ -#!/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 deleted file mode 100644 index 0d0da94843b..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index f3e866d771f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/test_case.yaml +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 106850b8da1..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/generate_logs.py +++ /dev/null @@ -1,107 +0,0 @@ -#!/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 deleted file mode 100644 index 7f4c2680853..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index 9e264bf5919..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/test_case.yaml +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 106850b8da1..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/generate_logs.py +++ /dev/null @@ -1,107 +0,0 @@ -#!/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 deleted file mode 100644 index d7bef76b434..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index a98ec29babd..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/test_case.yaml +++ /dev/null @@ -1,23 +0,0 @@ -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 deleted file mode 100644 index 4be41fc99a1..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/generate_logs.py +++ /dev/null @@ -1,126 +0,0 @@ -#!/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 deleted file mode 100644 index 841c8628a8f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index 1655b358379..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/test_case.yaml +++ /dev/null @@ -1,25 +0,0 @@ -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 deleted file mode 100644 index 729342eeca1..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/generate_logs.py +++ /dev/null @@ -1,186 +0,0 @@ -#!/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 deleted file mode 100644 index 96bbcf074fd..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/manifest.yaml +++ /dev/null @@ -1,35 +0,0 @@ -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 deleted file mode 100644 index b80fb66e18f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/test_case.yaml +++ /dev/null @@ -1,23 +0,0 @@ -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 deleted file mode 100644 index 1d8dea8fe9a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/manifest.yaml +++ /dev/null @@ -1,87 +0,0 @@ -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 deleted file mode 100644 index bf2cedcf29e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/mocks/response.txt +++ /dev/null @@ -1,6 +0,0 @@ -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 deleted file mode 100644 index 3d3d93a2aeb..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/test_case.yaml +++ /dev/null @@ -1,14 +0,0 @@ -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 deleted file mode 100644 index 3ecad0e4148..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/manifest.yaml +++ /dev/null @@ -1,44 +0,0 @@ -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 deleted file mode 100644 index 9cd2519e88b..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/mocks/response.txt +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 2d6c5583762..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/test_case.yaml +++ /dev/null @@ -1,14 +0,0 @@ -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 deleted file mode 100644 index 440d83d691a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/manifest.yaml +++ /dev/null @@ -1,42 +0,0 @@ -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 deleted file mode 100644 index 861aa23effe..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/mocks/response.txt +++ /dev/null @@ -1,13 +0,0 @@ -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 deleted file mode 100644 index 69f0dfb5bb3..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/test_case.yaml +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index c6537131b63..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78b_cpu_quota_exceeded/manifest.yaml +++ /dev/null @@ -1,43 +0,0 @@ -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 deleted file mode 100644 index faa5fe116ff..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78b_cpu_quota_exceeded/test_case.yaml +++ /dev/null @@ -1,16 +0,0 @@ -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 deleted file mode 100644 index 8b5ff64205a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/manifest.yaml +++ /dev/null @@ -1,52 +0,0 @@ -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 deleted file mode 100644 index c5a3199ea73..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/mocks/response.txt +++ /dev/null @@ -1,4 +0,0 @@ -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 deleted file mode 100644 index 0eebfd48703..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/test_case.yaml +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index 278af0136db..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/80_pvc_storage_class_mismatch/manifest.yaml +++ /dev/null @@ -1,54 +0,0 @@ -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 deleted file mode 100644 index 5c177810ab5..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/80_pvc_storage_class_mismatch/test_case.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# 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 deleted file mode 100644 index dd647c0b6a4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/manifest.yaml +++ /dev/null @@ -1,78 +0,0 @@ -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 deleted file mode 100644 index 58eacc9e5ca..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/mocks/response.txt +++ /dev/null @@ -1,19 +0,0 @@ -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 deleted file mode 100644 index ee33659f042..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/test_case.yaml +++ /dev/null @@ -1,14 +0,0 @@ -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 deleted file mode 100644 index e0233bbec85..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/manifest.yaml +++ /dev/null @@ -1,38 +0,0 @@ -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 deleted file mode 100644 index 81c0fe713b9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/mocks/response.txt +++ /dev/null @@ -1,9 +0,0 @@ -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 deleted file mode 100644 index 0fb753f27f3..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/test_case.yaml +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index fc55f5e3c79..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/manifest.yaml +++ /dev/null @@ -1,53 +0,0 @@ -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 deleted file mode 100644 index 3a794bd0c3e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/mocks/response.txt +++ /dev/null @@ -1,4 +0,0 @@ -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 deleted file mode 100644 index b91931047bf..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/test_case.yaml +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index fb3b2ab284d..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/84_network_policy_blocking_traffic/manifest.yaml +++ /dev/null @@ -1,107 +0,0 @@ -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 deleted file mode 100644 index 5da4e0f4bff..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/84_network_policy_blocking_traffic/test_case.yaml +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index c4e205ad1ac..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/manifest.yaml +++ /dev/null @@ -1,45 +0,0 @@ -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 deleted file mode 100644 index 7b5939a8365..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/mocks/response.txt +++ /dev/null @@ -1,9 +0,0 @@ -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 deleted file mode 100644 index ffa5ab9b360..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/test_case.yaml +++ /dev/null @@ -1,14 +0,0 @@ -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 deleted file mode 100644 index 8dabba60f48..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/manifest.yaml +++ /dev/null @@ -1,68 +0,0 @@ -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 deleted file mode 100644 index 2fc0dae1839..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/mocks/response.txt +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index d0c4eba1e94..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/test_case.yaml +++ /dev/null @@ -1,16 +0,0 @@ -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 deleted file mode 100644 index a2d020a5551..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/97_logs_clarification_needed/mocks/response.txt +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index ba1f92f387a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/97_logs_clarification_needed/test_case.yaml +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index 591bff931c4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/98_logs_transparency_default_time/manifest.yaml +++ /dev/null @@ -1,76 +0,0 @@ -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 deleted file mode 100644 index c1e89da903a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/98_logs_transparency_default_time/test_case.yaml +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 709b7c7edba..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/manifest.yaml +++ /dev/null @@ -1,80 +0,0 @@ -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 deleted file mode 100644 index 77b4af7bd55..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/mocks/response.txt +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index f4279b2c77c..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/test_case.yaml +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 7dd37c7df6c..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/helpers.py +++ /dev/null @@ -1,197 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 deleted file mode 100644 index c4e6beffb5d..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/test_ask_agent.py +++ /dev/null @@ -1,435 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 -import textwrap -import sys -import threading -from datetime import datetime, timezone -from pathlib import Path -from time import perf_counter -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) - - -def _log(message: str) -> None: - """Emit a timestamped log line that pytest `-s` will surface immediately.""" - timestamp = datetime.now(timezone.utc).isoformat(timespec="seconds") - print(f"[{timestamp}] {message}", flush=True) - - -def _summarise_command(parts: Iterable[str]) -> str: - """Return a shell-style command string for debugging output.""" - sequence = parts if isinstance(parts, list) else list(parts) - if hasattr(shlex, "join"): - return shlex.join(sequence) - # ``shlex.join`` was added in Python 3.8; keep a safe fallback just in case. - return " ".join(shlex.quote(part) for part in sequence) - - -def _preview_output(output: str, *, limit: int = 400) -> str: - """Provide a trimmed preview of command output for quick debugging.""" - return textwrap.shorten(output.strip(), width=limit, placeholder=" …") - -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: - command_list = list(command) - command_display = _summarise_command(command_list) - _log(f"Invoking AKS Agent CLI: {command_display}") - start = perf_counter() - - timeout_seconds = 600 # 10 minutes timeout - - try: - # Use Popen for real-time output visibility - process = subprocess.Popen( # noqa: S603 - command_list, - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - text=True, - env=env, - ) - - # Thread to print stderr in real-time - stderr_lines = [] - def print_stderr(): - for line in iter(process.stderr.readline, ''): - if line: - print(f"[STDERR] {line.rstrip()}", file=sys.stderr, flush=True) - stderr_lines.append(line) - - stderr_thread = threading.Thread(target=print_stderr, daemon=True) - stderr_thread.start() - - # Wait with timeout - try: - stdout, _ = process.communicate(timeout=timeout_seconds) - stderr_thread.join(timeout=1) - stderr = ''.join(stderr_lines) - except subprocess.TimeoutExpired: - process.kill() - stdout, stderr_remainder = process.communicate() - stderr = ''.join(stderr_lines) + (stderr_remainder or '') - _log(f"[ERROR] CLI command timed out after {timeout_seconds}s") - pytest.fail( - f"AKS Agent CLI call timed out after {timeout_seconds}s\n" - f"Command: {command_display}\n" - f"Stdout: {stdout}\n" - f"Stderr: {stderr}" - ) - - if process.returncode != 0: - raise subprocess.CalledProcessError( - process.returncode, command_list, stdout, stderr - ) - - result = subprocess.CompletedProcess( - command_list, process.returncode, stdout, stderr - ) - 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}" - ) - duration = perf_counter() - start - stdout_preview = _preview_output(result.stdout) - stderr_preview = _preview_output(result.stderr) if result.stderr else None - _log( - f"AKS Agent CLI completed in {duration:.1f}s with stdout preview: {stdout_preview}" - ) - if stderr_preview: - _log( - f"AKS Agent CLI stderr preview: {stderr_preview}" - ) - return result.stdout - - -def _run_commands( - commands: list[str], env: dict[str, str], label: str, scenario: Scenario -) -> None: - if not commands: - _log(f"[{label}] {scenario.name}: no commands to run") - return - for cmd in commands: - _log(f"[{label}] {scenario.name}: running shell command: {cmd}") - start = perf_counter() - 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: - duration = perf_counter() - start - # Provide quick visibility into command results when debugging failures. - if completed.stdout: - stdout_preview = _preview_output(completed.stdout) - _log( - f"[{label}] {scenario.name}: succeeded in {duration:.1f}s; stdout preview: {stdout_preview}" - ) - else: - _log( - f"[{label}] {scenario.name}: succeeded in {duration:.1f}s; no stdout produced" - ) - if completed.stderr: - stderr_preview = _preview_output(completed.stderr) - _log( - f"[{label}] {scenario.name}: stderr preview: {stderr_preview}" - ) - _log( - f"[{label}] {scenario.name}: completed {len(commands)} command(s)" - ) - - -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}]" - _log(f"{iteration_label} starting scenario {scenario.name}") - 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: - _log(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, - ) - - _log(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", "" - ) - _log( - f"{iteration_label} classifier score for {scenario.name}: {classifier_score}" - ) - if classifier_score is None: - _log( - 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: - _log( - 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) - _log(f"{iteration_label} [mock] wrote response to {mock_path}") - finally: - if ( - iteration == ITERATIONS - 1 - and scenario.after_commands - and not aks_skip_cleanup - ): - _log(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) - _log(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)) - _log(f"{iteration_label} completed scenario {scenario.name} (passed={passed})") - 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 deleted file mode 100644 index 64de9841f78..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/test_classifier.py +++ /dev/null @@ -1,80 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 deleted file mode 100644 index 5933671ebfb..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/evals/test_helpers.py +++ /dev/null @@ -1,253 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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/azext_aks_agent/tests/latest/conftest.py b/src/aks-agent/azext_aks_agent/tests/latest/conftest.py deleted file mode 100644 index 8a51501a726..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/conftest.py +++ /dev/null @@ -1,27 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Pytest configuration for azext_aks_agent tests. - -Skips the entire test suite in this folder when running under Python < 3.10. -""" - -import sys -import pytest - - -def pytest_collection_modifyitems(config, items): - """Mark all tests in this folder as skipped on Python < 3.10. - - This ensures tests are still collected (so pytest exits with code 0), - but are skipped during execution under older Python versions. - """ - if sys.version_info < (3, 10): - skip_marker = pytest.mark.skip( - reason="azext_aks_agent tests require Python >= 3.10" - ) - for item in items: - item.add_marker(skip_marker) diff --git a/src/aks-agent/azext_aks_agent/tests/latest/const.py b/src/aks-agent/azext_aks_agent/tests/latest/const.py deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent.py deleted file mode 100644 index 70d12195ba9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent.py +++ /dev/null @@ -1,179 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -import logging -import os -import sys -import unittest -from unittest.mock import Mock, patch - -from azext_aks_agent.agent.agent import aks_agent -from azext_aks_agent.agent.logging import init_log -from azure.cli.core.util import CLIError - -# Mock the holmes modules before any imports that might trigger holmes imports -sys.modules['holmes'] = Mock() -sys.modules['holmes.config'] = Mock() -sys.modules['holmes.core'] = Mock() -sys.modules['holmes.core.prompt'] = Mock() -sys.modules['holmes.interactive'] = Mock() -sys.modules['holmes.plugins'] = Mock() -sys.modules['holmes.plugins.destinations'] = Mock() -sys.modules['holmes.plugins.interfaces'] = Mock() -sys.modules['holmes.plugins.prompts'] = Mock() -sys.modules['holmes.utils'] = Mock() -sys.modules['holmes.utils.console'] = Mock() -sys.modules['holmes.utils.console.logging'] = Mock() -sys.modules['holmes.utils.console.result'] = Mock() - - -def setUpModule(): - # Skip all tests in this module for Python versions below 3.10 - if sys.version_info < (3, 10): - raise unittest.SkipTest("Tests in this module require Python >= 3.10") - - -class TestAksAgent(unittest.TestCase): - """Test cases for aks_agent function""" - - def setUp(self): - """Set up test fixtures""" - self.mock_cmd = Mock() - self.mock_cmd.cli_ctx = Mock() - # Fix the cli_ctx.data structure to be subscriptable - self.mock_cmd.cli_ctx.data = {'subscription_id': 'test-subscription-id'} - - # Default parameters for aks_agent function - self.default_params = { - 'cmd': self.mock_cmd, - 'resource_group_name': 'test-rg', - 'name': 'test-cluster', - 'prompt': 'test prompt', - 'model': 'test-model', - 'api_key': 'test-key', - 'max_steps': 10, - 'config_file': '/path/to/config.yaml', - 'no_interactive': False, - 'no_echo_request': False, - 'show_tool_output': True, - 'refresh_toolsets': False, - } - - def test_aks_agent_python_version_check(self): - """Test that aks_agent raises error for Python version < 3.10""" - with patch.object(sys, 'version_info', (3, 9, 0)): - with patch('azext_aks_agent.agent.agent.CLITelemetryClient'): - with self.assertRaises(CLIError) as cm: - aks_agent(**self.default_params) - - self.assertIn("Please upgrade the python version to 3.10", str(cm.exception)) - - @patch('sys.stdin.isatty') - @patch('azext_aks_agent.agent.agent.CLITelemetryClient') - @patch('azext_aks_agent.agent.agent.init_log') - @patch('azure.cli.core.api.get_config_dir') - @patch('azure.cli.core.commands.client_factory.get_subscription_id') - @patch('os.path.expanduser') - def test_aks_agent_no_prompt_no_interactive_raises_error(self, mock_expanduser, mock_get_subscription_id, - mock_get_config_dir, mock_init_log, - mock_cli_telemetry, mock_stdin_isatty): - """Test that aks_agent raises error when no prompt and not interactive mode""" - # Arrange - mock_stdin_isatty.return_value = True # No piped input - mock_console = Mock() - mock_init_log.return_value = mock_console - mock_get_config_dir.return_value = "/home/user/.azure" - mock_get_subscription_id.return_value = "test-subscription" - - # Mock os.path.expanduser to return a simple path string - mock_expanduser.return_value = "/expanded/path/to/config.yaml" - - with patch.dict(os.environ, {}, clear=True): - with patch('holmes.config.Config') as mock_config_class: - mock_config = Mock() - mock_config_class.load_from_file.return_value = mock_config - mock_ai = Mock() - mock_config.create_console_toolcalling_llm.return_value = mock_ai - - # Act & Assert - params = self.default_params.copy() - params['prompt'] = None - params['no_interactive'] = True # Not interactive - - with self.assertRaises(CLIError) as cm: - aks_agent(**params) - - self.assertIn("Either the 'prompt' argument must be provided", str(cm.exception)) - - @patch('sys.stdin.isatty') - @patch('azext_aks_agent.agent.agent.CLITelemetryClient') - @patch('azext_aks_agent.agent.agent.init_log') - @patch('azure.cli.core.api.get_config_dir') - @patch('azure.cli.core.commands.client_factory.get_subscription_id') - @patch('os.path.expanduser') - def test_aks_agent_echo_request_enabled(self, mock_expanduser, mock_get_subscription_id, mock_get_config_dir, - mock_init_log, mock_cli_telemetry, mock_stdin_isatty): - """Test aks_agent echoes request when echo is enabled""" - # Arrange - mock_stdin_isatty.return_value = True - mock_console = Mock() - mock_init_log.return_value = mock_console - mock_get_config_dir.return_value = "/home/user/.azure" - mock_get_subscription_id.return_value = "test-subscription" - - # Mock os.path.expanduser to return a simple path string - mock_expanduser.return_value = "/expanded/path/to/config.yaml" - - with patch.dict(os.environ, {}, clear=True): - with patch('holmes.config.Config') as mock_config_class: - mock_config = Mock() - mock_config_class.load_from_file.return_value = mock_config - mock_ai = Mock() - mock_config.create_console_toolcalling_llm.return_value = mock_ai - mock_config.get_runbook_catalog.return_value = {} - - with patch('holmes.core.prompt.build_initial_ask_messages') as mock_build_messages: - mock_messages = [{'role': 'user', 'content': 'test'}] - mock_build_messages.return_value = mock_messages - - mock_response = Mock() - mock_response.messages = mock_messages - mock_ai.call.return_value = mock_response - - with patch('holmes.utils.console.result.handle_result'): - with patch('holmes.plugins.prompts.load_and_render_prompt') as mock_load_prompt: - with patch('holmes.plugins.interfaces.Issue'): - with patch('uuid.uuid4'): - with patch('socket.gethostname'): - mock_load_prompt.return_value = "AKS context" - - # Act - params = self.default_params.copy() - params['no_interactive'] = True # Non-interactive - params['no_echo_request'] = False # Echo enabled - aks_agent(**params) - - # Assert that console.print was called with the user prompt - mock_console.print.assert_any_call("[bold yellow]User:[/bold yellow] test prompt") - - @patch('azext_aks_agent.agent.agent.CLITelemetryClient') - def test_aks_agent_telemetry_client_usage(self, mock_cli_telemetry): - """Test that aks_agent uses CLITelemetryClient context manager""" - # Arrange - mock_cli_telemetry.return_value.__enter__ = Mock(return_value=Mock()) - mock_cli_telemetry.return_value.__exit__ = Mock(return_value=None) - - with patch.object(sys, 'version_info', (3, 9, 0)): - # Act & Assert - with self.assertRaises(CLIError): - aks_agent(**self.default_params) - - # Verify CLITelemetryClient was used as context manager - mock_cli_telemetry.assert_called_once() - mock_cli_telemetry.return_value.__enter__.assert_called_once() - mock_cli_telemetry.return_value.__exit__.assert_called_once() - - -if __name__ == "__main__": - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_binary_manager.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_binary_manager.py deleted file mode 100644 index a587e2f56d4..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_binary_manager.py +++ /dev/null @@ -1,613 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 platform -import stat -import subprocess -import tempfile -import unittest -from unittest import IsolatedAsyncioTestCase -from unittest.mock import AsyncMock, Mock, patch - -import pytest -from azext_aks_agent.agent.binary_manager import AksMcpBinaryManager - - -# Use IsolatedAsyncioTestCase for proper async test method support -class TestAksMcpBinaryManager(IsolatedAsyncioTestCase): - - def setUp(self): - """Set up test fixtures.""" - self.test_install_dir = tempfile.mkdtemp() - self.binary_manager = AksMcpBinaryManager(self.test_install_dir) - - def tearDown(self): - """Clean up test fixtures.""" - import shutil - shutil.rmtree(self.test_install_dir, ignore_errors=True) - - def test_get_binary_path_linux(self): - """Test binary path resolution on Linux.""" - with patch('platform.system', return_value='Linux'): - manager = AksMcpBinaryManager('/test/dir') - expected_path = os.path.join('/test/dir', 'aks-mcp') - self.assertEqual(manager.get_binary_path(), expected_path) - - def test_get_binary_path_windows(self): - """Test binary path resolution on Windows.""" - with patch('platform.system', return_value='Windows'): - manager = AksMcpBinaryManager('/test/dir') - expected_path = os.path.join('/test/dir', 'aks-mcp.exe') - self.assertEqual(manager.get_binary_path(), expected_path) - - def test_get_binary_path_darwin(self): - """Test binary path resolution on macOS.""" - with patch('platform.system', return_value='Darwin'): - manager = AksMcpBinaryManager('/test/dir') - expected_path = os.path.join('/test/dir', 'aks-mcp') - self.assertEqual(manager.get_binary_path(), expected_path) - - def test_is_binary_available_not_exists(self): - """Test binary availability when file doesn't exist.""" - self.assertFalse(self.binary_manager.is_binary_available()) - - def test_is_binary_available_exists_but_not_executable(self): - """Test binary availability when file exists but is not executable.""" - # Create a non-executable file - with open(self.binary_manager.binary_path, 'w') as f: - f.write('dummy content') - os.chmod(self.binary_manager.binary_path, 0o644) # Read/write but not execute - - self.assertFalse(self.binary_manager.is_binary_available()) - - def test_is_binary_available_exists_and_executable(self): - """Test binary availability when file exists and is executable.""" - # Create an executable file - with open(self.binary_manager.binary_path, 'w') as f: - f.write('dummy content') - os.chmod(self.binary_manager.binary_path, 0o755) # Read/write/execute - - self.assertTrue(self.binary_manager.is_binary_available()) - - @patch('os.access') - def test_is_binary_available_os_error(self, mock_access): - """Test binary availability when os.access raises OSError.""" - # Create file first - with open(self.binary_manager.binary_path, 'w') as f: - f.write('dummy content') - - mock_access.side_effect = OSError("Permission denied") - self.assertFalse(self.binary_manager.is_binary_available()) - - def test_get_binary_version_not_available(self): - """Test version retrieval when binary is not available.""" - self.assertIsNone(self.binary_manager.get_binary_version()) - - @patch('subprocess.run') - def test_get_binary_version_success(self, mock_run): - """Test successful version retrieval.""" - # Create an executable file - with open(self.binary_manager.binary_path, 'w') as f: - f.write('#!/bin/bash\necho "aks-mcp version 0.1.0"') - os.chmod(self.binary_manager.binary_path, 0o755) - - # Mock subprocess.run - mock_result = Mock() - mock_result.returncode = 0 - mock_result.stdout = "aks-mcp version 0.1.0\n" - mock_run.return_value = mock_result - - version = self.binary_manager.get_binary_version() - self.assertEqual(version, "0.1.0") - mock_run.assert_called_once_with( - [self.binary_manager.binary_path, "--version"], - capture_output=True, - text=True, - timeout=10, - check=False - ) - - @patch('subprocess.run') - def test_get_binary_version_different_format(self, mock_run): - """Test version retrieval with different output format.""" - # Create an executable file - with open(self.binary_manager.binary_path, 'w') as f: - f.write('dummy content') - os.chmod(self.binary_manager.binary_path, 0o755) - - # Different format - mock_result = Mock() - mock_result.returncode = 0 - mock_result.stdout = "version: 1.2.3\n" - mock_run.return_value = mock_result - - version = self.binary_manager.get_binary_version() - self.assertEqual(version, "1.2.3") - - @patch('subprocess.run') - def test_get_binary_version_actual_format(self, mock_run): - """Test version retrieval with actual aks-mcp version format.""" - # Create an executable file - with open(self.binary_manager.binary_path, 'w') as f: - f.write('dummy content') - os.chmod(self.binary_manager.binary_path, 0o755) - - # Mock subprocess.run with actual aks-mcp output format - mock_result = Mock() - mock_result.returncode = 0 - mock_result.stdout = """aks-mcp version v0.0.6-16-ga7464eb+2025-08-18T13:33:38Z -Git commit: a7464eb458bcb138599519a0281b1047cc63b749 -Git tree state: clean -Go version: go1.24.5 -Platform: darwin/arm64 -""" - mock_run.return_value = mock_result - - version = self.binary_manager.get_binary_version() - self.assertEqual(version, "0.0.6") - - @patch('subprocess.run') - def test_get_binary_version_git_format_variations(self, mock_run): - """Test version retrieval with different git-style version formats.""" - # Create an executable file - with open(self.binary_manager.binary_path, 'w') as f: - f.write('dummy content') - os.chmod(self.binary_manager.binary_path, 0o755) - - test_cases = [ - ("aks-mcp version v0.1.0", "0.1.0"), - ("aks-mcp version v0.1.0-5-g123abc", "0.1.0"), - ("aks-mcp version v1.2.3-10-gabc123+2025-01-01T12:00:00Z", "1.2.3"), - ("version v0.0.7-dirty", "0.0.7"), - ] - - for output, expected_version in test_cases: - with self.subTest(output=output): - mock_result = Mock() - mock_result.returncode = 0 - mock_result.stdout = output + "\n" - mock_run.return_value = mock_result - - version = self.binary_manager.get_binary_version() - self.assertEqual(version, expected_version) - - @patch('subprocess.run') - def test_get_binary_version_subprocess_error(self, mock_run): - """Test version retrieval when subprocess fails.""" - # Create an executable file - with open(self.binary_manager.binary_path, 'w') as f: - f.write('dummy content') - os.chmod(self.binary_manager.binary_path, 0o755) - - mock_run.side_effect = subprocess.SubprocessError("Command failed") - version = self.binary_manager.get_binary_version() - self.assertIsNone(version) - - @patch('subprocess.run') - def test_get_binary_version_timeout(self, mock_run): - """Test version retrieval when subprocess times out.""" - # Create an executable file - with open(self.binary_manager.binary_path, 'w') as f: - f.write('dummy content') - os.chmod(self.binary_manager.binary_path, 0o755) - - mock_run.side_effect = subprocess.TimeoutExpired("cmd", 10) - version = self.binary_manager.get_binary_version() - self.assertIsNone(version) - - @patch('subprocess.run') - def test_get_binary_version_non_zero_exit(self, mock_run): - """Test version retrieval when command returns non-zero exit code.""" - # Create an executable file - with open(self.binary_manager.binary_path, 'w') as f: - f.write('dummy content') - os.chmod(self.binary_manager.binary_path, 0o755) - - mock_result = Mock() - mock_result.returncode = 1 - mock_result.stdout = "error" - mock_run.return_value = mock_result - - version = self.binary_manager.get_binary_version() - self.assertIsNone(version) - - @patch.object(AksMcpBinaryManager, 'get_binary_version') - def test_validate_version_success(self, mock_get_version): - """Test successful version validation.""" - mock_get_version.return_value = "0.1.0" - self.assertTrue(self.binary_manager.validate_version("0.0.6")) - self.assertTrue(self.binary_manager.validate_version("0.1.0")) - self.assertFalse(self.binary_manager.validate_version("0.2.0")) - - @patch.object(AksMcpBinaryManager, 'get_binary_version') - def test_validate_version_no_version(self, mock_get_version): - """Test version validation when no version available.""" - mock_get_version.return_value = None - self.assertFalse(self.binary_manager.validate_version("0.0.6")) - - @patch.object(AksMcpBinaryManager, 'get_binary_version') - def test_validate_version_invalid_format(self, mock_get_version): - """Test version validation with invalid version format.""" - mock_get_version.return_value = "invalid-version" - self.assertFalse(self.binary_manager.validate_version("0.0.6")) - - def test_validate_version_complex_versions(self): - """Test version validation with complex version numbers.""" - with patch.object(self.binary_manager, 'get_binary_version') as mock_get_version: - # Test 4-part version - mock_get_version.return_value = "0.1.0.1" - self.assertTrue(self.binary_manager.validate_version("0.1.0.0")) - self.assertFalse(self.binary_manager.validate_version("0.2.0.0")) - - # Test equal versions - mock_get_version.return_value = "1.2.3" - self.assertTrue(self.binary_manager.validate_version("1.2.3")) - - def test_get_platform_info_linux_amd64(self): - """Test platform info detection for Linux amd64.""" - with patch('platform.system', return_value='Linux'), \ - patch('platform.machine', return_value='x86_64'): - platform_name, arch_name = self.binary_manager._get_platform_info() - self.assertEqual(platform_name, 'linux') - self.assertEqual(arch_name, 'amd64') - - def test_get_platform_info_darwin_arm64(self): - """Test platform info detection for macOS ARM64.""" - with patch('platform.system', return_value='Darwin'), \ - patch('platform.machine', return_value='arm64'): - platform_name, arch_name = self.binary_manager._get_platform_info() - self.assertEqual(platform_name, 'darwin') - self.assertEqual(arch_name, 'arm64') - - def test_get_platform_info_windows_amd64(self): - """Test platform info detection for Windows amd64.""" - with patch('platform.system', return_value='Windows'), \ - patch('platform.machine', return_value='AMD64'): - platform_name, arch_name = self.binary_manager._get_platform_info() - self.assertEqual(platform_name, 'windows') - self.assertEqual(arch_name, 'amd64') - - def test_get_platform_info_linux_aarch64(self): - """Test platform info detection for Linux aarch64.""" - with patch('platform.system', return_value='Linux'), \ - patch('platform.machine', return_value='aarch64'): - platform_name, arch_name = self.binary_manager._get_platform_info() - self.assertEqual(platform_name, 'linux') - self.assertEqual(arch_name, 'arm64') - - def test_make_binary_executable_unix(self): - """Test making binary executable on Unix-like systems.""" - if platform.system() == 'Windows': - self.skipTest("Skipping Unix test on Windows") - - # Create a test file - test_file = os.path.join(self.test_install_dir, 'test-binary') - with open(test_file, 'w') as f: - f.write('dummy content') - os.chmod(test_file, 0o644) # Read/write only - - # Make it executable - success = self.binary_manager._make_binary_executable(test_file) - self.assertTrue(success) - - # Check that it's now executable - file_mode = os.stat(test_file).st_mode - self.assertTrue(file_mode & stat.S_IEXEC) # Owner executable - self.assertTrue(file_mode & stat.S_IXGRP) # Group executable - self.assertTrue(file_mode & stat.S_IXOTH) # Others executable - - @patch('platform.system', return_value='Windows') - def test_make_binary_executable_windows(self, mock_system): - """Test making binary executable on Windows (should always succeed).""" - test_file = os.path.join(self.test_install_dir, 'test-binary.exe') - with open(test_file, 'w') as f: - f.write('dummy content') - - success = self.binary_manager._make_binary_executable(test_file) - self.assertTrue(success) - - def test_make_binary_executable_os_error(self): - """Test making binary executable when OS operations fail.""" - if platform.system() == 'Windows': - self.skipTest("Skipping Unix test on Windows") - - # Try to make a non-existent file executable - non_existent_file = os.path.join(self.test_install_dir, 'non-existent') - success = self.binary_manager._make_binary_executable(non_existent_file) - self.assertFalse(success) - - # New tests for GitHub Release API Integration - - def test_get_platform_binary_name_linux_amd64(self): - """Test platform binary name generation for Linux AMD64.""" - with patch.object(self.binary_manager, '_get_platform_info', return_value=('linux', 'amd64')): - binary_name = self.binary_manager._get_platform_binary_name() - self.assertEqual(binary_name, 'aks-mcp-linux-amd64') - - def test_get_platform_binary_name_windows_amd64(self): - """Test platform binary name generation for Windows AMD64.""" - with patch.object(self.binary_manager, '_get_platform_info', return_value=('windows', 'amd64')), \ - patch('platform.system', return_value='Windows'): - binary_name = self.binary_manager._get_platform_binary_name() - self.assertEqual(binary_name, 'aks-mcp-windows-amd64.exe') - - def test_get_platform_binary_name_darwin_arm64(self): - """Test platform binary name generation for macOS ARM64.""" - with patch.object(self.binary_manager, '_get_platform_info', return_value=('darwin', 'arm64')): - binary_name = self.binary_manager._get_platform_binary_name() - self.assertEqual(binary_name, 'aks-mcp-darwin-arm64') - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @patch('aiohttp.ClientSession') - async def test_get_latest_release_info_success(self, mock_session): - """Test successful GitHub API release info retrieval.""" - # Mock successful API response - mock_response = AsyncMock() - mock_response.status = 200 - mock_response.json = AsyncMock(return_value={ - "tag_name": "v0.1.0", - "assets": [ - {"name": "aks-mcp-linux-amd64", "browser_download_url": "https://example.com/binary"} - ] - }) - - # Create mock session with proper async context manager support - mock_session_ctx = AsyncMock() - mock_session_ctx.__aenter__ = AsyncMock(return_value=mock_session_ctx) - mock_session_ctx.__aexit__ = AsyncMock(return_value=None) - - # Create mock get response with proper async context manager support - mock_get_ctx = AsyncMock() - mock_get_ctx.__aenter__ = AsyncMock(return_value=mock_response) - mock_get_ctx.__aexit__ = AsyncMock(return_value=None) - - # Wire up the mocks - mock_session.return_value = mock_session_ctx - mock_session_ctx.get = Mock(return_value=mock_get_ctx) - - result = await self.binary_manager.get_latest_release_info() - - self.assertIsInstance(result, dict) - self.assertEqual(result["tag_name"], "v0.1.0") - self.assertIn("assets", result) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @patch('aiohttp.ClientSession') - async def test_get_latest_release_info_http_error(self, mock_session): - """Test GitHub API release info with HTTP error.""" - # Mock HTTP error response - mock_response = AsyncMock() - mock_response.status = 404 - - # Create mock session with proper async context manager support - mock_session_ctx = AsyncMock() - mock_session_ctx.__aenter__ = AsyncMock(return_value=mock_session_ctx) - mock_session_ctx.__aexit__ = AsyncMock(return_value=None) - - # Create mock get response with proper async context manager support - mock_get_ctx = AsyncMock() - mock_get_ctx.__aenter__ = AsyncMock(return_value=mock_response) - mock_get_ctx.__aexit__ = AsyncMock(return_value=None) - - # Wire up the mocks - mock_session.return_value = mock_session_ctx - mock_session_ctx.get = Mock(return_value=mock_get_ctx) - - with self.assertRaises(Exception) as context: - await self.binary_manager.get_latest_release_info() - - self.assertIn("GitHub API request failed with status 404", str(context.exception)) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @patch('aiohttp.ClientSession') - async def test_get_latest_release_info_network_error(self, mock_session): - """Test GitHub API release info with network error.""" - # Create mock session that raises ClientError - mock_session_ctx = AsyncMock() - mock_session_ctx.__aenter__ = AsyncMock(return_value=mock_session_ctx) - mock_session_ctx.__aexit__ = AsyncMock(return_value=None) - - # Mock get to raise aiohttp.ClientError - import aiohttp - mock_session_ctx.get = Mock(side_effect=aiohttp.ClientError("Network unreachable")) - - # Wire up the mocks - mock_session.return_value = mock_session_ctx - - with self.assertRaises(Exception) as context: - await self.binary_manager.get_latest_release_info() - - self.assertIn("Network error accessing GitHub API", str(context.exception)) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @patch('aiohttp.ClientSession') - async def test_get_latest_release_info_json_error(self, mock_session): - """Test GitHub API release info with JSON decode error.""" - # Mock response with invalid JSON - mock_response = AsyncMock() - mock_response.status = 200 - mock_response.json = AsyncMock(side_effect=ValueError("Invalid JSON")) - - # Create mock session with proper async context manager support - mock_session_ctx = AsyncMock() - mock_session_ctx.__aenter__ = AsyncMock(return_value=mock_session_ctx) - mock_session_ctx.__aexit__ = AsyncMock(return_value=None) - - # Create mock get response with proper async context manager support - mock_get_ctx = AsyncMock() - mock_get_ctx.__aenter__ = AsyncMock(return_value=mock_response) - mock_get_ctx.__aexit__ = AsyncMock(return_value=None) - - # Wire up the mocks - mock_session.return_value = mock_session_ctx - mock_session_ctx.get = Mock(return_value=mock_get_ctx) - - with self.assertRaises(Exception): - await self.binary_manager.get_latest_release_info() - - @patch('urllib.request.urlopen') - def test_verify_binary_integrity_subject_hash(self, mock_urlopen): - """Test binary integrity verification with subject hash in attestation.""" - import hashlib - import json - - # Create a test binary file (any size) - test_file = os.path.join(self.test_install_dir, 'aks-mcp-darwin-arm64') - test_content = b'test content' - with open(test_file, 'wb') as f: - f.write(test_content) - - # Calculate the actual hash of our test content - actual_hash = hashlib.sha256(test_content).hexdigest() - - # Mock release info with attestation file - release_info = { - "assets": [ - {"name": "aks-mcp-darwin-arm64.intoto.jsonl", "browser_download_url": "https://example.com/attestation"} - ] - } - - # Mock attestation content with subject hash - attestation_dict = { - "subject": [ - { - "name": "aks-mcp-darwin-arm64", - "digest": { - "sha256": actual_hash - } - } - ] - } - attestation_content = json.dumps(attestation_dict) - - # Mock HTTP response - mock_response = Mock() - mock_response.status = 200 - mock_response.read.return_value = attestation_content.encode('utf-8') - mock_urlopen.return_value.__enter__.return_value = mock_response - - result = self.binary_manager._verify_binary_integrity(test_file, release_info) - self.assertTrue(result) - - def test_verify_binary_integrity_fallback_to_basic(self): - """Test binary integrity verification fallback when no attestation found.""" - # Create a test binary file (any size) - test_file = os.path.join(self.test_install_dir, 'aks-mcp-linux-amd64') - with open(test_file, 'wb') as f: - f.write(b'test content') - - release_info = {"assets": []} - result = self.binary_manager._verify_binary_integrity(test_file, release_info) - self.assertTrue(result) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - async def test_ensure_binary_already_available_and_valid(self): - """Test ensure_binary when binary is already available and valid.""" - with patch.object(self.binary_manager, 'is_binary_available', return_value=True), \ - patch.object(self.binary_manager, 'get_binary_version', return_value="1.0.0"), \ - patch.object(self.binary_manager, 'validate_version', return_value=True): - - status = await self.binary_manager.ensure_binary() - - self.assertTrue(status.available) - self.assertEqual(status.version, "1.0.0") - self.assertTrue(status.version_valid) - self.assertTrue(status.ready) - self.assertIsNone(status.error_message) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - async def test_ensure_binary_available_but_invalid_version(self): - """Test ensure_binary when binary is available but has invalid version.""" - mock_progress = Mock() - - with patch.object(self.binary_manager, 'is_binary_available', side_effect=[True, True]), \ - patch.object(self.binary_manager, 'get_binary_version', side_effect=["0.0.1", "1.0.0"]), \ - patch.object(self.binary_manager, 'validate_version', side_effect=[False, True]), \ - patch.object(self.binary_manager, '_create_installation_directory', return_value=True), \ - patch.object(self.binary_manager, 'download_binary', return_value=True): - - status = await self.binary_manager.ensure_binary(progress_callback=mock_progress) - - self.assertTrue(status.available) - self.assertEqual(status.version, "1.0.0") - self.assertTrue(status.version_valid) - self.assertTrue(status.ready) - self.assertIsNone(status.error_message) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - async def test_ensure_binary_not_available_download_success(self): - """Test ensure_binary when binary is not available but download succeeds.""" - mock_progress = Mock() - - with patch.object(self.binary_manager, 'is_binary_available', side_effect=[False, True]), \ - patch.object(self.binary_manager, 'get_binary_version', return_value="1.0.0"), \ - patch.object(self.binary_manager, 'validate_version', return_value=True), \ - patch.object(self.binary_manager, '_create_installation_directory', return_value=True), \ - patch.object(self.binary_manager, 'download_binary', return_value=True) as mock_download: - - status = await self.binary_manager.ensure_binary(progress_callback=mock_progress) - - self.assertTrue(status.available) - self.assertEqual(status.version, "1.0.0") - self.assertTrue(status.version_valid) - self.assertTrue(status.ready) - self.assertIsNone(status.error_message) - mock_download.assert_called_once_with(progress_callback=mock_progress) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - async def test_ensure_binary_directory_creation_fails(self): - """Test ensure_binary when directory creation fails.""" - with patch.object(self.binary_manager, 'is_binary_available', return_value=False), \ - patch.object(self.binary_manager, '_create_installation_directory', return_value=False): - - status = await self.binary_manager.ensure_binary() - - self.assertFalse(status.ready) - self.assertIn("Failed to create installation directory", status.error_message) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - async def test_ensure_binary_download_fails(self): - """Test ensure_binary when download fails.""" - with patch.object(self.binary_manager, 'is_binary_available', return_value=False), \ - patch.object(self.binary_manager, '_create_installation_directory', return_value=True), \ - patch.object(self.binary_manager, 'download_binary', return_value=False): - - status = await self.binary_manager.ensure_binary() - - self.assertFalse(status.ready) - self.assertEqual(status.error_message, "Binary download failed") - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - async def test_ensure_binary_download_success_but_validation_fails(self): - """Test ensure_binary when download succeeds but validation fails.""" - with patch.object(self.binary_manager, 'is_binary_available', side_effect=[False, True]), \ - patch.object(self.binary_manager, 'get_binary_version', return_value="0.0.1"), \ - patch.object(self.binary_manager, 'validate_version', return_value=False), \ - patch.object(self.binary_manager, '_create_installation_directory', return_value=True), \ - patch.object(self.binary_manager, 'download_binary', return_value=True): - - status = await self.binary_manager.ensure_binary() - - self.assertTrue(status.available) - self.assertEqual(status.version, "0.0.1") - self.assertFalse(status.version_valid) - self.assertFalse(status.ready) - self.assertEqual(status.error_message, "Downloaded binary failed validation") - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - async def test_ensure_binary_unexpected_exception(self): - """Test ensure_binary handles unexpected exceptions gracefully.""" - with patch.object(self.binary_manager, 'is_binary_available', side_effect=Exception("Unexpected error")): - - status = await self.binary_manager.ensure_binary() - - self.assertFalse(status.ready) - self.assertIn("Unexpected error during binary management", status.error_message) - self.assertIn("Unexpected error", status.error_message) - - -if __name__ == '__main__': - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_config_generator.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_config_generator.py deleted file mode 100644 index b8f0eb7040f..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_config_generator.py +++ /dev/null @@ -1,300 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -import unittest - -from azext_aks_agent.agent.config_generator import ConfigurationGenerator - - -class TestConfigurationGenerator(unittest.TestCase): - """Test cases for ConfigurationGenerator class.""" - - def setUp(self): - """Set up test fixtures.""" - self.base_config = { - "model": "gpt-4", - "api_key": "test-key", - "max_steps": 10, - "toolsets": { - "some-custom-toolset": {"enabled": True} - }, - "other_setting": "value" - } - - self.server_url = "http://localhost:8003/sse" - - def test_generate_mcp_config_basic(self): - """Test basic MCP configuration generation.""" - result = ConfigurationGenerator.generate_mcp_config(self.base_config, self.server_url) - - # Should preserve base config - self.assertEqual(result["model"], "gpt-4") - self.assertEqual(result["api_key"], "test-key") - self.assertEqual(result["max_steps"], 10) - self.assertEqual(result["other_setting"], "value") - - # Should add MCP server configuration - self.assertIn("mcp_servers", result) - self.assertIn("aks-mcp", result["mcp_servers"]) - - aks_mcp = result["mcp_servers"]["aks-mcp"] - self.assertEqual(aks_mcp["description"], "AKS MCP server") - self.assertEqual(aks_mcp["url"], self.server_url) - - # Should disable conflicting toolsets - toolsets = result["toolsets"] - self.assertFalse(toolsets["aks/node-health"]["enabled"]) - self.assertFalse(toolsets["aks/core"]["enabled"]) - self.assertFalse(toolsets["kubernetes/core"]["enabled"]) - self.assertFalse(toolsets["kubernetes/logs"]["enabled"]) - self.assertFalse(toolsets["kubernetes/live-metrics"]["enabled"]) - self.assertFalse(toolsets["bash"]["enabled"]) - - # Should preserve custom toolsets - self.assertTrue(toolsets["some-custom-toolset"]["enabled"]) - - def test_generate_mcp_config_empty_base(self): - """Test MCP configuration generation with empty base config.""" - result = ConfigurationGenerator.generate_mcp_config({}, self.server_url) - - # Should create MCP server configuration - self.assertIn("mcp_servers", result) - self.assertIn("aks-mcp", result["mcp_servers"]) - - # Should create toolsets configuration - self.assertIn("toolsets", result) - for toolset_name in ConfigurationGenerator.DEFAULT_CONFLICTING_TOOLSETS: - self.assertIn(toolset_name, result["toolsets"]) - self.assertFalse(result["toolsets"][toolset_name]["enabled"]) - - def test_generate_mcp_config_none_base(self): - """Test MCP configuration generation with None base config.""" - result = ConfigurationGenerator.generate_mcp_config(None, self.server_url) - - # Should handle None gracefully - self.assertIn("mcp_servers", result) - self.assertIn("toolsets", result) - - def test_generate_mcp_config_invalid_server_url(self): - """Test MCP configuration generation with invalid server URL.""" - with self.assertRaises(ValueError): - ConfigurationGenerator.generate_mcp_config(self.base_config, "") - - with self.assertRaises(ValueError): - ConfigurationGenerator.generate_mcp_config(self.base_config, None) - - def test_generate_mcp_config_preserves_original(self): - """Test that MCP config generation doesn't modify original config.""" - original_toolsets_count = len(self.base_config["toolsets"]) - - result = ConfigurationGenerator.generate_mcp_config(self.base_config, self.server_url) - - # Original should be unchanged - self.assertEqual(len(self.base_config["toolsets"]), original_toolsets_count) - self.assertNotIn("mcp_servers", self.base_config) - - # Result should be different - self.assertGreater(len(result["toolsets"]), original_toolsets_count) - self.assertIn("mcp_servers", result) - - def test_generate_traditional_config_basic(self): - """Test basic traditional configuration generation.""" - result = ConfigurationGenerator.generate_traditional_config(self.base_config) - - # Should preserve base config - self.assertEqual(result["model"], "gpt-4") - self.assertEqual(result["api_key"], "test-key") - self.assertEqual(result["max_steps"], 10) - self.assertEqual(result["other_setting"], "value") - - # Should not have MCP servers - self.assertNotIn("mcp_servers", result) - - # Should enable all default toolsets - toolsets = result["toolsets"] - for toolset_name, toolset_cfg in ConfigurationGenerator.DEFAULT_CONFLICTING_TOOLSETS.items(): - self.assertTrue(toolset_name in toolsets) - self.assertTrue(toolsets[toolset_name]["enabled"]) # enabled True - - def test_generate_traditional_config_removes_mcp(self): - """Traditional config should remove any mcp_servers section.""" - base_with_mcp = dict(self.base_config) - base_with_mcp["mcp_servers"] = {"some-server": {"url": "test"}} - - result = ConfigurationGenerator.generate_traditional_config(base_with_mcp) - - # Should remove MCP servers - self.assertNotIn("mcp_servers", result) - - def test_generate_traditional_config_empty_base(self): - """Test traditional configuration generation with empty base config.""" - result = ConfigurationGenerator.generate_traditional_config({}) - - # Should create toolsets configuration - self.assertIn("toolsets", result) - for toolset_name in ConfigurationGenerator.DEFAULT_CONFLICTING_TOOLSETS: - self.assertTrue(result["toolsets"][toolset_name]["enabled"]) - - def test_generate_traditional_config_none_base(self): - """Test traditional configuration generation with None base config.""" - result = ConfigurationGenerator.generate_traditional_config(None) - - # Should handle None gracefully - self.assertIn("toolsets", result) - - def test_merge_configs_basic(self): - """Test basic configuration merging.""" - base = {"a": 1, "b": {"x": 10, "y": 20}, "c": 3} - override = {"b": {"y": 25, "z": 30}, "d": 4} - - result = ConfigurationGenerator.merge_configs(base, override) - - # Should merge properly - self.assertEqual(result["a"], 1) # From base - self.assertEqual(result["c"], 3) # From base - self.assertEqual(result["d"], 4) # From override - - # Nested merge - self.assertEqual(result["b"]["x"], 10) # From base - self.assertEqual(result["b"]["y"], 25) # From override - self.assertEqual(result["b"]["z"], 30) # From override - - def test_merge_configs_empty_inputs(self): - """Test configuration merging with empty inputs.""" - base = {"a": 1} - - # Empty override - result = ConfigurationGenerator.merge_configs(base, {}) - self.assertEqual(result, base) - - # Empty base - result = ConfigurationGenerator.merge_configs({}, base) - self.assertEqual(result, base) - - # Both empty - result = ConfigurationGenerator.merge_configs({}, {}) - self.assertEqual(result, {}) - - # None inputs - result = ConfigurationGenerator.merge_configs(None, base) - self.assertEqual(result, base) - - result = ConfigurationGenerator.merge_configs(base, None) - self.assertEqual(result, base) - - result = ConfigurationGenerator.merge_configs(None, None) - self.assertEqual(result, {}) - - def test_merge_configs_preserves_originals(self): - """Test that merging doesn't modify original configs.""" - base = {"a": 1, "b": {"x": 10}} - override = {"b": {"y": 20}} - - original_base = dict(base) - original_override = dict(override) - - result = ConfigurationGenerator.merge_configs(base, override) - - # Originals should be unchanged - self.assertEqual(base, original_base) - self.assertEqual(override, original_override) - - # Result should be different - self.assertNotEqual(result, base) - self.assertNotEqual(result, override) - - def test_validate_mcp_config_valid(self): - """Test validation of valid MCP configuration.""" - config = ConfigurationGenerator.generate_mcp_config(self.base_config, self.server_url) - self.assertTrue(ConfigurationGenerator.validate_mcp_config(config)) - - def test_validate_mcp_config_invalid_structure(self): - """Test validation of invalid MCP configuration structures.""" - # Not a dictionary - self.assertFalse(ConfigurationGenerator.validate_mcp_config("invalid")) - self.assertFalse(ConfigurationGenerator.validate_mcp_config(None)) - - # Missing mcp_servers - config = {"toolsets": {}} - self.assertFalse(ConfigurationGenerator.validate_mcp_config(config)) - - # Invalid mcp_servers structure - config = {"mcp_servers": "invalid"} - self.assertFalse(ConfigurationGenerator.validate_mcp_config(config)) - - # Missing aks-mcp server - config = {"mcp_servers": {"other-server": {}}} - self.assertFalse(ConfigurationGenerator.validate_mcp_config(config)) - - def test_validate_mcp_config_missing_required_fields(self): - """Test validation with missing required MCP server fields.""" - base_mcp_server = { - "description": "AKS MCP server", - "url": "http://localhost:8003/sse" - } - - # Test each required field - required_fields = ["description", "url"] - for field in required_fields: - incomplete_server = dict(base_mcp_server) - del incomplete_server[field] - - config = { - "mcp_servers": {"aks-mcp": incomplete_server}, - "toolsets": {name: {"enabled": False} for name in ConfigurationGenerator.DEFAULT_CONFLICTING_TOOLSETS} - } - - self.assertFalse(ConfigurationGenerator.validate_mcp_config(config), - f"Should fail validation when missing {field}") - - def test_validate_mcp_config_enabled_conflicting_toolsets(self): - """Test validation fails with enabled conflicting toolsets.""" - config = { - "mcp_servers": { - "aks-mcp": { - "description": "AKS MCP server", - "url": "http://localhost:8003/sse" - } - }, - "toolsets": { - "aks/core": {"enabled": True} - } - } - - self.assertFalse(ConfigurationGenerator.validate_mcp_config(config)) - - def test_validate_traditional_config_valid(self): - """Test validation of valid traditional configuration.""" - config = ConfigurationGenerator.generate_traditional_config(self.base_config) - self.assertTrue(ConfigurationGenerator.validate_traditional_config(config)) - - def test_validate_traditional_config_invalid_structure(self): - """Test validation of invalid traditional configuration structures.""" - # Not a dictionary - self.assertFalse(ConfigurationGenerator.validate_traditional_config("invalid")) - self.assertFalse(ConfigurationGenerator.validate_traditional_config(None)) - - def test_validate_traditional_config_with_mcp_servers(self): - """Test validation fails for traditional config with MCP servers.""" - config = { - "mcp_servers": {"aks-mcp": {"url": "test"}}, - "toolsets": {name: {"enabled": True} for name in ConfigurationGenerator.DEFAULT_CONFLICTING_TOOLSETS} - } - - self.assertFalse(ConfigurationGenerator.validate_traditional_config(config)) - - def test_validate_traditional_config_disabled_toolsets(self): - """Test validation fails for traditional config with disabled required toolsets.""" - config = { - "toolsets": { - "aks/core": {"enabled": False} - } - } - - self.assertFalse(ConfigurationGenerator.validate_traditional_config(config)) - - -if __name__ == '__main__': - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_error_handler.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_error_handler.py deleted file mode 100644 index bb9d31e4c2a..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_error_handler.py +++ /dev/null @@ -1,223 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Tests for AKS Agent Error Handler functionality. -""" - -from knack.util import CLIError - - -class TestAksAgentErrorHandler: - """Test AKS Agent Error Handler functionality.""" - - def test_agent_error_base_class(self): - """Test AgentError base class functionality.""" - from azext_aks_agent.agent.error_handler import AgentError - - # Test basic error creation - error = AgentError("Test error", "TEST_CODE", ["Suggestion 1", "Suggestion 2"]) - - assert str(error) == "Test error" - assert error.message == "Test error" - assert error.error_code == "TEST_CODE" - assert error.suggestions == ["Suggestion 1", "Suggestion 2"] - - # Test defaults - error_minimal = AgentError("Minimal error") - assert error_minimal.error_code == "GENERAL" - assert error_minimal.suggestions == [] - - def test_mcp_error_inheritance(self): - """Test MCPError extends AgentError with default suggestions.""" - from azext_aks_agent.agent.error_handler import MCPError - - error = MCPError("MCP failed") - - assert error.error_code == "MCP" - assert len(error.suggestions) > 0 - assert any("--aks-mcp" in suggestion for suggestion in error.suggestions) - assert any("internet connection" in suggestion.lower() for suggestion in error.suggestions) - - def test_binary_error_inheritance(self): - """Test BinaryError extends MCPError with specific suggestions.""" - from azext_aks_agent.agent.error_handler import BinaryError - - error = BinaryError("Binary download failed", "BINARY_TEST", ["Custom suggestion"]) - - assert error.error_code == "BINARY_TEST" - # Should have both custom and default suggestions - assert "Custom suggestion" in error.suggestions - assert any("internet connectivity" in suggestion.lower() for suggestion in error.suggestions) - - def test_server_error_inheritance(self): - """Test ServerError extends MCPError with server-specific suggestions.""" - from azext_aks_agent.agent.error_handler import ServerError - - error = ServerError("Server startup failed") - - assert error.error_code == "SERVER" - assert any("port" in suggestion.lower() for suggestion in error.suggestions) - assert any("execute permissions" in suggestion.lower() for suggestion in error.suggestions) - - def test_configuration_error_inheritance(self): - """Test ConfigurationError extends AgentError with config-specific suggestions.""" - from azext_aks_agent.agent.error_handler import ConfigurationError - - error = ConfigurationError("Invalid config") - - assert error.error_code == "CONFIG" - assert any("YAML" in suggestion for suggestion in error.suggestions) - assert any("configuration" in suggestion.lower() for suggestion in error.suggestions) - - def test_error_message_formatting(self): - """Test error message formatting functionality.""" - from azext_aks_agent.agent.error_handler import AgentErrorHandler, MCPError - - # Test with AgentError - error = MCPError("Test MCP error", "TEST_MCP", ["Suggestion 1", "Suggestion 2"]) - formatted = AgentErrorHandler.format_error_message(error, show_suggestions=True) - - assert "AKS Agent Error (TEST_MCP): Test MCP error" in formatted - assert "Suggestions:" in formatted - assert "1. Suggestion 1" in formatted - assert "2. Suggestion 2" in formatted - - # Test without suggestions - formatted_no_suggestions = AgentErrorHandler.format_error_message(error, show_suggestions=False) - assert "AKS Agent Error (TEST_MCP): Test MCP error" in formatted_no_suggestions - assert "Suggestions:" not in formatted_no_suggestions - - # Test with non-AgentError - regular_error = Exception("Regular error") - formatted_regular = AgentErrorHandler.format_error_message(regular_error) - assert "AKS Agent Error: Regular error" in formatted_regular - - def test_cli_error_creation(self): - """Test CLIError creation from AgentError.""" - from azext_aks_agent.agent.error_handler import AgentErrorHandler, MCPError - - agent_error = MCPError("Test error", "TEST", ["Test suggestion"]) - cli_error = AgentErrorHandler.create_cli_error(agent_error) - - assert isinstance(cli_error, CLIError) - assert "AKS Agent Error (TEST): Test error" in str(cli_error) - assert "Test suggestion" in str(cli_error) - - def test_mcp_setup_error_handling(self): - """Test MCP setup error handling with context-specific guidance.""" - from azext_aks_agent.agent.error_handler import AgentErrorHandler, MCPError, BinaryError, ServerError - - # Simulate network error - original_error = ConnectionError("Network failure") - mcp_error = AgentErrorHandler.handle_mcp_setup_error(original_error, "initialization") - - assert isinstance(mcp_error, MCPError) - assert "MCP setup failed during initialization" in str(mcp_error) - assert any("internet" in s.lower() for s in mcp_error.suggestions) - - # Binary error cases - download_error = Exception("Download failed") - binary_error = AgentErrorHandler.handle_binary_error(download_error, "download") - - assert isinstance(binary_error, BinaryError) - assert "Binary download failed" in str(binary_error) - assert binary_error.error_code == "BINARY_DOWNLOAD" - assert any("internet connectivity" in suggestion.lower() for suggestion in binary_error.suggestions) - - # Validation - validation_error = Exception("Checksum mismatch") - binary_error_val = AgentErrorHandler.handle_binary_error(validation_error, "validation") - - assert binary_error_val.error_code == "BINARY_VALIDATION" - assert any("corrupted" in suggestion.lower() for suggestion in binary_error_val.suggestions) - - # Execution - execution_error = Exception("Permission denied") - binary_error_exec = AgentErrorHandler.handle_binary_error(execution_error, "execution") - - assert binary_error_exec.error_code == "BINARY_EXECUTION" - assert any("execute permissions" in suggestion.lower() for suggestion in binary_error_exec.suggestions) - - def test_server_error_handling(self): - """Test server error handling with operation-specific guidance.""" - from azext_aks_agent.agent.error_handler import AgentErrorHandler, ServerError - - # Startup - startup_error = Exception("Startup failed") - server_error = AgentErrorHandler.handle_server_error(startup_error, "startup") - - assert isinstance(server_error, ServerError) - assert "MCP server startup failed" in str(server_error) - assert server_error.error_code == "SERVER_STARTUP" - assert any("binary is available" in suggestion.lower() for suggestion in server_error.suggestions) - - # Health check - health_error = Exception("Health check timeout") - server_error_health = AgentErrorHandler.handle_server_error(health_error, "health_check") - - assert server_error_health.error_code == "SERVER_HEALTH_CHECK" - assert any("automatically restarted" in suggestion.lower() for suggestion in server_error_health.suggestions) - - # Communication - comm_error = Exception("Connection refused") - server_error_comm = AgentErrorHandler.handle_server_error(comm_error, "communication") - - assert server_error_comm.error_code == "SERVER_COMMUNICATION" - assert any("still running" in suggestion.lower() for suggestion in server_error_comm.suggestions) - - def test_context_error_creation(self): - """Test AKS context validation error creation.""" - from azext_aks_agent.agent.error_handler import AgentErrorHandler, AgentError - - context_info = { - "cluster_name": "test-cluster", - "resource_group": "test-rg", - "subscription_id": "test-sub-id" - } - - context_error = AgentErrorHandler.create_context_error(context_info) - - assert isinstance(context_error, AgentError) - assert context_error.error_code == "CONTEXT_VALIDATION" - assert "test-cluster" in str(context_error) - assert "test-rg" in str(context_error) - assert "test-sub-id" in str(context_error) - assert any("--name " in suggestion for suggestion in context_error.suggestions) - assert any("az login" in suggestion for suggestion in context_error.suggestions) - - # Test with None values - context_info_none = { - "cluster_name": None, - "resource_group": None, - "subscription_id": None - } - - context_error_none = AgentErrorHandler.create_context_error(context_info_none) - assert "None" in str(context_error_none) - - def test_error_codes_uniqueness(self): - """Test that error codes are unique and descriptive.""" - from azext_aks_agent.agent.error_handler import ( - MCPError, BinaryError, ServerError, ConfigurationError, AgentErrorHandler - ) - - # Different error types - mcp_error = MCPError("Test") - binary_error = BinaryError("Test") - server_error = ServerError("Test") - config_error = ConfigurationError("Test") - - error_codes = {mcp_error.error_code, binary_error.error_code, - server_error.error_code, config_error.error_code} - - assert len(error_codes) >= 3 - - # Handler-generated errors have specific codes - binary_download = AgentErrorHandler.handle_binary_error(Exception(), "download") - binary_validation = AgentErrorHandler.handle_binary_error(Exception(), "validation") - - assert binary_download.error_code == "BINARY_DOWNLOAD" - assert binary_validation.error_code == "BINARY_VALIDATION" diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_init.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_init.py deleted file mode 100644 index eca9dfc2ef5..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_init.py +++ /dev/null @@ -1,161 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -import types -import unittest -from unittest.mock import MagicMock, patch - -from azext_aks_agent.custom import aks_agent_init -from azure.cli.core.azclierror import AzCLIError - -mock_logging = MagicMock(name="init_logging") -mock_console_mod = types.SimpleNamespace(logging=types.SimpleNamespace(init_logging=mock_logging)) - -mock_holmes = types.SimpleNamespace( - interactive=types.SimpleNamespace( - SlashCommands=MagicMock() - ), - utils=types.SimpleNamespace( - colors=types.SimpleNamespace( - ERROR_COLOR=MagicMock(), - HELP_COLOR=MagicMock(), - ), - console=mock_console_mod, - ) -) - -mock_rich = types.SimpleNamespace( - console=types.SimpleNamespace( - Console=MagicMock() - ) -) - - -class TestAksAgentInit(unittest.TestCase): - - def setUp(self): - patcher = patch.dict( - 'sys.modules', - { - 'holmes': mock_holmes, - 'holmes.interactive': mock_holmes.interactive, - 'holmes.utils': mock_holmes.utils, - 'holmes.utils.colors': mock_holmes.utils.colors, - 'holmes.utils.console': mock_holmes.utils.console, - 'holmes.utils.console.logging': mock_holmes.utils.console.logging, - 'rich': mock_rich, - 'rich.console': mock_rich.console, - } - ) - self.addCleanup(patcher.stop) - patcher.start() - - @patch('holmes.interactive.SlashCommands') - @patch('holmes.utils.colors.ERROR_COLOR') - @patch('holmes.utils.colors.HELP_COLOR') - @patch('rich.console.Console') - @patch('azext_aks_agent.custom.prompt_provider_choice') - @patch('azext_aks_agent.custom.LLMConfigManager') - def test_init_successful_save( - self, - mock_config_manager_cls, - mock_prompt_provider_choice, - mock_console_cls, - mock_help_color, - mock_error_color, - mock_slash_commands - ): - mock_console = MagicMock() - mock_console_cls.return_value = mock_console - - mock_provider = MagicMock() - mock_provider.prompt_params.return_value = {'MODEL_NAME': 'test-model', 'param': 'value'} - mock_provider.validate_connection.return_value = (True, 'Valid', 'save') - mock_provider.name = 'openai' - mock_provider.model_route = 'openai' - mock_prompt_provider_choice.return_value = mock_provider - - mock_config_manager = MagicMock() - mock_config_manager_cls.return_value = mock_config_manager - - mock_help_color.__str__.return_value = "green" - mock_error_color.__str__.return_value = "red" - mock_slash_commands.EXIT.command = "exit" - - aks_agent_init(cmd=None) - mock_config_manager.save.assert_called_once_with('openai', {'MODEL_NAME': 'test-model', 'param': 'value'}) - - @patch('holmes.interactive.SlashCommands') - @patch('holmes.utils.colors.ERROR_COLOR') - @patch('holmes.utils.colors.HELP_COLOR') - @patch('rich.console.Console') - @patch('azext_aks_agent.custom.prompt_provider_choice') - @patch('azext_aks_agent.custom.LLMConfigManager') - def test_init_retry_input( - self, - mock_config_manager_cls, - mock_prompt_provider_choice, - mock_console_cls, - mock_help_color, - mock_error_color, - mock_slash_commands - ): - mock_console = MagicMock() - mock_console_cls.return_value = mock_console - - mock_provider = MagicMock() - mock_provider.prompt_params.return_value = {'MODEL_NAME': 'test-model'} - mock_provider.validate_connection.return_value = (False, 'Invalid input', 'retry_input') - mock_provider.name = 'openai' - mock_prompt_provider_choice.return_value = mock_provider - - mock_config_manager_cls.return_value = MagicMock() - - mock_help_color.__str__.return_value = "green" - mock_error_color.__str__.return_value = "red" - mock_slash_commands.EXIT.command = "exit" - - with self.assertRaises(AzCLIError) as cm: - aks_agent_init(cmd=None) - self.assertEqual(str(cm.exception), - "Please re-run `az aks agent-init` to correct the input parameters. Invalid input") - - @patch('holmes.interactive.SlashCommands') - @patch('holmes.utils.colors.ERROR_COLOR') - @patch('holmes.utils.colors.HELP_COLOR') - @patch('rich.console.Console') - @patch('azext_aks_agent.custom.prompt_provider_choice') - @patch('azext_aks_agent.custom.LLMConfigManager') - def test_init_connection_error( - self, - mock_config_manager_cls, - mock_prompt_provider_choice, - mock_console_cls, - mock_help_color, - mock_error_color, - mock_slash_commands - ): - mock_console = MagicMock() - mock_console_cls.return_value = mock_console - - mock_provider = MagicMock() - mock_provider.prompt_params.return_value = {'MODEL_NAME': 'test-model'} - mock_provider.validate_connection.return_value = (False, 'Connection failed', 'other') - mock_provider.name = 'openai' - mock_prompt_provider_choice.return_value = mock_provider - - mock_config_manager_cls.return_value = MagicMock() - - mock_help_color.__str__.return_value = "green" - mock_error_color.__str__.return_value = "red" - mock_slash_commands.EXIT.command = "exit" - - with self.assertRaises(AzCLIError) as cm: - aks_agent_init(cmd=None) - self.assertEqual(str(cm.exception), "Please check your deployed model and network connectivity. Connection failed") - - -if __name__ == '__main__': - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_llm_config_manager.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_llm_config_manager.py deleted file mode 100644 index 7b97ca4f729..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_llm_config_manager.py +++ /dev/null @@ -1,755 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 tempfile -import unittest -from unittest.mock import MagicMock, patch - -import yaml -from azext_aks_agent.agent.llm_config_manager import LLMConfigManager -from azure.cli.core.azclierror import AzCLIError - - -class TestLLMConfigManager(unittest.TestCase): - """Test cases for LLMConfigManager class.""" - - def setUp(self): - """Set up test fixtures.""" - self.temp_dir = tempfile.mkdtemp() - self.config_file = os.path.join(self.temp_dir, "test_config.yaml") - self.manager = LLMConfigManager() - self.manager.config_path = self.config_file - - def tearDown(self): - """Clean up test fixtures.""" - if os.path.exists(self.config_file): - os.unlink(self.config_file) - os.rmdir(self.temp_dir) - - def test_save_new_config(self): - """Test saving a new configuration when file doesn't exist.""" - config = { - "MODEL_NAME": "gpt-4", - "OPENAI_API_KEY": "test-key", - "OPENAI_API_BASE": "https://api.openai.com/v1" - } - - self.manager.save("openai", config) - - # Verify file was created and contains correct data - self.assertTrue(os.path.exists(self.config_file)) - with open(self.config_file, 'r') as f: - data = yaml.safe_load(f) - - self.assertIn("llms", data) - self.assertEqual(len(data["llms"]), 1) - expected_config = {"provider": "openai", **config} - self.assertEqual(data["llms"][0], expected_config) - - def test_save_append_to_existing_config(self): - """Test saving a configuration to an existing file.""" - # Create initial config - initial_config = { - "provider": "azure", - "MODEL_NAME": "gpt-3.5", - "AZURE_OPENAI_API_KEY": "initial-key" - } - initial_data = {"llms": [initial_config]} - - with open(self.config_file, 'w') as f: - yaml.safe_dump(initial_data, f) - - # Add new config - new_config = { - "MODEL_NAME": "gpt-4", - "OPENAI_API_KEY": "new-key" - } - - self.manager.save("openai", new_config) - - # Verify both configs exist - with open(self.config_file, 'r') as f: - data = yaml.safe_load(f) - - self.assertEqual(len(data["llms"]), 2) - self.assertEqual(data["llms"][0], initial_config) - expected_new_config = {"provider": "openai", **new_config} - self.assertEqual(data["llms"][1], expected_new_config) - - def test_save_creates_llms_key_if_missing(self): - """Test that save creates 'llms' key if config file exists but is malformed.""" - # Create config file without 'llms' key - malformed_data = {"other_key": "value"} - with open(self.config_file, 'w') as f: - yaml.safe_dump(malformed_data, f) - - config = {"MODEL_NAME": "gpt-4"} - self.manager.save("openai", config) - - with open(self.config_file, 'r') as f: - data = yaml.safe_load(f) - - self.assertIn("llms", data) - self.assertEqual(len(data["llms"]), 1) - expected_config = {"provider": "openai", **config} - self.assertEqual(data["llms"][0], expected_config) - - @patch("builtins.open", side_effect=IOError("Permission denied")) - def test_save_handles_file_write_error(self, mock_file): - """Test that save handles file write errors gracefully.""" - config = {"MODEL_NAME": "gpt-4"} - - with self.assertRaises(IOError): - self.manager.save("openai", config) - - def test_load_existing_file(self): - """Test loading configurations from an existing file.""" - configs = [ - {"provider": "openai", "MODEL_NAME": "gpt-4"}, - {"provider": "azure", "MODEL_NAME": "gpt-3.5"} - ] - data = {"llms": configs} - - with open(self.config_file, 'w') as f: - yaml.safe_dump(data, f) - - result = self.manager.load() - self.assertEqual(result, data) - - def test_load_handles_invalid_yaml(self): - """Test that load handles invalid YAML content.""" - # Write invalid YAML - with open(self.config_file, 'w') as f: - f.write("invalid: yaml: content: {\n") - - with self.assertRaises(yaml.YAMLError): - self.manager.load() - - def test_get_list_with_configs(self): - """Test get_list returns list of configurations.""" - configs = [ - {"provider": "openai", "MODEL_NAME": "gpt-4"}, - {"provider": "azure", "MODEL_NAME": "gpt-3.5"} - ] - data = {"llms": configs} - - with open(self.config_file, 'w') as f: - yaml.safe_dump(data, f) - - result = self.manager.get_list() - self.assertEqual(result, configs) - - def test_get_list_empty_file(self): - """Test get_list returns empty list when no configs exist.""" - result = self.manager.get_list() - self.assertEqual(result, []) - - def test_get_list_missing_llms_key(self): - """Test get_list handles missing 'llms' key gracefully.""" - data = {"other_key": "value"} - with open(self.config_file, 'w') as f: - yaml.safe_dump(data, f) - - result = self.manager.get_list() - self.assertEqual(result, []) - - def test_get_latest_with_configs(self): - """Test get_latest returns the most recent configuration.""" - configs = [ - {"provider": "openai", "MODEL_NAME": "gpt-3.5"}, - {"provider": "azure", "MODEL_NAME": "gpt-4"} - ] - data = {"llms": configs} - - with open(self.config_file, 'w') as f: - yaml.safe_dump(data, f) - - result = self.manager.get_latest() - self.assertEqual(result, configs[-1]) # Should return last config - - def test_get_latest_no_configs(self): - """Test get_latest returns None when no configurations exist.""" - result = self.manager.get_latest() - self.assertIsNone(result) - - def test_get_specific_found(self): - """Test get_specific returns correct config when found.""" - configs = [ - {"provider": "openai", "MODEL_NAME": "gpt-3.5"}, - {"provider": "azure", "MODEL_NAME": "gpt-4"}, - {"provider": "openai", "MODEL_NAME": "gpt-4"} - ] - data = {"llms": configs} - - with open(self.config_file, 'w') as f: - yaml.safe_dump(data, f) - - result = self.manager.get_specific("openai", "gpt-4") - self.assertEqual(result, configs[2]) - - def test_get_specific_not_found(self): - """Test get_specific returns None when config not found.""" - configs = [ - {"provider": "openai", "MODEL_NAME": "gpt-3.5"}, - {"provider": "azure", "MODEL_NAME": "gpt-4"} - ] - data = {"llms": configs} - - with open(self.config_file, 'w') as f: - yaml.safe_dump(data, f) - - result = self.manager.get_specific("openai", "gpt-4") - self.assertIsNone(result) - - def test_get_model_config_no_model_param_with_configs(self): - """Test get_model_config returns latest when no model specified.""" - configs = [ - {"provider": "openai", "MODEL_NAME": "gpt-3.5"}, - {"provider": "azure", "MODEL_NAME": "gpt-4"} - ] - data = {"llms": configs} - - with open(self.config_file, 'w') as f: - yaml.safe_dump(data, f) - - result = self.manager.get_model_config(None) - self.assertEqual(result, configs[-1]) - - def test_get_model_config_no_model_param_no_configs(self): - """Test get_model_config raises error when no model and no configs.""" - with self.assertRaises(AzCLIError) as cm: - self.manager.get_model_config(None) - - self.assertIn("No LLM configurations found", str(cm.exception)) - self.assertIn("az aks agent-init", str(cm.exception)) - - def test_get_model_config_with_provider_model(self): - """Test get_model_config with provider/model format.""" - configs = [ - {"provider": "openai", "MODEL_NAME": "gpt-3.5"}, - {"provider": "azure", "MODEL_NAME": "gpt-4"} - ] - data = {"llms": configs} - - with open(self.config_file, 'w') as f: - yaml.safe_dump(data, f) - - result = self.manager.get_model_config("azure/gpt-4") - self.assertEqual(result, configs[1]) - - def test_get_model_config_with_model_only(self): - """Test get_model_config with model only (defaults to openai).""" - configs = [ - {"provider": "openai", "MODEL_NAME": "gpt-4"}, - {"provider": "azure", "MODEL_NAME": "gpt-4"} - ] - data = {"llms": configs} - - with open(self.config_file, 'w') as f: - yaml.safe_dump(data, f) - - result = self.manager.get_model_config("gpt-4") - self.assertEqual(result, configs[0]) # Should find openai provider - - def test_get_model_config_model_not_found(self): - """Test get_model_config raises error when specified model not found.""" - configs = [ - {"provider": "openai", "MODEL_NAME": "gpt-3.5"} - ] - data = {"llms": configs} - - with open(self.config_file, 'w') as f: - yaml.safe_dump(data, f) - - with self.assertRaises(AzCLIError) as cm: - self.manager.get_model_config("azure/gpt-4") - - self.assertIn("No configuration found for model 'azure/gpt-4'", str(cm.exception)) - - def test_is_config_complete_all_valid(self): - """Test is_config_complete returns True when all validations pass.""" - config = { - "OPENAI_API_KEY": "test-key", - "MODEL_NAME": "gpt-4" - } - - provider_schema = { - "OPENAI_API_KEY": {"validator": lambda x: x and len(x) > 0}, - "MODEL_NAME": {"validator": lambda x: x and len(x) > 0} - } - - result = self.manager.is_config_complete(config, provider_schema) - self.assertTrue(result) - - def test_is_config_complete_missing_key(self): - """Test is_config_complete returns False when required key is missing.""" - config = { - "OPENAI_API_KEY": "test-key" - # Missing MODEL_NAME - } - - provider_schema = { - "OPENAI_API_KEY": {"validator": lambda x: x and len(x) > 0}, - "MODEL_NAME": {"validator": lambda x: x and len(x) > 0} - } - - result = self.manager.is_config_complete(config, provider_schema) - self.assertFalse(result) - - def test_is_config_complete_invalid_value(self): - """Test is_config_complete returns False when validation fails.""" - config = { - "OPENAI_API_KEY": "", # Empty string should fail validation - "MODEL_NAME": "gpt-4" - } - - provider_schema = { - "OPENAI_API_KEY": {"validator": lambda x: x and len(x) > 0}, - "MODEL_NAME": {"validator": lambda x: x and len(x) > 0} - } - - result = self.manager.is_config_complete(config, provider_schema) - self.assertFalse(result) - - def test_is_config_complete_no_validator(self): - """Test is_config_complete skips keys without validators.""" - config = { - "OPENAI_API_KEY": "test-key", - "MODEL_NAME": "gpt-4" - } - - provider_schema = { - "OPENAI_API_KEY": {}, # No validator - "MODEL_NAME": {"validator": lambda x: x and len(x) > 0} - } - - result = self.manager.is_config_complete(config, provider_schema) - self.assertTrue(result) - - def test_validate_config_valid_structure(self): - """Test validate_config with valid YAML structure.""" - valid_config = { - "llms": [ - {"provider": "openai", "MODEL_NAME": "gpt-4"} - ] - } - - # Write valid config to file - with open(self.config_file, 'w') as f: - yaml.safe_dump(valid_config, f) - - # Should not raise any exception - self.manager.validate_config() - - def test_validate_config_missing_llms_key(self): - """Test validate_config raises error when 'llms' key is missing.""" - invalid_config = { - "other_key": "value" - } - - # Write invalid config to file - with open(self.config_file, 'w') as f: - yaml.safe_dump(invalid_config, f) - - with self.assertRaises(ValueError) as cm: - self.manager.validate_config() - - self.assertIn("must contain an 'llms' key", str(cm.exception)) - - def test_validate_config_llms_not_list(self): - """Test validate_config raises error when 'llms' is not a list.""" - invalid_config = { - "llms": "not a list" - } - - # Write invalid config to file - with open(self.config_file, 'w') as f: - yaml.safe_dump(invalid_config, f) - - with self.assertRaises(ValueError) as cm: - self.manager.validate_config() - - self.assertIn("'llms' must be a list", str(cm.exception)) - - def test_validate_config_empty_llms_list(self): - """Test validate_config raises error when llms list is empty.""" - invalid_config = { - "llms": [] - } - - # Write config with empty llms list to file - with open(self.config_file, 'w') as f: - yaml.safe_dump(invalid_config, f) - - with self.assertRaises(ValueError) as cm: - self.manager.validate_config() - - self.assertIn("'llms' list cannot be empty", str(cm.exception)) - - def test_validate_config_file_not_found(self): - """Test validate_config raises error when config file doesn't exist.""" - # Don't create the config file, so it doesn't exist - with self.assertRaises(ValueError) as cm: - self.manager.validate_config() - - self.assertIn("Configuration file", str(cm.exception)) - self.assertIn("not found", str(cm.exception)) - - def test_validate_config_invalid_yaml(self): - """Test validate_config raises error for invalid YAML syntax.""" - # Write invalid YAML to file - with open(self.config_file, 'w') as f: - f.write("invalid: yaml: content: {\n") - - with self.assertRaises(ValueError) as cm: - self.manager.validate_config() - - self.assertIn("Invalid YAML syntax", str(cm.exception)) - - def test_validate_config_not_dict(self): - """Test validate_config raises error when config is not a dictionary.""" - # Write a list instead of dict to file - with open(self.config_file, 'w') as f: - yaml.safe_dump(["not", "a", "dict"], f) - - with self.assertRaises(ValueError) as cm: - self.manager.validate_config() - - self.assertIn("must contain a YAML dictionary/mapping", str(cm.exception)) - - def test_validate_config_llm_not_dict(self): - """Test validate_config raises error when LLM config is not a dictionary.""" - invalid_config = { - "llms": ["not a dict"] - } - - # Write config with non-dict LLM config to file - with open(self.config_file, 'w') as f: - yaml.safe_dump(invalid_config, f) - - with self.assertRaises(ValueError) as cm: - self.manager.validate_config() - - self.assertIn("each LLM configuration must be a dictionary/mapping", str(cm.exception)) - - @patch("azext_aks_agent.agent.llm_config_manager.get_config_dir") - def test_validate_config_skips_default_config_path(self, mock_get_config_dir): - """Test validate_config skips validation for default config path.""" - from azext_aks_agent._consts import CONST_AGENT_CONFIG_FILE_NAME - - # Mock the config directory to match our test setup - mock_get_config_dir.return_value = self.temp_dir - - # Set the manager to use the default config path - default_config_path = os.path.join(self.temp_dir, CONST_AGENT_CONFIG_FILE_NAME) - self.manager.config_path = default_config_path - - # Don't create the file - validation should be skipped for default path - # Should not raise any exception - self.manager.validate_config() - - def test_save_new_configuration(self): - """Test save method with new configuration.""" - provider_name = "openai" - params = { - "MODEL_NAME": "gpt-4", - "OPENAI_API_KEY": "test-key-123" - } - - self.manager.save(provider_name, params) - - # Verify the configuration was saved - with open(self.config_file, 'r') as f: - saved_config = yaml.safe_load(f) - - self.assertIn("llms", saved_config) - self.assertEqual(len(saved_config["llms"]), 1) - - saved_llm = saved_config["llms"][0] - self.assertEqual(saved_llm["provider"], provider_name) - self.assertEqual(saved_llm["MODEL_NAME"], "gpt-4") - self.assertEqual(saved_llm["OPENAI_API_KEY"], "test-key-123") - - def test_save_update_existing_configuration(self): - """Test save method updates existing configuration.""" - # First save - provider_name = "openai" - initial_params = { - "MODEL_NAME": "gpt-3.5-turbo", - "OPENAI_API_KEY": "old-key" - } - self.manager.save(provider_name, initial_params) - - # Update with same model name - updated_params = { - "MODEL_NAME": "gpt-3.5-turbo", - "OPENAI_API_KEY": "new-key" - } - self.manager.save(provider_name, updated_params) - - # Verify only one configuration exists and it's updated - with open(self.config_file, 'r') as f: - saved_config = yaml.safe_load(f) - - self.assertEqual(len(saved_config["llms"]), 1) - saved_llm = saved_config["llms"][0] - self.assertEqual(saved_llm["OPENAI_API_KEY"], "new-key") - - def test_save_azure_provider_uses_deployment_name(self): - """Test save method with Azure provider uses DEPLOYMENT_NAME.""" - provider_name = "azure" - params = { - "DEPLOYMENT_NAME": "my-gpt-4-deployment", - "AZURE_OPENAI_ENDPOINT": "https://test.openai.azure.com", - "AZURE_OPENAI_API_KEY": "azure-key" - } - - self.manager.save(provider_name, params) - - with open(self.config_file, 'r') as f: - saved_config = yaml.safe_load(f) - - saved_llm = saved_config["llms"][0] - self.assertEqual(saved_llm["provider"], "azure") - self.assertEqual(saved_llm["DEPLOYMENT_NAME"], "my-gpt-4-deployment") - - def test_save_azure_converts_model_name_to_deployment_name(self): - """Test save method converts MODEL_NAME to DEPLOYMENT_NAME for Azure.""" - # Setup existing config with MODEL_NAME - existing_config = { - "llms": [{ - "provider": "azure", - "MODEL_NAME": "gpt-4", - "AZURE_OPENAI_ENDPOINT": "https://test.openai.azure.com" - }] - } - with open(self.config_file, 'w') as f: - yaml.safe_dump(existing_config, f) - - # Save new Azure config - provider_name = "azure" - params = { - "DEPLOYMENT_NAME": "new-deployment", - "AZURE_OPENAI_ENDPOINT": "https://test2.openai.azure.com" - } - self.manager.save(provider_name, params) - - with open(self.config_file, 'r') as f: - saved_config = yaml.safe_load(f) - - # Verify existing config was converted and new one added - self.assertEqual(len(saved_config["llms"]), 2) - - # First config should have DEPLOYMENT_NAME now - first_llm = saved_config["llms"][0] - self.assertNotIn("MODEL_NAME", first_llm) - self.assertIn("DEPLOYMENT_NAME", first_llm) - self.assertEqual(first_llm["DEPLOYMENT_NAME"], "gpt-4") - - def test_save_missing_model_name_raises_error(self): - """Test save method raises error when MODEL_NAME is missing for non-Azure provider.""" - provider_name = "openai" - params = { - "OPENAI_API_KEY": "test-key" - # Missing MODEL_NAME - } - - with self.assertRaises(ValueError) as cm: - self.manager.save(provider_name, params) - - self.assertIn("MODEL_NAME is required", str(cm.exception)) - - def test_save_missing_deployment_name_raises_error(self): - """Test save method raises error when DEPLOYMENT_NAME is missing for Azure provider.""" - provider_name = "azure" - params = { - "AZURE_OPENAI_ENDPOINT": "https://test.openai.azure.com", - "AZURE_OPENAI_API_KEY": "test-key" - # Missing DEPLOYMENT_NAME - } - - with self.assertRaises(ValueError) as cm: - self.manager.save(provider_name, params) - - self.assertIn("DEPLOYMENT_NAME is required", str(cm.exception)) - - def test_save_appends_new_model_to_existing_list(self): - """Test save method appends new model to existing list.""" - # Setup existing config - existing_config = { - "llms": [{ - "provider": "openai", - "MODEL_NAME": "gpt-3.5-turbo", - "OPENAI_API_KEY": "key1" - }] - } - with open(self.config_file, 'w') as f: - yaml.safe_dump(existing_config, f) - - # Add different model - provider_name = "openai" - params = { - "MODEL_NAME": "gpt-4", - "OPENAI_API_KEY": "key2" - } - self.manager.save(provider_name, params) - - with open(self.config_file, 'r') as f: - saved_config = yaml.safe_load(f) - - # Should have both models - self.assertEqual(len(saved_config["llms"]), 2) - models = [llm["MODEL_NAME"] for llm in saved_config["llms"]] - self.assertIn("gpt-3.5-turbo", models) - self.assertIn("gpt-4", models) - - def test_save_handles_empty_config_file(self): - """Test save method handles empty config file.""" - # Create empty config file - with open(self.config_file, 'w') as f: - f.write("") - - provider_name = "openai" - params = { - "MODEL_NAME": "gpt-4", - "OPENAI_API_KEY": "test-key" - } - - self.manager.save(provider_name, params) - - with open(self.config_file, 'r') as f: - saved_config = yaml.safe_load(f) - - self.assertIn("llms", saved_config) - self.assertEqual(len(saved_config["llms"]), 1) - - @patch("azext_aks_agent.agent.llm_config_manager.PROVIDER_REGISTRY") - @patch("azext_aks_agent.agent.llm_config_manager.os.environ", new_callable=dict) - def test_export_model_config_sets_environment_variables(self, mock_environ, mock_registry): - """Test export_model_config sets environment variables.""" - # Mock provider - mock_provider_instance = MagicMock() - mock_provider_instance.model_name.return_value = "test-model" - mock_provider = MagicMock(return_value=mock_provider_instance) - mock_registry.get.return_value = mock_provider - - llm_config = { - "provider": "openai", - "MODEL_NAME": "gpt-4", - "OPENAI_API_KEY": "test-key", - } - - with patch("azext_aks_agent.agent.llm_config_manager.logger") as mock_logger: - result = self.manager.export_model_config(llm_config) - - # Verify environment variables were set - self.assertEqual(mock_environ["OPENAI_API_KEY"], "test-key") - self.assertNotIn("provider", mock_environ) - - # Verify provider was called correctly - mock_registry.get.assert_called_once_with("openai") - mock_provider_instance.model_name.assert_called_once_with("gpt-4") - - # Verify logging - mock_logger.info.assert_called_once() - - self.assertEqual(result, "test-model") - - @patch("azext_aks_agent.agent.llm_config_manager.PROVIDER_REGISTRY") - @patch("azext_aks_agent.agent.llm_config_manager.os.environ", new_callable=dict) - def test_export_model_config_azure_converts_model_name(self, mock_environ, mock_registry): - """Test export_model_config converts MODEL_NAME to DEPLOYMENT_NAME for Azure.""" - # Mock provider - mock_provider_instance = MagicMock() - mock_provider_instance.model_name.return_value = "azure-model" - mock_provider = MagicMock(return_value=mock_provider_instance) - mock_registry.get.return_value = mock_provider - - llm_config = { - "provider": "azure", - "MODEL_NAME": "gpt-4-legacy", # This should be converted - "AZURE_OPENAI_ENDPOINT": "https://test.openai.azure.com", - "AZURE_OPENAI_API_KEY": "azure-key" - } - - with patch("azext_aks_agent.agent.llm_config_manager.logger"): - result = self.manager.export_model_config(llm_config) - - # Verify MODEL_NAME was converted to DEPLOYMENT_NAME - self.assertNotIn("MODEL_NAME", llm_config) - self.assertIn("DEPLOYMENT_NAME", llm_config) - self.assertEqual(llm_config["DEPLOYMENT_NAME"], "gpt-4-legacy") - - # Verify environment variables - self.assertEqual(mock_environ["AZURE_OPENAI_API_KEY"], "azure-key") - self.assertEqual(mock_environ["AZURE_OPENAI_ENDPOINT"], "https://test.openai.azure.com") - - # Verify provider was called with deployment name - mock_provider_instance.model_name.assert_called_once_with("gpt-4-legacy") - - # Verify return value - self.assertEqual(result, "azure-model") - - @patch("azext_aks_agent.agent.llm_config_manager.PROVIDER_REGISTRY") - @patch("azext_aks_agent.agent.llm_config_manager.os.environ", new_callable=dict) - def test_export_model_config_azure_with_deployment_name(self, mock_environ, mock_registry): - """Test export_model_config with Azure provider using DEPLOYMENT_NAME.""" - # Mock provider - mock_provider_instance = MagicMock() - mock_provider_instance.model_name.return_value = "azure-deployment" - mock_provider = MagicMock(return_value=mock_provider_instance) - mock_registry.get.return_value = mock_provider - - llm_config = { - "provider": "azure", - "DEPLOYMENT_NAME": "my-gpt-4-deployment", - "AZURE_OPENAI_ENDPOINT": "https://test.openai.azure.com", - "AZURE_OPENAI_API_KEY": "azure-key" - } - - with patch("azext_aks_agent.agent.llm_config_manager.logger"): - result = self.manager.export_model_config(llm_config) - - # Verify DEPLOYMENT_NAME is preserved - self.assertEqual(llm_config["DEPLOYMENT_NAME"], "my-gpt-4-deployment") - self.assertEqual(mock_environ["AZURE_OPENAI_ENDPOINT"], "https://test.openai.azure.com") - - # Verify provider was called with deployment name - mock_provider_instance.model_name.assert_called_once_with("my-gpt-4-deployment") - - # Verify return value - self.assertEqual(result, "azure-deployment") - - @patch("azext_aks_agent.agent.llm_config_manager.PROVIDER_REGISTRY") - def test_export_model_config_non_azure_provider(self, mock_registry): - """Test export_model_config with non-Azure provider.""" - # Mock provider - mock_provider_instance = MagicMock() - mock_provider_instance.model_name.return_value = "openai-model" - mock_provider = MagicMock(return_value=mock_provider_instance) - mock_registry.get.return_value = mock_provider - - llm_config = { - "provider": "openai", - "MODEL_NAME": "gpt-4", - "OPENAI_API_KEY": "test-key" - } - - with patch("azext_aks_agent.agent.llm_config_manager.logger"): - with patch("azext_aks_agent.agent.llm_config_manager.os.environ", new_callable=dict): - result = self.manager.export_model_config(llm_config) - - # Verify MODEL_NAME is preserved for non-Azure providers - self.assertEqual(llm_config["MODEL_NAME"], "gpt-4") - - # Verify provider was called with model name - mock_provider_instance.model_name.assert_called_once_with("gpt-4") - - self.assertEqual(result, "openai-model") - - -if __name__ == '__main__': - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_llm_providers.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_llm_providers.py deleted file mode 100644 index 4e38ce1c266..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_llm_providers.py +++ /dev/null @@ -1,40 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -import unittest - -from azext_aks_agent.agent.llm_providers import ( - PROVIDER_REGISTRY, - AnthropicProvider, - AzureProvider, - GeminiProvider, - OpenAICompatibleProvider, - OpenAIProvider, -) - - -class TestLLMProviders(unittest.TestCase): - def test_provider_registry(self): - """Test that provider registry maps names to correct classes.""" - self.assertIs(PROVIDER_REGISTRY['azure'], AzureProvider) - self.assertIs(PROVIDER_REGISTRY['openai'], OpenAIProvider) - self.assertIs(PROVIDER_REGISTRY['anthropic'], AnthropicProvider) - self.assertIs(PROVIDER_REGISTRY['gemini'], GeminiProvider) - self.assertIs(PROVIDER_REGISTRY['openai_compatible'], OpenAICompatibleProvider) - - def test_provider_choices_numbered(self): - """Test numbered provider choices are correct and ordered.""" - from azext_aks_agent.agent.llm_providers import ( - _available_providers, - _provider_choices_numbered, - ) - choices = _provider_choices_numbered() - providers = _available_providers() - for idx, name in choices: - self.assertEqual(name, providers[idx - 1]().readable_name) - - -if __name__ == '__main__': - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_manager.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_manager.py new file mode 100644 index 00000000000..4509aebb23e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_manager.py @@ -0,0 +1,363 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +""" +Unit tests for AKSAgentManager. +""" + +import unittest +from unittest.mock import MagicMock, Mock, PropertyMock, patch + +from azext_aks_agent.agent.k8s.aks_agent_manager import AKSAgentManager +from kubernetes.client.rest import ApiException + + +class TestAKSAgentManager(unittest.TestCase): + """Test cases for AKSAgentManager.""" + + def setUp(self): + """Set up test fixtures.""" + self.namespace = "aks-agent" + self.resource_group = "test-rg" + self.cluster_name = "test-cluster" + self.subscription_id = "test-sub-id" + self.kubeconfig_path = "/mock/kubeconfig" + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_init_default_values(self, mock_helm_manager, mock_load_config, mock_init_client): + """Test AKSAgentManager initialization with default values.""" + manager = AKSAgentManager() + + self.assertEqual(manager.namespace, "kube-system") + self.assertEqual(manager.helm_release_name, "aks-agent") + self.assertIsNotNone(manager.llm_config_manager) + mock_init_client.assert_called_once() + mock_load_config.assert_called_once() + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_init_custom_values(self, mock_helm_manager, mock_load_config, mock_init_client): + """Test AKSAgentManager initialization with custom values.""" + manager = AKSAgentManager( + namespace=self.namespace, + kubeconfig_path=self.kubeconfig_path, + resource_group_name=self.resource_group, + cluster_name=self.cluster_name, + subscription_id=self.subscription_id + ) + + self.assertEqual(manager.namespace, self.namespace) + self.assertEqual(manager.kubeconfig_path, self.kubeconfig_path) + self.assertEqual(manager.resource_group_name, self.resource_group) + self.assertEqual(manager.cluster_name, self.cluster_name) + self.assertEqual(manager.subscription_id, self.subscription_id) + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_set_aks_context(self, mock_helm_manager, mock_load_config, mock_init_client): + """Test setting AKS context.""" + manager = AKSAgentManager() + + manager.set_aks_context( + resource_group_name=self.resource_group, + cluster_name=self.cluster_name, + subscription_id=self.subscription_id + ) + + self.assertEqual(manager.resource_group_name, self.resource_group) + self.assertEqual(manager.cluster_name, self.cluster_name) + self.assertEqual(manager.subscription_id, self.subscription_id) + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.client.CoreV1Api') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.config.load_kube_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_get_agent_pods_success(self, mock_helm_manager, mock_load_config, mock_load_kube, mock_core_api): + """Test getting agent pods successfully.""" + # Setup mock pods with Running status + mock_aks_agent_pod = Mock() + mock_aks_agent_pod.metadata.name = "aks-agent-pod-1" + mock_aks_agent_pod.status.phase = "Running" + + mock_aks_mcp_pod = Mock() + mock_aks_mcp_pod.metadata.name = "aks-mcp-pod-1" + mock_aks_mcp_pod.status.phase = "Running" + + # Mock pod lists for each label selector + mock_agent_pod_list = Mock() + mock_agent_pod_list.items = [mock_aks_agent_pod] + + mock_mcp_pod_list = Mock() + mock_mcp_pod_list.items = [mock_aks_mcp_pod] + + mock_api_instance = Mock() + # Return different pod lists for each call (agent pods, then mcp pods) + mock_api_instance.list_namespaced_pod.side_effect = [mock_agent_pod_list, mock_mcp_pod_list] + mock_core_api.return_value = mock_api_instance + + manager = AKSAgentManager() + success, result = manager.get_agent_pods() + + self.assertTrue(success) + self.assertIsInstance(result, list) + self.assertEqual(len(result), 2) + self.assertIn("aks-agent-pod-1", result) + self.assertIn("aks-mcp-pod-1", result) + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.client.CoreV1Api') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.config.load_kube_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_get_agent_pods_no_pods(self, mock_helm_manager, mock_load_config, mock_load_kube, mock_core_api): + """Test getting agent pods when no pods exist.""" + mock_pod_list = Mock() + mock_pod_list.items = [] + + mock_api_instance = Mock() + mock_api_instance.list_namespaced_pod.return_value = mock_pod_list + mock_core_api.return_value = mock_api_instance + + manager = AKSAgentManager() + success, result = manager.get_agent_pods() + + self.assertFalse(success) + self.assertIsInstance(result, str) + self.assertIn("No pods found", result) + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_check_llm_config_exists_true(self, mock_helm_manager, mock_load_config, mock_init_client): + """Test checking if LLM config exists - returns True when both secret and model_list exist.""" + manager = AKSAgentManager() + + # Mock the core_v1 API + mock_secret = Mock() + manager.core_v1 = Mock() + manager.core_v1.read_namespaced_secret.return_value = mock_secret + + # Set model_list to non-empty dict + manager.llm_config_manager.model_list = {"model1": {"provider": "openai"}} + + result = manager.check_llm_config_exists() + self.assertTrue(result) + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_check_llm_config_exists_false_empty_model_list(self, mock_helm_manager, mock_load_config, mock_init_client): + """Test checking if LLM config exists - returns False when secret exists but model_list is empty.""" + manager = AKSAgentManager() + + # Mock the core_v1 API + mock_secret = Mock() + manager.core_v1 = Mock() + manager.core_v1.read_namespaced_secret.return_value = mock_secret + + # Set model_list to empty dict + manager.llm_config_manager.model_list = {} + + result = manager.check_llm_config_exists() + self.assertFalse(result) + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_check_llm_config_exists_false_404(self, mock_helm_manager, mock_load_config, mock_init_client): + """Test checking if LLM config exists - returns False for 404.""" + manager = AKSAgentManager() + + # Mock the core_v1 API to raise ApiException with 404 + manager.core_v1 = Mock() + manager.core_v1.read_namespaced_secret.side_effect = ApiException(status=404) + + result = manager.check_llm_config_exists() + self.assertFalse(result) + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_check_llm_config_exists_raises_azcli_error(self, mock_helm_manager, mock_load_config, mock_init_client): + """Test checking if LLM config exists - raises AzCLIError for unexpected errors.""" + from azure.cli.core.azclierror import AzCLIError + + manager = AKSAgentManager() + + # Mock the core_v1 API to raise a generic exception + manager.core_v1 = Mock() + manager.core_v1.read_namespaced_secret.side_effect = ValueError("Unexpected error") + + with self.assertRaises(AzCLIError) as context: + manager.check_llm_config_exists() + + self.assertIn("Failed to check LLM config existence", str(context.exception)) + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._run_helm_command') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_deploy_agent_success(self, mock_helm_manager, mock_load_config, mock_init_client, mock_helm_cmd): + """Test successful agent deployment.""" + mock_helm_cmd.return_value = (True, "deployed successfully") + + manager = AKSAgentManager() + success, error_msg = manager.deploy_agent() + + self.assertTrue(success) + self.assertEqual(error_msg, "") + mock_helm_cmd.assert_called() + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._run_helm_command') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_deploy_agent_failure(self, mock_helm_manager, mock_load_config, mock_init_client, mock_helm_cmd): + """Test agent deployment failure returns False and error message.""" + mock_helm_cmd.return_value = (False, "deployment failed") + + manager = AKSAgentManager() + success, error_msg = manager.deploy_agent() + + self.assertFalse(success) + self.assertIn("deployment failed", error_msg) + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._run_helm_command') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_uninstall_agent_success_with_secret_deletion(self, mock_helm_manager, mock_load_config, + mock_init_client, mock_helm_cmd): + """Test successful agent uninstallation with secret deletion.""" + mock_helm_cmd.return_value = (True, "uninstalled successfully") + + manager = AKSAgentManager() + manager.delete_llm_config_secret = Mock() + + result = manager.uninstall_agent(delete_secret=True) + + self.assertTrue(result) + manager.delete_llm_config_secret.assert_called_once() + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._run_helm_command') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_uninstall_agent_success_without_secret_deletion(self, mock_helm_manager, mock_load_config, + mock_init_client, mock_helm_cmd): + """Test successful agent uninstallation without secret deletion.""" + mock_helm_cmd.return_value = (True, "uninstalled successfully") + + manager = AKSAgentManager() + manager.delete_llm_config_secret = Mock() + + result = manager.uninstall_agent(delete_secret=False) + + self.assertTrue(result) + manager.delete_llm_config_secret.assert_not_called() + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_create_llm_config_secret(self, mock_helm_manager, mock_load_config, mock_init_client): + """Test creating LLM config secret.""" + manager = AKSAgentManager() + manager.core_v1 = Mock() + manager.llm_config_manager = Mock() + manager.llm_config_manager.get_llm_model_secret_data.return_value = {"API_KEY": "encoded"} + manager.llm_config_manager.get_env_vars.return_value = [] + + # Mock existing secret check + manager.core_v1.read_namespaced_secret.side_effect = ApiException(status=404) + manager.core_v1.create_namespaced_secret.return_value = Mock() + + manager.create_llm_config_secret() + + manager.core_v1.create_namespaced_secret.assert_called_once() + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_delete_llm_config_secret(self, mock_helm_manager, mock_load_config, mock_init_client): + """Test deleting LLM config secret.""" + manager = AKSAgentManager() + manager.core_v1 = Mock() + manager.core_v1.delete_namespaced_secret.return_value = Mock() + + manager.delete_llm_config_secret() + + manager.core_v1.delete_namespaced_secret.assert_called_once() + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_get_default_cluster_role(self, mock_helm_manager, mock_load_config, mock_init_client): + """Test getting default cluster role.""" + manager = AKSAgentManager() + + cluster_role = manager.get_default_cluster_role() + + self.assertIsNotNone(cluster_role) + self.assertEqual(cluster_role.metadata.name, "aks-agent-aks-mcp") + self.assertIsNotNone(cluster_role.rules) + self.assertGreater(len(cluster_role.rules), 0) + + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._run_helm_command') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._init_k8s_client') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.AKSAgentManager._load_existing_helm_release_config') + @patch('azext_aks_agent.agent.k8s.aks_agent_manager.HelmManager') + def test_get_agent_status(self, mock_helm_manager, mock_load_config, mock_init_client, mock_helm_cmd): + """Test getting agent status.""" + import json + + # Mock helm commands + mock_helm_cmd.side_effect = [ + (True, json.dumps([{"name": "aks-agent", "status": "deployed"}])), + (True, json.dumps({"info": {"status": "deployed"}})) + ] + + manager = AKSAgentManager() + manager.core_v1 = Mock() + manager.apps_v1 = Mock() + + # Helper to create mock deployment + def create_deployment(name): + mock_dep = Mock() + mock_dep.metadata.name = name + mock_dep.status.replicas = mock_dep.status.ready_replicas = 1 + mock_dep.status.updated_replicas = mock_dep.status.available_replicas = 1 + return mock_dep + + # Helper to create mock pod + def create_pod(name): + mock_pod = Mock() + mock_pod.metadata.name = name + mock_pod.status.phase = "Running" + mock_pod.status.conditions = [Mock(type="Ready", status="True")] + return mock_pod + + # Mock deployments and pods + manager.apps_v1.list_namespaced_deployment.side_effect = [ + Mock(items=[create_deployment("aks-agent-deployment")]), + Mock(items=[create_deployment("aks-mcp-deployment")]) + ] + manager.core_v1.list_namespaced_pod.side_effect = [ + Mock(items=[create_pod("aks-agent-pod-1")]), + Mock(items=[create_pod("aks-mcp-pod-1")]) + ] + + status = manager.get_agent_status() + + self.assertIsNotNone(status) + self.assertIn("helm_status", status) + self.assertEqual(len(status["deployments"]), 2) + self.assertEqual(len(status["pods"]), 2) + + +if __name__ == '__main__': + unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_mcp_integration.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_mcp_integration.py deleted file mode 100644 index d62ab2911b1..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_mcp_integration.py +++ /dev/null @@ -1,319 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Tests for AKS Agent MCP integration functionality. -""" - -import asyncio -from unittest.mock import AsyncMock, Mock, patch - -import pytest - - -class TestAksAgentMCPIntegration: - """Test AKS Agent MCP integration functionality.""" - - def setup_method(self): - """Set up test fixtures.""" - self.mock_cmd = Mock() - self.mock_cmd.cli_ctx = Mock() - self.test_config_file = "~/.azure/aksAgent.config" - self.test_model = "gpt-4" - self.test_api_key = "test-key" - self.test_max_steps = 10 - - def test_initialize_mcp_manager_success(self): - """Test successful MCP manager initialization.""" - from azext_aks_agent.agent.agent import _initialize_mcp_manager - - with patch('azext_aks_agent.agent.mcp_manager.MCPManager') as mock_mcp_class: - mock_manager = Mock() - mock_mcp_class.return_value = mock_manager - - result = _initialize_mcp_manager(verbose=True) - - assert result == mock_manager - mock_mcp_class.assert_called_once_with(verbose=True) - - def test_initialize_mcp_manager_import_error(self): - """Test MCP manager initialization with import error.""" - from azext_aks_agent.agent.agent import _initialize_mcp_manager - from azext_aks_agent.agent.error_handler import MCPError - - with patch('azext_aks_agent.agent.mcp_manager.MCPManager', side_effect=ImportError("Module not found")): - with pytest.raises(MCPError) as exc_info: - _initialize_mcp_manager() - - assert "MCP manager initialization failed" in str(exc_info.value) - assert exc_info.value.error_code == "MCP_IMPORT" - assert "Ensure all required dependencies are installed" in exc_info.value.suggestions[0] - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @pytest.mark.asyncio - async def test_setup_mcp_mode_basic_workflow(self): - """Test basic MCP mode setup workflow without complex mocking.""" - from azext_aks_agent.agent.agent import _setup_mcp_mode - from azext_aks_agent.agent.binary_manager import BinaryStatus - - # Create a simple mock manager - mock_manager = Mock() - mock_manager.is_binary_available.return_value = True - mock_manager.validate_binary_version.return_value = True - mock_manager.start_server = AsyncMock(return_value=True) - mock_manager.get_server_url.return_value = "http://localhost:8003/sse" - - # Mock binary status - mock_binary_status = BinaryStatus(available=True, version_valid=True) - mock_manager.binary_manager.ensure_binary = AsyncMock(return_value=mock_binary_status) - - # Test with a non-existent config file (will use empty config) - with patch('pathlib.Path.exists', return_value=False), \ - patch('tempfile.NamedTemporaryFile') as mock_temp_file, \ - patch('yaml.dump') as mock_yaml_dump, \ - patch('os.unlink'): - - # Mock the temporary file context manager - mock_temp_file.return_value.__enter__.return_value.name = "/tmp/test_config.yaml" - - # This should fail because we haven't mocked Holmes Config.load_from_file, - # but that's expected - we're just testing the workflow doesn't crash - try: - await _setup_mcp_mode( - mock_manager, "nonexistent_config.yaml", "gpt-4", - "test-key", 10, verbose=False - ) - except Exception as e: - # Expected to fail at Config.load_from_file - assert "Config" in str(e) or "load_from_file" in str(e) or "ImportError" in str(e) - - # Verify the manager methods were called correctly - mock_manager.start_server.assert_called_once() - assert mock_manager.get_server_url.called - - # Check the content of the configuration that was passed to yaml.dump - if mock_yaml_dump.call_count > 0: - config_data = mock_yaml_dump.call_args[0][0] - - # Verify MCP server configuration is present - assert "mcp_servers" in config_data - assert "aks-mcp" in config_data["mcp_servers"] - assert config_data["mcp_servers"]["aks-mcp"]["url"] == "http://localhost:8003/sse" - - # Verify conflicting toolsets are disabled - assert "toolsets" in config_data - toolsets = config_data["toolsets"] - assert toolsets["aks/core"]["enabled"] is False - assert toolsets["kubernetes/core"]["enabled"] is False - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @pytest.mark.asyncio - async def test_setup_mcp_mode_binary_not_available(self): - """Test MCP mode setup when binary is not available and download fails.""" - from azext_aks_agent.agent.agent import _setup_mcp_mode - from azext_aks_agent.agent.binary_manager import BinaryStatus - from azext_aks_agent.agent.error_handler import BinaryError - - # Setup mocks - mock_manager = Mock() - mock_manager.is_binary_available.return_value = False - mock_manager.validate_binary_version.return_value = False - - # Mock failed binary download - mock_binary_status = BinaryStatus(available=False, error_message="Download failed") - mock_manager.binary_manager.ensure_binary = AsyncMock(return_value=mock_binary_status) - - # Test the function - with pytest.raises(BinaryError) as exc_info: - await _setup_mcp_mode( - mock_manager, self.test_config_file, self.test_model, - self.test_api_key, self.test_max_steps, verbose=True - ) - - assert "Binary setup failed" in str(exc_info.value) - assert exc_info.value.error_code == "BINARY_SETUP" - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @pytest.mark.asyncio - async def test_setup_mcp_mode_server_start_failure(self): - """Test MCP mode setup when server fails to start.""" - from azext_aks_agent.agent.agent import _setup_mcp_mode - from azext_aks_agent.agent.binary_manager import BinaryStatus - from azext_aks_agent.agent.error_handler import ServerError - - # Setup mocks - mock_manager = Mock() - mock_manager.is_binary_available.return_value = True - mock_manager.validate_binary_version.return_value = True - mock_manager.start_server = AsyncMock(return_value=False) - - mock_binary_status = BinaryStatus(available=True, version_valid=True) - mock_manager.binary_manager.ensure_binary = AsyncMock(return_value=mock_binary_status) - - # Test the function - with pytest.raises(ServerError) as exc_info: - await _setup_mcp_mode( - mock_manager, self.test_config_file, self.test_model, - self.test_api_key, self.test_max_steps, verbose=True - ) - - assert "Server startup failed" in str(exc_info.value) - assert exc_info.value.error_code == "SERVER_STARTUP" - - def test_error_handler_functionality(self): - """Test the enhanced error handling system.""" - from azext_aks_agent.agent.error_handler import ( - AgentErrorHandler, - BinaryError, - MCPError, - ServerError, - ) - - # Test MCP setup error handling - original_error = ConnectionError("Network connection failed") - mcp_error = AgentErrorHandler.handle_mcp_setup_error(original_error, "initialization") - - assert isinstance(mcp_error, MCPError) - assert "MCP setup failed during initialization" in str(mcp_error) - assert mcp_error.error_code == "MCP_SETUP" - assert "Check your internet connection" in mcp_error.suggestions - - # Test binary error handling - binary_error = AgentErrorHandler.handle_binary_error( - Exception("Download timeout"), "download" - ) - - assert isinstance(binary_error, BinaryError) - assert "Binary download failed" in str(binary_error) - assert binary_error.error_code == "BINARY_DOWNLOAD" - assert "Verify you have internet connectivity" in binary_error.suggestions - - # Test server error handling - server_error = AgentErrorHandler.handle_server_error( - Exception("Port in use"), "startup" - ) - - assert isinstance(server_error, ServerError) - assert "MCP server startup failed" in str(server_error) - assert server_error.error_code == "SERVER_STARTUP" - assert "Check if the MCP binary is available and executable" in server_error.suggestions - - # Test error message formatting - formatted_message = AgentErrorHandler.format_error_message(mcp_error) - assert "AKS Agent Error (MCP_SETUP)" in formatted_message - assert "Suggestions:" in formatted_message - assert "Try running without --aks-mcp" in formatted_message - - def test_setup_traditional_mode_config_loading(self): - """Test traditional mode setup with actual config loading.""" - import tempfile - - import yaml - from azext_aks_agent.agent.config_generator import ConfigurationGenerator - - # Create a temporary config file - test_config = { - "existing": "config", - "toolsets": { - "custom/toolset": {"enabled": True} - } - } - - with tempfile.NamedTemporaryFile(mode='w', suffix='.yaml', delete=False) as f: - yaml.dump(test_config, f) - config_file_path = f.name - - try: - # Test loading and processing config as dictionary - from pathlib import Path - - expanded_config_file = Path(config_file_path) - base_config_dict = {} - - if expanded_config_file.exists(): - with open(expanded_config_file, 'r') as f: - base_config_dict = yaml.safe_load(f) or {} - - # Use ConfigurationGenerator to create traditional config - traditional_config_dict = ConfigurationGenerator.generate_traditional_config(base_config_dict) - - # Verify the configuration was processed correctly - assert "toolsets" in traditional_config_dict - assert "existing" in traditional_config_dict - assert traditional_config_dict["existing"] == "config" - - # Verify traditional toolsets are enabled - toolsets = traditional_config_dict["toolsets"] - assert toolsets["aks/core"]["enabled"] is True - assert toolsets["kubernetes/core"]["enabled"] is True - assert toolsets["kubernetes/live-metrics"]["enabled"] is True - assert toolsets["custom/toolset"]["enabled"] is True - - # Verify no MCP servers are configured - assert "mcp_servers" not in traditional_config_dict - - finally: - Path(config_file_path).unlink() # Clean up temp file - - @patch('sys.stdin') - def test_aks_agent_calls_sync_implementation(self, mock_stdin): - """Test that aks_agent works with new synchronous implementation.""" - from azext_aks_agent.agent.agent import aks_agent - - # Mock stdin to avoid pytest capture issues - mock_stdin.isatty.return_value = True # No piped input - - # Call the function with use_aks_mcp=False to avoid MCP setup - try: - aks_agent( - self.mock_cmd, - "rg", - "cluster", - "test prompt", - self.test_model, - self.test_api_key, - self.test_max_steps, - self.test_config_file, - False, - False, - False, - False, - use_aks_mcp=False, - ) - except Exception as e: - # Expected to fail due to missing Holmes dependencies in test environment - # But it should fail gracefully without asyncio.run() errors - assert "cannot be called from a running event loop" not in str(e) - - @patch('sys.stdin') - def test_python_version_check(self, mock_stdin): - """Test that agent checks Python version requirement.""" - from azext_aks_agent.agent.agent import aks_agent - from knack.util import CLIError - - # Mock stdin to avoid pytest capture issues - mock_stdin.isatty.return_value = True # No piped input - - with patch('azext_aks_agent.agent.agent.sys') as mock_sys: - mock_sys.version_info = (3, 9, 0) # Below required version - - with pytest.raises(CLIError) as exc_info: - aks_agent( - self.mock_cmd, - "rg", - "cluster", - "test prompt", - self.test_model, - self.test_api_key, - self.test_max_steps, - self.test_config_file, - False, - False, - False, - False, - use_aks_mcp=False, - ) - - assert "upgrade the python version to 3.10" in str(exc_info.value) diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_mcp_manager.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_mcp_manager.py deleted file mode 100644 index f12c1bdc026..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_mcp_manager.py +++ /dev/null @@ -1,397 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -import asyncio -import os -import tempfile -import unittest -from unittest import IsolatedAsyncioTestCase -from unittest.mock import AsyncMock, Mock, patch - -import pytest -from azext_aks_agent.agent.mcp_manager import MCPManager - - -class TestMCPManager(unittest.TestCase): - - def setUp(self): - """Set up test fixtures.""" - self.test_config_dir = tempfile.mkdtemp() - # Create the bin subdirectory that would be expected - self.test_bin_dir = os.path.join(self.test_config_dir, 'bin') - os.makedirs(self.test_bin_dir, exist_ok=True) - - # Set up event loop for async tests - self.loop = asyncio.new_event_loop() - asyncio.set_event_loop(self.loop) - - def tearDown(self): - """Clean up test fixtures.""" - import shutil - - # Clean up async tasks - try: - self.loop.close() - except Exception: - pass - shutil.rmtree(self.test_config_dir, ignore_errors=True) - - @patch('azext_aks_agent.agent.mcp_manager.get_config_dir') - def test_mcp_manager_init_with_default_config_dir(self, mock_get_config_dir): - """Test MCP manager initialization with default config directory.""" - mock_get_config_dir.return_value = '/mock/config/dir' - - manager = MCPManager() - - self.assertEqual(manager.config_dir, '/mock/config/dir') - self.assertFalse(manager.verbose) - self.assertIsNotNone(manager.binary_manager) - # Check server process management initialization - self.assertIsNone(manager.server_process) - self.assertIsNone(manager.server_url) - self.assertIsNone(manager.server_port) - mock_get_config_dir.assert_called_once() - - def test_mcp_manager_init_with_custom_config_dir(self): - """Test MCP manager initialization with custom config directory.""" - manager = MCPManager(config_dir=self.test_config_dir, verbose=True) - - self.assertEqual(manager.config_dir, self.test_config_dir) - self.assertTrue(manager.verbose) - self.assertIsNotNone(manager.binary_manager) - # Check server process management initialization - self.assertIsNone(manager.server_process) - self.assertIsNone(manager.server_url) - self.assertIsNone(manager.server_port) - # Check that binary manager was initialized with correct path - expected_bin_path = os.path.join(self.test_config_dir, 'bin') - self.assertEqual(manager.binary_manager.install_dir, expected_bin_path) - - def test_is_binary_available_true(self): - """Test binary availability check when binary is available.""" - manager = MCPManager(config_dir=self.test_config_dir) - - with patch.object(manager.binary_manager, 'is_binary_available', return_value=True): - self.assertTrue(manager.is_binary_available()) - - def test_is_binary_available_false(self): - """Test binary availability check when binary is not available.""" - manager = MCPManager(config_dir=self.test_config_dir) - - with patch.object(manager.binary_manager, 'is_binary_available', return_value=False): - self.assertFalse(manager.is_binary_available()) - - def test_get_binary_version_with_version(self): - """Test getting binary version when version is available.""" - manager = MCPManager(config_dir=self.test_config_dir) - expected_version = "0.1.0" - - with patch.object(manager.binary_manager, 'get_binary_version', return_value=expected_version): - version = manager.get_binary_version() - self.assertEqual(version, expected_version) - - def test_get_binary_version_none(self): - """Test getting binary version when no version is available.""" - manager = MCPManager(config_dir=self.test_config_dir) - - with patch.object(manager.binary_manager, 'get_binary_version', return_value=None): - version = manager.get_binary_version() - self.assertIsNone(version) - - def test_get_binary_path(self): - """Test getting binary path.""" - manager = MCPManager(config_dir=self.test_config_dir) - expected_path = os.path.join(self.test_bin_dir, 'aks-mcp') - - with patch.object(manager.binary_manager, 'get_binary_path', return_value=expected_path): - path = manager.get_binary_path() - self.assertEqual(path, expected_path) - - def test_validate_binary_version_valid(self): - """Test binary version validation when version is valid.""" - manager = MCPManager(config_dir=self.test_config_dir) - - with patch.object(manager.binary_manager, 'validate_version', return_value=True): - self.assertTrue(manager.validate_binary_version()) - - def test_validate_binary_version_invalid(self): - """Test binary version validation when version is invalid.""" - manager = MCPManager(config_dir=self.test_config_dir) - - with patch.object(manager.binary_manager, 'validate_version', return_value=False): - self.assertFalse(manager.validate_binary_version()) - - -class TestMCPManagerServerLifecycle(IsolatedAsyncioTestCase): - """Test server lifecycle management functionality.""" - - def setUp(self): - """Set up test fixtures for server tests.""" - self.test_config_dir = tempfile.mkdtemp() - self.test_bin_dir = os.path.join(self.test_config_dir, 'bin') - os.makedirs(self.test_bin_dir, exist_ok=True) - - def tearDown(self): - """Clean up test fixtures.""" - import shutil - shutil.rmtree(self.test_config_dir, ignore_errors=True) - - def test_initial_server_state(self): - """Test initial server state after initialization.""" - manager = MCPManager(config_dir=self.test_config_dir) - - self.assertIsNone(manager.server_process) - self.assertIsNone(manager.server_url) - self.assertIsNone(manager.server_port) - self.assertFalse(manager.is_server_running()) - self.assertFalse(manager.is_server_healthy()) - self.assertIsNone(manager.get_server_url()) - self.assertIsNone(manager.get_server_port()) - - def test_find_available_port_default(self): - """Test finding available port starting from default.""" - manager = MCPManager(config_dir=self.test_config_dir) - - port = manager._find_available_port(8003) - self.assertGreaterEqual(port, 8003) - self.assertLess(port, 8103) # Should be within 100 port range - - def test_find_available_port_custom_start(self): - """Test finding available port with custom start port.""" - manager = MCPManager(config_dir=self.test_config_dir) - - port = manager._find_available_port(9000) - self.assertGreaterEqual(port, 9000) - self.assertLess(port, 9100) # Should be within 100 port range - - @patch('socket.socket') - def test_find_available_port_no_ports_available(self, mock_socket): - """Test exception when no ports are available.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # Mock all sockets to fail binding - mock_socket.return_value.__enter__.return_value.bind.side_effect = OSError("Port in use") - - with self.assertRaises(Exception) as cm: - manager._find_available_port(8003) - - self.assertIn("No available ports found", str(cm.exception)) - - def test_is_server_running_no_process(self): - """Test is_server_running when no process exists.""" - manager = MCPManager(config_dir=self.test_config_dir) - self.assertFalse(manager.is_server_running()) - - def test_is_server_running_with_process(self): - """Test is_server_running with active process.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # Mock an active process - mock_process = Mock() - mock_process.returncode = None # Process is still running - manager.server_process = mock_process - - self.assertTrue(manager.is_server_running()) - - def test_is_server_running_with_terminated_process(self): - """Test is_server_running with terminated process.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # Mock a terminated process - mock_process = Mock() - mock_process.returncode = 0 # Process has exited - manager.server_process = mock_process - - self.assertFalse(manager.is_server_running()) - - @patch('urllib.request.urlopen') - def test_is_server_healthy_success(self, mock_urlopen): - """Test server health check success.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # Setup server state - manager.server_process = Mock() - manager.server_process.returncode = None - manager.server_url = "http://localhost:8003/sse" - - # Mock successful HTTP response - mock_response = Mock() - mock_response.status = 200 - mock_urlopen.return_value.__enter__.return_value = mock_response - - self.assertTrue(manager.is_server_healthy()) - mock_urlopen.assert_called_once_with("http://localhost:8003/sse", timeout=3) - - @patch('urllib.request.urlopen') - def test_is_server_healthy_http_error(self, mock_urlopen): - """Test server health check HTTP error.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # Setup server state - manager.server_process = Mock() - manager.server_process.returncode = None - manager.server_url = "http://localhost:8003/sse" - - # Mock HTTP error - import urllib.error - mock_urlopen.side_effect = urllib.error.HTTPError( - "http://localhost:8003/sse", 500, "Server Error", {}, None - ) - - self.assertFalse(manager.is_server_healthy()) - - def test_is_server_healthy_no_url(self): - """Test server health check when no URL is set.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # Setup server process but no URL - manager.server_process = Mock() - manager.server_process.returncode = None - # manager.server_url remains None - - self.assertFalse(manager.is_server_healthy()) - - def test_is_server_healthy_not_running(self): - """Test server health check when server is not running.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # No server process - self.assertFalse(manager.is_server_healthy()) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @patch('azext_aks_agent.agent.mcp_manager.asyncio.create_subprocess_exec') - @patch('azext_aks_agent.agent.mcp_manager.asyncio.sleep') - async def test_start_server_success(self, mock_sleep, mock_create_subprocess): - """Test successful server start.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # Mock binary availability - with patch.object(manager, 'is_binary_available', return_value=True): - with patch.object(manager, 'get_binary_path', return_value='/fake/aks-mcp'): - with patch.object(manager, '_find_available_port', return_value=8003): - with patch.object(manager, 'is_server_healthy', return_value=True): - - # Mock subprocess creation - mock_process = AsyncMock() - mock_create_subprocess.return_value = mock_process - - result = await manager.start_server() - - self.assertTrue(result) - self.assertEqual(manager.server_process, mock_process) - self.assertEqual(manager.server_url, "http://localhost:8003/sse") - self.assertEqual(manager.server_port, 8003) - - # Verify subprocess was called correctly - mock_create_subprocess.assert_called_once() - args = mock_create_subprocess.call_args[0] - self.assertEqual(args, ('/fake/aks-mcp', '--transport', 'sse', '--port', '8003')) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @patch('azext_aks_agent.agent.mcp_manager.asyncio.create_subprocess_exec') - @patch('azext_aks_agent.agent.mcp_manager.asyncio.sleep') - async def test_start_server_already_running_and_healthy(self, mock_sleep, mock_create_subprocess): - """Test start_server when server is already running and healthy.""" - manager = MCPManager(config_dir=self.test_config_dir, verbose=True) - - with patch.object(manager, 'is_binary_available', return_value=True): - with patch.object(manager, 'is_server_running', return_value=True): - with patch.object(manager, 'is_server_healthy', return_value=True): - with patch('azext_aks_agent.agent.user_feedback.ProgressReporter.show_status_message') as mock_progress: - - result = await manager.start_server() - - self.assertTrue(result) - # Should not create new subprocess - mock_create_subprocess.assert_not_called() - # Should show status message in verbose mode - mock_progress.assert_called_with("MCP server is already running and healthy", "info") - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - async def test_start_server_unhealthy_restart(self): - """Test start_server restarts unhealthy running server.""" - manager = MCPManager(config_dir=self.test_config_dir) - - with patch.object(manager, 'is_binary_available', return_value=True): - with patch.object(manager, 'is_server_running', return_value=True): - with patch.object(manager, 'is_server_healthy', return_value=False): - with patch.object(manager, 'stop_server') as mock_stop: - with patch.object(manager, '_find_available_port', return_value=8003): - with patch.object(manager, 'get_binary_path', return_value='/fake/aks-mcp'): - with patch('azext_aks_agent.agent.mcp_manager.asyncio.create_subprocess_exec') as mock_create: - with patch('azext_aks_agent.agent.mcp_manager.asyncio.sleep'): - - # Mock the health check to fail first time, succeed second time - health_calls = [False, True] - - def side_effect(*args, **kwargs): - return health_calls.pop(0) if health_calls else True - - with patch.object(manager, 'is_server_healthy', side_effect=side_effect): - mock_process = AsyncMock() - mock_create.return_value = mock_process - - result = await manager.start_server() - - self.assertTrue(result) - mock_stop.assert_called_once() - - def test_stop_server_no_process(self): - """Test stop_server when no process exists.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # Should not raise exception - manager.stop_server() - - self.assertIsNone(manager.server_process) - self.assertIsNone(manager.server_url) - self.assertIsNone(manager.server_port) - - def test_get_server_url_running(self): - """Test get_server_url when server is running.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # Mock running server - manager.server_process = Mock() - manager.server_process.returncode = None - manager.server_url = "http://localhost:8003/sse" - - self.assertEqual(manager.get_server_url(), "http://localhost:8003/sse") - - def test_get_server_url_not_running(self): - """Test get_server_url when server is not running.""" - manager = MCPManager(config_dir=self.test_config_dir) - - self.assertIsNone(manager.get_server_url()) - - def test_get_server_port_running(self): - """Test get_server_port when server is running.""" - manager = MCPManager(config_dir=self.test_config_dir) - - # Mock running server - manager.server_process = Mock() - manager.server_process.returncode = None - manager.server_port = 8003 - - self.assertEqual(manager.get_server_port(), 8003) - - def test_get_server_port_not_running(self): - """Test get_server_port when server is not running.""" - manager = MCPManager(config_dir=self.test_config_dir) - - self.assertIsNone(manager.get_server_port()) - - -if __name__ == '__main__': - # Run tests including async tests - loader = unittest.TestLoader() - suite = unittest.TestSuite() - - # Add regular test cases - suite.addTests(loader.loadTestsFromTestCase(TestMCPManager)) - suite.addTests(loader.loadTestsFromTestCase(TestMCPManagerServerLifecycle)) - - runner = unittest.TextTestRunner(verbosity=2) - result = runner.run(suite) diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_parameters.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_parameters.py deleted file mode 100644 index 7f47ac3cb76..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_parameters.py +++ /dev/null @@ -1,71 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Tests for AKS Agent parameter parsing and validation. -""" - -import unittest - - -class TestAksAgentParameters(unittest.TestCase): - """Test AKS Agent parameter parsing and functionality.""" - - def test_agent_function_signature_includes_use_aks_mcp(self): - """Test that the agent function includes use_aks_mcp parameter.""" - import inspect - from azext_aks_agent.agent.agent import aks_agent - - # Get function signature - sig = inspect.signature(aks_agent) - - # Verify use_aks_mcp parameter exists - self.assertIn("use_aks_mcp", sig.parameters) - - # Verify default value is False - param = sig.parameters["use_aks_mcp"] - self.assertEqual(param.default, False) - - def test_custom_function_signature_includes_use_aks_mcp(self): - """Test that the custom.py function includes use_aks_mcp parameter.""" - import inspect - from azext_aks_agent.custom import aks_agent - - # Get function signature - sig = inspect.signature(aks_agent) - - # Verify use_aks_mcp parameter exists - self.assertIn("use_aks_mcp", sig.parameters) - - # Verify default value is False - param = sig.parameters["use_aks_mcp"] - self.assertEqual(param.default, False) - - def test_parameter_boolean_type(self): - """Test that use_aks_mcp parameter behaves as a boolean flag.""" - # Test default value behavior - import inspect - from azext_aks_agent.agent.agent import aks_agent - - sig = inspect.signature(aks_agent) - param = sig.parameters["use_aks_mcp"] - - # Should have a default value of False - self.assertIsInstance(param.default, bool) - self.assertFalse(param.default) - - def test_parameter_docstring_updated(self): - """Test that the function docstring includes the new parameter.""" - from azext_aks_agent.agent.agent import aks_agent - - # Check if docstring mentions the new parameter - docstring = aks_agent.__doc__ - self.assertIsNotNone(docstring, "Function should have a docstring") - self.assertIn("use_aks_mcp", docstring, "Docstring should mention use_aks_mcp parameter") - self.assertIn("MCP", docstring, "Docstring should mention MCP") - - -if __name__ == '__main__': - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_smart_refresh.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_smart_refresh.py deleted file mode 100644 index ce3c531461e..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_smart_refresh.py +++ /dev/null @@ -1,218 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Tests for AKS Agent Smart Refresh Strategy functionality. -""" - -import os -import tempfile -import unittest -from unittest.mock import Mock, patch, mock_open - - -class TestAksAgentSmartRefresh(unittest.TestCase): - """Test AKS Agent Smart Refresh Strategy functionality.""" - - def setUp(self): - """Set up test fixtures.""" - self.mock_cmd = Mock() - self.mock_cmd.cli_ctx = Mock() - self.test_config_file = "~/.azure/aksAgent.config" - self.test_model = "gpt-4" - self.test_api_key = "test-key" - self.test_max_steps = 10 - - # Create temporary state file for testing - self.temp_dir = tempfile.mkdtemp() - self.test_state_file = os.path.join(self.temp_dir, "aks_agent_mode_state") - - def tearDown(self): - """Clean up test fixtures.""" - # Clean up temporary files - if os.path.exists(self.test_state_file): - os.unlink(self.test_state_file) - os.rmdir(self.temp_dir) - - @patch('azext_aks_agent.agent.agent.get_config_dir') - def test_get_mode_state_file(self, mock_get_config_dir): - """Test getting the mode state file path.""" - from azext_aks_agent.agent.agent import _get_mode_state_file - - mock_get_config_dir.return_value = "/test/config" - result = _get_mode_state_file() - - self.assertEqual(result, "/test/config/aks_agent_mode_state") - mock_get_config_dir.assert_called_once() - - @patch('azext_aks_agent.agent.agent._get_mode_state_file') - def test_get_last_mode_unknown(self, mock_get_state_file): - """Test getting last mode when no state file exists.""" - from azext_aks_agent.agent.agent import _get_last_mode - - mock_get_state_file.return_value = "/nonexistent/state/file" - result = _get_last_mode() - - self.assertEqual(result, "unknown") - - @patch('azext_aks_agent.agent.agent._get_mode_state_file') - def test_get_last_mode_valid(self, mock_get_state_file): - """Test getting last mode with valid state file.""" - from azext_aks_agent.agent.agent import _get_last_mode - - mock_get_state_file.return_value = self.test_state_file - - # Create state file with 'mcp' mode - with open(self.test_state_file, 'w') as f: - f.write("mcp") - - result = _get_last_mode() - self.assertEqual(result, "mcp") - - @patch('azext_aks_agent.agent.agent._get_mode_state_file') - def test_get_last_mode_invalid_content(self, mock_get_state_file): - """Test getting last mode with invalid state file content.""" - from azext_aks_agent.agent.agent import _get_last_mode - - mock_get_state_file.return_value = self.test_state_file - - # Create state file with invalid content - with open(self.test_state_file, 'w') as f: - f.write("invalid_mode") - - result = _get_last_mode() - self.assertEqual(result, "unknown") - - @patch('azext_aks_agent.agent.agent._get_mode_state_file') - def test_get_last_mode_io_error(self, mock_get_state_file): - """Test getting last mode handles IO errors gracefully.""" - from azext_aks_agent.agent.agent import _get_last_mode - - mock_get_state_file.return_value = self.test_state_file - - # Create state file with restricted permissions - with open(self.test_state_file, 'w') as f: - f.write("mcp") - os.chmod(self.test_state_file, 0o000) # No permissions - - try: - result = _get_last_mode() - self.assertEqual(result, "unknown") - finally: - # Restore permissions for cleanup - os.chmod(self.test_state_file, 0o644) - - @patch('azext_aks_agent.agent.agent._get_mode_state_file') - def test_save_current_mode_success(self, mock_get_state_file): - """Test saving current mode successfully.""" - from azext_aks_agent.agent.agent import _save_current_mode - - mock_get_state_file.return_value = self.test_state_file - - _save_current_mode("mcp") - - # Verify the file was written correctly - with open(self.test_state_file, 'r') as f: - content = f.read().strip() - self.assertEqual(content, "mcp") - - @patch('azext_aks_agent.agent.agent._get_mode_state_file') - def test_save_current_mode_invalid_mode(self, mock_get_state_file): - """Test saving invalid mode does nothing.""" - from azext_aks_agent.agent.agent import _save_current_mode - - mock_get_state_file.return_value = self.test_state_file - - _save_current_mode("invalid_mode") - - # Verify no file was created - self.assertFalse(os.path.exists(self.test_state_file)) - - @patch('azext_aks_agent.agent.agent._get_mode_state_file') - @patch('os.makedirs') - def test_save_current_mode_creates_directory(self, mock_makedirs, mock_get_state_file): - """Test saving mode creates directory if needed.""" - from azext_aks_agent.agent.agent import _save_current_mode - - state_file_path = "/test/new/dir/aks_agent_mode_state" - mock_get_state_file.return_value = state_file_path - - with patch('builtins.open', mock_open()) as mock_file: - _save_current_mode("traditional") - - # Verify directory creation was attempted - mock_makedirs.assert_called_once_with("/test/new/dir", exist_ok=True) - mock_file.assert_called_once_with(state_file_path, 'w') - - @patch('azext_aks_agent.agent.agent._get_last_mode') - def test_should_refresh_toolsets_first_run(self, mock_get_last_mode): - """Test refresh decision on first run (unknown state).""" - from azext_aks_agent.agent.agent import _should_refresh_toolsets - - mock_get_last_mode.return_value = "unknown" - - result = _should_refresh_toolsets("mcp", False) - self.assertTrue(result) - - @patch('azext_aks_agent.agent.agent._get_last_mode') - def test_should_refresh_toolsets_mode_transition(self, mock_get_last_mode): - """Test refresh decision on mode transition.""" - from azext_aks_agent.agent.agent import _should_refresh_toolsets - - mock_get_last_mode.return_value = "traditional" - - # Switching from traditional to MCP - result = _should_refresh_toolsets("mcp", False) - self.assertTrue(result) - - @patch('azext_aks_agent.agent.agent._get_last_mode') - def test_should_refresh_toolsets_same_mode(self, mock_get_last_mode): - """Test refresh decision when staying in same mode.""" - from azext_aks_agent.agent.agent import _should_refresh_toolsets - - mock_get_last_mode.return_value = "mcp" - - # Staying in MCP mode - result = _should_refresh_toolsets("mcp", False) - self.assertFalse(result) - - @patch('azext_aks_agent.agent.agent._get_last_mode') - def test_should_refresh_toolsets_user_request(self, mock_get_last_mode): - """Test refresh decision honors explicit user request.""" - from azext_aks_agent.agent.agent import _should_refresh_toolsets - - mock_get_last_mode.return_value = "mcp" - - # User explicitly requested refresh, even in same mode - result = _should_refresh_toolsets("mcp", True) - self.assertTrue(result) - - def test_should_refresh_toolsets_all_scenarios(self): - """Test all combinations of refresh decision logic.""" - from azext_aks_agent.agent.agent import _should_refresh_toolsets - - test_cases = [ - # (last_mode, requested_mode, user_refresh, expected_result, description) - ("unknown", "mcp", False, True, "First run - MCP"), - ("unknown", "traditional", False, True, "First run - Traditional"), - ("mcp", "mcp", False, False, "Same mode - MCP"), - ("traditional", "traditional", False, False, "Same mode - Traditional"), - ("mcp", "traditional", False, True, "Mode transition - MCP to Traditional"), - ("traditional", "mcp", False, True, "Mode transition - Traditional to MCP"), - ("mcp", "mcp", True, True, "User request - Same mode MCP"), - ("traditional", "traditional", True, True, "User request - Same mode Traditional"), - ("mcp", "traditional", True, True, "User request - Mode transition"), - ] - - for last_mode, requested_mode, user_refresh, expected, description in test_cases: - with self.subTest(description=description): - with patch('azext_aks_agent.agent.agent._get_last_mode', return_value=last_mode): - result = _should_refresh_toolsets(requested_mode, user_refresh) - self.assertEqual(result, expected, f"Failed for {description}") - - -if __name__ == '__main__': - unittest.main() - diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_status.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_status.py deleted file mode 100644 index 5c3c76ff6f6..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_status.py +++ /dev/null @@ -1,404 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Unit tests for agent status collection functionality. -""" - -import json -import os -import tempfile -from datetime import datetime, timedelta -from unittest.mock import Mock, patch - -import pytest -from azext_aks_agent.agent.status import AgentStatusManager -from azext_aks_agent.agent.status_models import ( - AgentStatus, - BinaryStatus, - ConfigStatus, - ServerStatus, -) - - -class TestAgentStatusManager: - """Test cases for AgentStatusManager.""" - - def setup_method(self): - """Set up test fixtures.""" - self.temp_dir = tempfile.mkdtemp() - self.status_manager = AgentStatusManager(config_dir=self.temp_dir) - - def teardown_method(self): - """Clean up test fixtures.""" - import shutil - shutil.rmtree(self.temp_dir, ignore_errors=True) - - def test_status_manager_init_with_default_config_dir(self): - """Test initialization with default config directory.""" - with patch('azext_aks_agent.agent.status.get_config_dir') as mock_get_config_dir: - mock_get_config_dir.return_value = '/mock/config/dir' - - manager = AgentStatusManager() - - assert manager.config_dir == '/mock/config/dir' - mock_get_config_dir.assert_called_once() - - def test_status_manager_init_with_custom_config_dir(self): - """Test initialization with custom config directory.""" - custom_dir = '/custom/config/dir' - manager = AgentStatusManager(config_dir=custom_dir) - - assert manager.config_dir == custom_dir - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @pytest.mark.asyncio - @patch('azext_aks_agent.agent.status.psutil') - async def test_get_status_success(self, mock_psutil): - """Test successful status collection.""" - # Mock binary manager - with patch.object(self.status_manager.binary_manager, 'get_binary_path') as mock_path, \ - patch.object(self.status_manager.binary_manager, 'get_binary_version') as mock_version, \ - patch.object(self.status_manager.binary_manager, 'validate_version') as mock_validate, \ - patch('os.path.exists') as mock_exists: - - mock_path.return_value = '/mock/binary/path' - mock_version.return_value = '1.0.0' - mock_validate.return_value = True - mock_exists.return_value = True - - # Mock process info - mock_process = Mock() - mock_process.create_time.return_value = datetime.now().timestamp() - 3600 # 1 hour ago - mock_psutil.Process.return_value = mock_process - - # Mock file stats - with patch('os.stat') as mock_stat, \ - patch('os.path.getmtime') as mock_getmtime: - - mock_stat.return_value.st_size = 1024 - mock_stat.return_value.st_mtime = datetime.now().timestamp() - mock_getmtime.return_value = datetime.now().timestamp() - - status = await self.status_manager.get_status() - - assert isinstance(status, AgentStatus) - assert isinstance(status.mcp_binary, BinaryStatus) - assert isinstance(status.server, ServerStatus) - assert isinstance(status.config, ConfigStatus) - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @pytest.mark.asyncio - async def test_get_status_with_error(self): - """Test status collection with error.""" - # Mock determine_current_mode to raise exception - with patch.object(self.status_manager, '_determine_current_mode', side_effect=Exception("Test error")): - - status = await self.status_manager.get_status() - - assert status.mode == "error" - assert "Status collection failed" in status.error_message - - def test_get_mcp_binary_status_available(self): - """Test MCP binary status when binary is available.""" - with patch.object(self.status_manager.binary_manager, 'get_binary_path') as mock_path, \ - patch.object(self.status_manager.binary_manager, 'get_binary_version') as mock_version, \ - patch.object(self.status_manager.binary_manager, 'validate_version') as mock_validate, \ - patch('os.path.exists') as mock_exists, \ - patch('azext_aks_agent.agent.status_models.BinaryStatus.from_file_path') as mock_from_path: - - mock_path.return_value = '/mock/binary/path' - mock_version.return_value = '1.0.0' - mock_validate.return_value = True - mock_exists.return_value = True - - expected_status = BinaryStatus(available=True, version='1.0.0', version_valid=True) - mock_from_path.return_value = expected_status - - result = self.status_manager._get_mcp_binary_status() - - assert result == expected_status - mock_from_path.assert_called_once_with('/mock/binary/path', version='1.0.0', version_valid=True) - - def test_get_mcp_binary_status_not_available(self): - """Test MCP binary status when binary is not available.""" - with patch.object(self.status_manager.binary_manager, 'get_binary_path', return_value='/mock/bin'), \ - patch('os.path.exists', return_value=False): - - result = self.status_manager._get_mcp_binary_status() - - assert not result.available - assert result.path == '/mock/bin' - assert result.error_message == 'Binary not found' - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @pytest.mark.asyncio - @patch('azext_aks_agent.agent.status.MCPManager') - @patch('azext_aks_agent.agent.status.psutil') - async def test_get_server_status_running_healthy(self, mock_psutil, mock_mcp_manager_class): - """Test server status when server is running and healthy.""" - # Mock MCP manager instance - mock_manager = Mock() - mock_manager.is_server_running.return_value = True - mock_manager.is_server_healthy.return_value = True - mock_manager.get_server_url.return_value = 'http://localhost:8003/sse' - mock_manager.get_server_port.return_value = 8003 - mock_manager.server_process = Mock() - mock_manager.server_process.pid = 12345 - - mock_mcp_manager_class.return_value = mock_manager - - # Mock process info - mock_process = Mock() - start_time = datetime.now() - timedelta(hours=1) - mock_process.create_time.return_value = start_time.timestamp() - mock_psutil.Process.return_value = mock_process - - result = await self.status_manager._get_server_status() - - assert result.running - assert result.healthy - assert result.url == 'http://localhost:8003/sse' - assert result.port == 8003 - assert result.pid == 12345 - assert result.uptime is not None - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @pytest.mark.asyncio - @patch('azext_aks_agent.agent.status.MCPManager') - async def test_get_server_status_not_running(self, mock_mcp_manager_class): - """Test server status when server is not running.""" - # Mock MCP manager instance - mock_manager = Mock() - mock_manager.is_server_running.return_value = False - mock_mcp_manager_class.return_value = mock_manager - - result = await self.status_manager._get_server_status() - - assert not result.running - assert not result.healthy - assert result.url is None - assert result.port is None - assert result.pid is None - - @pytest.mark.skip(reason="The async test is currently not supported in test pipeline.") - @pytest.mark.asyncio - @patch('azext_aks_agent.agent.status.MCPManager') - async def test_get_server_status_with_exception(self, mock_mcp_manager_class): - """Test server status collection with exception.""" - mock_mcp_manager_class.side_effect = Exception("Test error") - - result = await self.status_manager._get_server_status() - - assert not result.running - assert not result.healthy - assert "Server status check failed" in result.error_message - - def test_get_configuration_status_mcp_mode(self): - """Test configuration status in MCP mode.""" - # Create mock state file - state_file_path = os.path.join(self.temp_dir, "aks_agent_mode_state") - with open(state_file_path, 'w') as f: - json.dump({"last_mode": "mcp"}, f) - - # Create mock config file - config_file_path = os.path.join(self.temp_dir, "aksAgent.yaml") - config_data = { - "toolsets": { - "aks/core": {"enabled": False}, - "kubernetes/core": {"enabled": False} - }, - "mcp_servers": { - "aks-mcp": {"url": "http://localhost:8003/sse"} - } - } - with open(config_file_path, 'w') as f: - json.dump(config_data, f) - - with patch('azext_aks_agent.agent.status.ConfigurationGenerator.validate_mcp_config') as mock_validate: - mock_validate.return_value = True - - result = self.status_manager._get_configuration_status() - - assert result.mode == "mcp" - assert result.config_valid - assert len(result.mcp_servers) == 1 - assert "aks-mcp" in result.mcp_servers - - def test_get_configuration_status_traditional_mode(self): - """Test configuration status in traditional mode.""" - # Create mock state file - state_file_path = os.path.join(self.temp_dir, "aks_agent_mode_state") - with open(state_file_path, 'w') as f: - json.dump({"last_mode": "traditional"}, f) - - with patch('azext_aks_agent.agent.status.ConfigurationGenerator.validate_traditional_config') as mock_validate: - mock_validate.return_value = True - - result = self.status_manager._get_configuration_status() - - assert result.mode == "traditional" - assert result.config_valid - - def test_get_configuration_status_with_exception(self): - """Test configuration status collection with exception.""" - with patch('os.path.exists', side_effect=Exception("Test error")): - - result = self.status_manager._get_configuration_status() - - assert result.mode == "unknown" - assert not result.config_valid - assert "Configuration status check failed" in result.error_message - - def test_determine_current_mode_mcp(self): - """Test mode determination for MCP mode.""" - config_status = ConfigStatus(mode="mcp") - binary_status = BinaryStatus(available=True, version_valid=True) - server_status = ServerStatus(running=True) - - result = self.status_manager._determine_current_mode(config_status, binary_status, server_status) - - assert result == "mcp" - - def test_determine_current_mode_traditional(self): - """Test mode determination for traditional mode.""" - config_status = ConfigStatus(mode="traditional") - binary_status = BinaryStatus(available=False) - server_status = ServerStatus(running=False) - - result = self.status_manager._determine_current_mode(config_status, binary_status, server_status) - - assert result == "traditional" - - def test_determine_current_mode_inferred_mcp(self): - """Test mode determination inferred as MCP from component status.""" - config_status = ConfigStatus(mode="unknown") - binary_status = BinaryStatus(available=True, version_valid=True) - server_status = ServerStatus(running=True) - - result = self.status_manager._determine_current_mode(config_status, binary_status, server_status) - - assert result == "mcp" - - def test_determine_current_mode_mcp_available(self): - """Test mode determination for MCP available but server not running.""" - config_status = ConfigStatus(mode="unknown") - binary_status = BinaryStatus(available=True) - server_status = ServerStatus(running=False) - - result = self.status_manager._determine_current_mode(config_status, binary_status, server_status) - - assert result == "mcp_available" - - def test_get_last_mode_from_file(self): - """Test getting last mode from state file.""" - state_file_path = os.path.join(self.temp_dir, "aks_agent_mode_state") - with open(state_file_path, 'w') as f: - json.dump({"last_mode": "mcp"}, f) - - result = self.status_manager._get_last_mode() - - assert result == "mcp" - - def test_get_last_mode_no_file(self): - """Test getting last mode when file doesn't exist.""" - result = self.status_manager._get_last_mode() - - assert result == "unknown" - - def test_get_last_mode_invalid_json(self): - """Test getting last mode with invalid JSON in file.""" - state_file_path = os.path.join(self.temp_dir, "aks_agent_mode_state") - with open(state_file_path, 'w') as f: - f.write("invalid json") - - result = self.status_manager._get_last_mode() - - assert result == "unknown" - - def test_get_last_mode_change_time(self): - """Test getting last mode change time.""" - state_file_path = os.path.join(self.temp_dir, "aks_agent_mode_state") - with open(state_file_path, 'w') as f: - json.dump({"last_mode": "mcp"}, f) - - result = self.status_manager._get_last_mode_change_time() - - assert result is not None - assert isinstance(result, datetime) - - def test_get_last_mode_change_time_no_file(self): - """Test getting last mode change time when file doesn't exist.""" - result = self.status_manager._get_last_mode_change_time() - - assert result is None - - def test_get_last_used_timestamp(self): - """Test getting last used timestamp.""" - # Create some files with different timestamps - config_file_path = os.path.join(self.temp_dir, "aksAgent.yaml") - state_file_path = os.path.join(self.temp_dir, "aks_agent_mode_state") - - with open(config_file_path, 'w') as f: - f.write("{}") - - with open(state_file_path, 'w') as f: - f.write("{}") - - result = self.status_manager._get_last_used_timestamp() - - assert result is not None - assert isinstance(result, datetime) - - def test_get_last_used_timestamp_no_files(self): - """Test getting last used timestamp when no files exist.""" - result = self.status_manager._get_last_used_timestamp() - - assert result is None - - def test_load_config_file_json(self): - """Test loading JSON configuration file.""" - config_file_path = os.path.join(self.temp_dir, "test_config.json") - config_data = {"test": "data"} - - with open(config_file_path, 'w') as f: - json.dump(config_data, f) - - result = self.status_manager._load_config_file(config_file_path) - - assert result == config_data - - def test_load_config_file_yaml(self): - """Test loading YAML configuration file.""" - config_file_path = os.path.join(self.temp_dir, "test_config.yaml") - - with open(config_file_path, 'w') as f: - f.write("test: data\n") - - with patch('yaml.safe_load') as mock_yaml: - mock_yaml.return_value = {"test": "data"} - - result = self.status_manager._load_config_file(config_file_path) - - assert result == {"test": "data"} - - def test_load_config_file_nonexistent(self): - """Test loading nonexistent configuration file.""" - result = self.status_manager._load_config_file("/nonexistent/file.json") - - assert result is None - - def test_load_config_file_invalid_json_falls_back_to_yaml(self): - """Test loading invalid JSON configuration file falls back to YAML then fails gracefully.""" - config_file_path = os.path.join(self.temp_dir, "invalid.json") - - with open(config_file_path, 'w') as f: - f.write("invalid json content") - - # Mock yaml to also fail, simulating no yaml library or invalid yaml - with patch('yaml.safe_load', side_effect=Exception("YAML parse error")): - result = self.status_manager._load_config_file(config_file_path) - - assert result is None diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_status_command.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_status_command.py deleted file mode 100644 index aa237d89538..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_status_command.py +++ /dev/null @@ -1,222 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -""" -Tests for AKS Agent Status command registration and functionality. -""" - -import unittest -from unittest.mock import Mock, patch - - -class TestAksAgentStatusCommand(unittest.TestCase): - """Test AKS Agent Status command registration and functionality.""" - - def test_aks_agent_status_function_exists(self): - """Test that the aks_agent_status function is properly defined.""" - from azext_aks_agent.custom import aks_agent_status - - # Verify function exists and is callable - self.assertTrue(callable(aks_agent_status)) - - def test_aks_agent_status_function_signature(self): - """Test that the aks_agent_status function has correct signature.""" - import inspect - from azext_aks_agent.custom import aks_agent_status - - # Get function signature - sig = inspect.signature(aks_agent_status) - - # Verify required parameters exist - self.assertIn("cmd", sig.parameters) - - # Verify verbose parameter is not present - self.assertNotIn("verbose", sig.parameters) - - def test_aks_agent_status_basic_execution(self): - """Test basic execution of aks_agent_status function.""" - from azext_aks_agent.custom import aks_agent_status - - # Mock all the imports that happen inside the function - with patch('azext_aks_agent.agent.binary_manager.AksMcpBinaryManager') as mock_binary_manager_class, \ - patch('azure.cli.core.api.get_config_dir') as mock_get_config_dir, \ - patch('rich.console.Console') as mock_console_class: - - # Setup config dir mock - mock_get_config_dir.return_value = "/mock/config" - - # Mock binary manager instance - mock_binary_instance = Mock() - mock_binary_instance.is_binary_available.return_value = False - mock_binary_instance.get_binary_path.return_value = "/mock/binary/path" - mock_binary_manager_class.return_value = mock_binary_instance - - # Mock rich console - mock_console = Mock() - mock_console_class.return_value = mock_console - - # Mock command context - mock_cmd = Mock() - - # Execute function - result = aks_agent_status(mock_cmd) - - # Verify function completes without error and returns None (status displayed via console) - self.assertIsNone(result) - - # Verify rich console was used - mock_console_class.assert_called() - mock_console.print.assert_called() - - def test_aks_agent_status_with_binary_available(self): - """Test aks_agent_status when MCP binary is available.""" - from azext_aks_agent.custom import aks_agent_status - - # Mock all the imports that happen inside the function - with patch('azext_aks_agent.agent.binary_manager.AksMcpBinaryManager') as mock_binary_manager_class, \ - patch('azext_aks_agent.agent.mcp_manager.MCPManager') as mock_mcp_manager_class, \ - patch('azure.cli.core.api.get_config_dir') as mock_get_config_dir, \ - patch('rich.console.Console') as mock_console_class: - - # Setup config dir mock - mock_get_config_dir.return_value = "/mock/config" - - # Mock binary manager with available binary - mock_binary_instance = Mock() - mock_binary_instance.is_binary_available.return_value = True - mock_binary_instance.get_binary_version.return_value = "1.0.0" - mock_binary_instance.get_binary_path.return_value = "/mock/binary/path" - mock_binary_instance.validate_version.return_value = True - mock_binary_manager_class.return_value = mock_binary_instance - - # Mock MCP manager - mock_mcp_instance = Mock() - mock_mcp_instance.is_server_running.return_value = False - mock_mcp_instance.is_server_healthy.return_value = False - mock_mcp_instance.get_server_url.return_value = None - mock_mcp_instance.get_server_port.return_value = None - mock_mcp_manager_class.return_value = mock_mcp_instance - - # Mock rich console - mock_console = Mock() - mock_console_class.return_value = mock_console - - mock_cmd = Mock() - - result = aks_agent_status(mock_cmd) - - # Verify function completes and returns None (status displayed via console) - self.assertIsNone(result) - - # Verify rich console was used - mock_console_class.assert_called() - mock_console.print.assert_called() - - def test_aks_agent_status_error_handling(self): - """Test aks_agent_status error handling with graceful fallback.""" - from azext_aks_agent.custom import aks_agent_status - - # Mock to raise exception during config dir access - with patch('azure.cli.core.api.get_config_dir') as mock_get_config_dir, \ - patch('rich.console.Console') as mock_console_class: - mock_get_config_dir.side_effect = Exception("Config dir error") - - # Mock rich console - mock_console = Mock() - mock_console_class.return_value = mock_console - - mock_cmd = Mock() - - # The function should gracefully handle the error and return None (status displayed via console) - result = aks_agent_status(mock_cmd) - - # Verify function completes without raising CLIError and returns None - self.assertIsNone(result) - - # Verify rich console was used - mock_console_class.assert_called() - mock_console.print.assert_called() - - def test_display_agent_status_basic(self): - """Test _display_agent_status function basic functionality.""" - from azext_aks_agent.custom import _display_agent_status - - # Create test status info - status_info = { - "mode": "traditional", - "mcp_binary": { - "available": False, - "path": "/mock/path", - "version": None - }, - "server": { - "running": False, - "healthy": False, - "url": None, - "port": None - } - } - - with patch('rich.console.Console') as mock_console_class: - # Mock rich console - mock_console = Mock() - mock_console_class.return_value = mock_console - - _display_agent_status(status_info) - - # Verify rich console was used - mock_console_class.assert_called() - mock_console.print.assert_called() - - def test_display_agent_status_verbose(self): - """Test _display_agent_status function with detailed information.""" - from azext_aks_agent.custom import _display_agent_status - - # Create test status info with more details - status_info = { - "mode": "mcp_ready", - "mcp_binary": { - "available": True, - "path": "/mock/binary/path", - "version": "1.0.0", - "version_valid": True - }, - "server": { - "running": True, - "healthy": True, - "url": "http://localhost:8003/sse", - "port": 8003 - } - } - - with patch('rich.console.Console') as mock_console_class: - # Mock rich console - mock_console = Mock() - mock_console_class.return_value = mock_console - - _display_agent_status(status_info) - - # Verify rich console was used - mock_console_class.assert_called() - mock_console.print.assert_called() - - # Check that print was called multiple times (for table and recommendations) - self.assertTrue(mock_console.print.call_count >= 2) - - def test_status_command_registration(self): - """Test that the agent status command is properly registered.""" - # Import functions to verify presence - try: - from azext_aks_agent.custom import aks_agent_status - from azext_aks_agent.custom import _display_agent_status - - self.assertTrue(callable(aks_agent_status)) - self.assertTrue(callable(_display_agent_status)) - except ImportError as e: - self.fail(f"Command registration imports failed: {e}") - - -if __name__ == '__main__': - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_status_models.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_status_models.py deleted file mode 100644 index ede96d59175..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_status_models.py +++ /dev/null @@ -1,473 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -"""Tests for status data models.""" - -import os -import tempfile -import unittest -from datetime import datetime, timedelta -from unittest.mock import patch - -from azext_aks_agent.agent.status_models import ( - BinaryStatus, - ServerStatus, - ConfigStatus, - AgentStatus, -) - - -class TestBinaryStatus(unittest.TestCase): - """Test BinaryStatus data model.""" - - def test_binary_status_default_initialization(self): - """Test default values are set correctly.""" - status = BinaryStatus() - - self.assertFalse(status.available) - self.assertIsNone(status.version) - self.assertIsNone(status.path) - self.assertIsNone(status.last_updated) - self.assertIsNone(status.size) - self.assertFalse(status.version_valid) - self.assertIsNone(status.error_message) - self.assertFalse(status.ready) - - def test_binary_status_initialization_with_values(self): - """Test initialization with specific values.""" - now = datetime.now() - status = BinaryStatus( - available=True, - version="1.0.0", - path="/tmp/binary", - last_updated=now, - size=1024, - version_valid=True - ) - - self.assertTrue(status.available) - self.assertEqual(status.version, "1.0.0") - self.assertEqual(status.path, "/tmp/binary") - self.assertEqual(status.last_updated, now) - self.assertEqual(status.size, 1024) - self.assertTrue(status.version_valid) - self.assertTrue(status.ready) - - def test_ready_property(self): - """Test ready property logic.""" - status = BinaryStatus() - - # Not ready when not available - self.assertFalse(status.ready) - - # Not ready when available but version not valid - status.available = True - self.assertFalse(status.ready) - - # Ready when both available and version valid - status.version_valid = True - self.assertTrue(status.ready) - - def test_from_file_path_nonexistent_file(self): - """Test from_file_path with non-existent file.""" - status = BinaryStatus.from_file_path("/nonexistent/path") - - self.assertFalse(status.available) - self.assertEqual(status.path, "/nonexistent/path") - self.assertIsNone(status.version) - self.assertIsNone(status.size) - self.assertIsNone(status.last_updated) - self.assertFalse(status.ready) - - def test_from_file_path_existing_file(self): - """Test from_file_path with existing file.""" - with tempfile.NamedTemporaryFile(delete=False) as tmp: - tmp.write(b"test content") - tmp_path = tmp.name - - try: - status = BinaryStatus.from_file_path( - tmp_path, - version="1.0.0", - version_valid=True - ) - - self.assertTrue(status.available) - self.assertEqual(status.path, tmp_path) - self.assertEqual(status.version, "1.0.0") - self.assertTrue(status.version_valid) - self.assertGreater(status.size, 0) - self.assertIsInstance(status.last_updated, datetime) - self.assertTrue(status.ready) - finally: - os.unlink(tmp_path) - - @patch('os.stat') - def test_from_file_path_os_error(self, mock_stat): - """Test from_file_path handles OS errors.""" - mock_stat.side_effect = OSError("Permission denied") - - # First need to ensure the file exists for the initial check - with patch('os.path.exists', return_value=True): - status = BinaryStatus.from_file_path("/test/path") - - self.assertFalse(status.available) - self.assertEqual(status.path, "/test/path") - self.assertIn("Failed to get file info", status.error_message) - - -class TestServerStatus(unittest.TestCase): - """Test ServerStatus data model.""" - - def test_server_status_default_initialization(self): - """Test default values are set correctly.""" - status = ServerStatus() - - self.assertFalse(status.running) - self.assertFalse(status.healthy) - self.assertIsNone(status.url) - self.assertIsNone(status.port) - self.assertIsNone(status.pid) - self.assertIsNone(status.uptime) - self.assertIsNone(status.start_time) - self.assertIsNone(status.error_message) - - def test_status_text_property(self): - """Test status_text property.""" - status = ServerStatus() - - # Stopped - self.assertEqual(status.status_text, "Stopped") - - # Running but unhealthy - status.running = True - self.assertEqual(status.status_text, "Running (Unhealthy)") - - # Running and healthy - status.healthy = True - self.assertEqual(status.status_text, "Running (Healthy)") - - def test_uptime_text_property(self): - """Test uptime_text property formatting.""" - status = ServerStatus() - - # No uptime - self.assertEqual(status.uptime_text, "N/A") - - # Seconds only - status.uptime = timedelta(seconds=30) - self.assertEqual(status.uptime_text, "30s") - - # Minutes and seconds - status.uptime = timedelta(minutes=5, seconds=30) - self.assertEqual(status.uptime_text, "5m 30s") - - # Hours, minutes, and seconds - status.uptime = timedelta(hours=2, minutes=15, seconds=45) - self.assertEqual(status.uptime_text, "2h 15m 45s") - - def test_full_initialization(self): - """Test initialization with all values.""" - start_time = datetime.now() - uptime = timedelta(hours=1) - - status = ServerStatus( - running=True, - healthy=True, - url="http://localhost:8003", - port=8003, - pid=12345, - uptime=uptime, - start_time=start_time - ) - - self.assertTrue(status.running) - self.assertTrue(status.healthy) - self.assertEqual(status.url, "http://localhost:8003") - self.assertEqual(status.port, 8003) - self.assertEqual(status.pid, 12345) - self.assertEqual(status.uptime, uptime) - self.assertEqual(status.start_time, start_time) - self.assertEqual(status.status_text, "Running (Healthy)") - - -class TestConfigStatus(unittest.TestCase): - """Test ConfigStatus data model.""" - - def test_config_status_default_initialization(self): - """Test default values and post_init behavior.""" - status = ConfigStatus() - - self.assertEqual(status.mode, "unknown") - self.assertIsNone(status.config_file) - self.assertEqual(status.toolsets_enabled, []) - self.assertEqual(status.mcp_servers, []) - self.assertIsNone(status.last_mode_change) - self.assertTrue(status.config_valid) - self.assertIsNone(status.error_message) - - def test_config_status_initialization_with_values(self): - """Test initialization with specific values.""" - toolsets = ["aks/core", "kubernetes/core"] - mcp_servers = ["aks-mcp"] - now = datetime.now() - - status = ConfigStatus( - mode="mcp", - config_file="/config/file.yaml", - toolsets_enabled=toolsets, - mcp_servers=mcp_servers, - last_mode_change=now, - config_valid=False - ) - - self.assertEqual(status.mode, "mcp") - self.assertEqual(status.config_file, "/config/file.yaml") - self.assertEqual(status.toolsets_enabled, toolsets) - self.assertEqual(status.mcp_servers, mcp_servers) - self.assertEqual(status.last_mode_change, now) - self.assertFalse(status.config_valid) - - def test_mode_properties(self): - """Test mode detection properties.""" - status = ConfigStatus() - - # Unknown mode - self.assertFalse(status.is_mcp_mode) - self.assertFalse(status.is_traditional_mode) - - # MCP mode - status.mode = "mcp" - self.assertTrue(status.is_mcp_mode) - self.assertFalse(status.is_traditional_mode) - - # Traditional mode - status.mode = "traditional" - self.assertFalse(status.is_mcp_mode) - self.assertTrue(status.is_traditional_mode) - - # Case insensitive - status.mode = "MCP" - self.assertTrue(status.is_mcp_mode) - - status.mode = "TRADITIONAL" - self.assertTrue(status.is_traditional_mode) - - def test_count_properties(self): - """Test count properties.""" - status = ConfigStatus() - - self.assertEqual(status.active_toolsets_count, 0) - self.assertEqual(status.mcp_servers_count, 0) - - status.toolsets_enabled = ["toolset1", "toolset2", "toolset3"] - status.mcp_servers = ["server1", "server2"] - - self.assertEqual(status.active_toolsets_count, 3) - self.assertEqual(status.mcp_servers_count, 2) - - -class TestAgentStatus(unittest.TestCase): - """Test AgentStatus data model.""" - - def test_agent_status_default_initialization(self): - """Test default values and component creation.""" - status = AgentStatus() - - self.assertEqual(status.mode, "unknown") - self.assertIsInstance(status.mcp_binary, BinaryStatus) - self.assertIsInstance(status.server, ServerStatus) - self.assertIsInstance(status.config, ConfigStatus) - self.assertIsNone(status.last_used) - self.assertEqual(status.overall_health, "unknown") - self.assertIsNone(status.error_message) - - def test_initialization_with_components(self): - """Test initialization with provided components.""" - binary = BinaryStatus(available=True, version_valid=True) - server = ServerStatus(running=True, healthy=True) - config = ConfigStatus(mode="mcp", config_valid=True) - - status = AgentStatus( - mode="mcp", - mcp_binary=binary, - server=server, - config=config - ) - - self.assertEqual(status.mode, "mcp") - self.assertEqual(status.mcp_binary, binary) - self.assertEqual(status.server, server) - self.assertEqual(status.config, config) - self.assertEqual(status.overall_health, "healthy") - - def test_overall_health_mcp_mode(self): - """Test overall health calculation in MCP mode.""" - status = AgentStatus() - status.config.mode = "mcp" - - # Unhealthy when binary not ready - status._update_overall_health() - self.assertEqual(status.overall_health, "degraded") - - # Unhealthy when server not running - status.mcp_binary.available = True - status.mcp_binary.version_valid = True - status._update_overall_health() - self.assertEqual(status.overall_health, "degraded") - - # Unhealthy when server not healthy - status.server.running = True - status._update_overall_health() - self.assertEqual(status.overall_health, "degraded") - - # Healthy when all components ready - status.server.healthy = True - status._update_overall_health() - self.assertEqual(status.overall_health, "healthy") - - def test_overall_health_traditional_mode(self): - """Test overall health calculation in traditional mode.""" - status = AgentStatus() - status.config.mode = "traditional" - - # Healthy when config valid - status._update_overall_health() - self.assertEqual(status.overall_health, "healthy") - - # Degraded when config invalid - status.config.config_valid = False - status._update_overall_health() - self.assertEqual(status.overall_health, "degraded") - - def test_overall_health_error(self): - """Test overall health with error message.""" - status = AgentStatus() - status.config.mode = "mcp" - status.mcp_binary.available = True - status.mcp_binary.version_valid = True - status.server.running = True - status.server.healthy = True - status.error_message = "Some error occurred" - - status._update_overall_health() - self.assertEqual(status.overall_health, "error") - - def test_health_properties(self): - """Test health status properties.""" - status = AgentStatus() - - # Unknown - status.overall_health = "unknown" - self.assertFalse(status.is_healthy) - self.assertFalse(status.is_operational) - - # Healthy - status.overall_health = "healthy" - self.assertTrue(status.is_healthy) - self.assertTrue(status.is_operational) - - # Degraded - status.overall_health = "degraded" - self.assertFalse(status.is_healthy) - self.assertTrue(status.is_operational) - - # Error - status.overall_health = "error" - self.assertFalse(status.is_healthy) - self.assertFalse(status.is_operational) - - def test_emoji_properties(self): - """Test emoji representation properties.""" - status = AgentStatus() - - # Health emojis - status.overall_health = "healthy" - self.assertEqual(status.health_emoji, "✅") - - status.overall_health = "degraded" - self.assertEqual(status.health_emoji, "⚠️") - - status.overall_health = "error" - self.assertEqual(status.health_emoji, "❌") - - status.overall_health = "unknown" - self.assertEqual(status.health_emoji, "❓") - - # Mode emojis - status.config.mode = "mcp" - self.assertEqual(status.mode_emoji, "🚀") - - status.config.mode = "traditional" - self.assertEqual(status.mode_emoji, "🔧") - - status.config.mode = "unknown" - self.assertEqual(status.mode_emoji, "❓") - - def test_get_summary(self): - """Test summary string generation.""" - status = AgentStatus() - status.overall_health = "healthy" - status.mode = "mcp" - status.config.mode = "mcp" - - summary = status.get_summary() - expected = "✅ Healthy | 🚀 Mcp Mode" - self.assertEqual(summary, expected) - - def test_get_recommendations_mcp_mode(self): - """Test recommendations for MCP mode.""" - status = AgentStatus() - status.config.mode = "mcp" - - # Binary not available - recommendations = status.get_recommendations() - self.assertIn("Download the MCP binary", recommendations[0]) - - # Binary available but version invalid - status.mcp_binary.available = True - recommendations = status.get_recommendations() - self.assertIn("Update the MCP binary", recommendations[0]) - - # Server not running - status.mcp_binary.version_valid = True - recommendations = status.get_recommendations() - self.assertIn("Start the MCP server", recommendations[0]) - - # Server not healthy - status.server.running = True - recommendations = status.get_recommendations() - self.assertIn("Check MCP server logs", recommendations[0]) - - def test_get_recommendations_traditional_mode(self): - """Test recommendations for traditional mode.""" - status = AgentStatus() - status.config.mode = "traditional" - - # With ready binary, suggest MCP - status.mcp_binary.available = True - status.mcp_binary.version_valid = True - recommendations = status.get_recommendations() - self.assertIn("Consider using MCP mode", recommendations[0]) - - def test_get_recommendations_error(self): - """Test recommendations with error.""" - status = AgentStatus() - status.error_message = "Test error" - - recommendations = status.get_recommendations() - self.assertIn("Resolve error: Test error", recommendations[0]) - - def test_get_recommendations_config_invalid(self): - """Test recommendations with invalid config.""" - status = AgentStatus() - status.config.config_valid = False - - recommendations = status.get_recommendations() - self.assertIn("Check configuration file", recommendations[0]) - - -if __name__ == "__main__": - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_user_feedback.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_user_feedback.py deleted file mode 100644 index 3a13cbfedd9..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_user_feedback.py +++ /dev/null @@ -1,173 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -import unittest -from unittest.mock import Mock, patch - -from azext_aks_agent.agent.user_feedback import ProgressReporter - - -class TestProgressReporter(unittest.TestCase): - """Test cases for ProgressReporter class.""" - - def setUp(self): - """Set up test fixtures.""" - self.mock_console = Mock() - - def test_show_download_progress_with_console(self): - """Test download progress reporting with provided console.""" - # Test normal progress - with patch('sys.stdout.isatty', return_value=True): - ProgressReporter.show_download_progress( - downloaded=500, - total=1000, - filename="test.bin", - console=self.mock_console - ) - - self.mock_console.print.assert_called_once() - call_args = self.mock_console.print.call_args[0][0] - self.assertIn("Downloading test.bin", call_args) - self.assertIn("50.0%", call_args) - - def test_show_download_progress_completion(self): - """Test download progress at completion.""" - with patch('sys.stdout.isatty', return_value=True): - ProgressReporter.show_download_progress( - downloaded=1000, - total=1000, - filename="complete.bin", - console=self.mock_console - ) - - # Should be called twice - once for progress, once for newline - self.assertEqual(self.mock_console.print.call_count, 2) - - def test_show_download_progress_zero_total(self): - """Test download progress with zero total bytes.""" - ProgressReporter.show_download_progress( - downloaded=100, - total=0, - filename="zero.bin", - console=self.mock_console - ) - - # Should not call console when total is 0 - self.mock_console.print.assert_not_called() - - def test_show_download_progress_no_tty(self): - """Test download progress when not in interactive terminal.""" - with patch('sys.stdout.isatty', return_value=False): - ProgressReporter.show_download_progress( - downloaded=500, - total=1000, - filename="notty.bin", - console=self.mock_console - ) - - # Should not call console when not TTY - self.mock_console.print.assert_not_called() - - - - def test_show_status_message_all_levels(self): - """Test status messages with different levels.""" - test_cases = [ - ("info", "[cyan]Test info[/cyan]"), - ("warning", "[yellow]Test warning[/yellow]"), - ("error", "[red]Test error[/red]"), - ("success", "[green]Test success[/green]"), - ("unknown", "[cyan]Test unknown[/cyan]"), # Should default to info style - ] - - for level, expected_style in test_cases: - with self.subTest(level=level): - self.mock_console.reset_mock() - ProgressReporter.show_status_message( - f"Test {level}", - level=level, - console=self.mock_console - ) - - self.mock_console.print.assert_called_once_with(expected_style) - - - - def test_show_binary_setup_status(self): - """Test binary setup status message.""" - ProgressReporter.show_binary_setup_status( - "Binary downloaded successfully", - console=self.mock_console - ) - - self.mock_console.print.assert_called_once_with( - "[cyan]MCP Binary: Binary downloaded successfully[/cyan]" - ) - - def test_show_server_status(self): - """Test server status message.""" - ProgressReporter.show_server_status( - "Server started on port 8003", - console=self.mock_console - ) - - self.mock_console.print.assert_called_once_with( - "[cyan]MCP Server: Server started on port 8003[/cyan]" - ) - - def test_show_server_status_silent_mode(self): - """Test server status in silent mode.""" - ProgressReporter.show_server_status( - "Server status", - silent_mode=True, - console=self.mock_console - ) - - # Currently still shows in silent mode - behavior may change in future - self.mock_console.print.assert_called_once() - - def test_progress_bar_formatting(self): - """Test progress bar formatting at various percentages.""" - test_cases = [ - (0, 1000, 0), # 0% - (250, 1000, 25), # 25% - (500, 1000, 50), # 50% - (750, 1000, 75), # 75% - (1000, 1000, 100), # 100% - (1200, 1000, 100), # Over 100% (clamped) - ] - - for downloaded, total, expected_percentage in test_cases: - with self.subTest(downloaded=downloaded, total=total): - self.mock_console.reset_mock() - - with patch('sys.stdout.isatty', return_value=True): - ProgressReporter.show_download_progress( - downloaded=downloaded, - total=total, - filename="test.bin", - console=self.mock_console - ) - - # For 100%, there are two calls - progress line and newline - if expected_percentage == 100: - self.assertEqual(self.mock_console.print.call_count, 2) - # First call is the progress line - call_args = self.mock_console.print.call_args_list[0][0][0] - else: - self.assertEqual(self.mock_console.print.call_count, 1) - call_args = self.mock_console.print.call_args[0][0] - - self.assertIn(f"{expected_percentage}.0%", call_args) - - # Check that progress bar contains appropriate characters - if expected_percentage > 0: - self.assertIn("█", call_args) # Filled portion should exist if > 0% - if expected_percentage < 100: - self.assertIn("░", call_args) # Empty portion should exist if < 100% - - -if __name__ == '__main__': - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_validators.py b/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_validators.py deleted file mode 100644 index dde70a97ee3..00000000000 --- a/src/aks-agent/azext_aks_agent/tests/latest/test_aks_agent_validators.py +++ /dev/null @@ -1,298 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# This test module was renamed to avoid name collision with 'acs' module tests. -import os -import shutil -import tempfile -import unittest -from unittest.mock import patch - -import azext_aks_agent._validators as validators -from azure.cli.core.azclierror import InvalidArgumentValueError - - -class TestValidateParamYamlFile(unittest.TestCase): - def setUp(self): - self.temp_dir = tempfile.mkdtemp() - self.valid_yaml_file = os.path.join(self.temp_dir, "valid.yaml") - self.invalid_yaml_file = os.path.join(self.temp_dir, "invalid.yaml") - self.readonly_yaml_file = os.path.join(self.temp_dir, "readonly.yaml") - self.nonexistent_file = os.path.join(self.temp_dir, "nonexistent.yaml") - - # Create valid YAML file - with open(self.valid_yaml_file, 'w') as f: - f.write("key1: value1\nkey2:\n - item1\n - item2\n") - - # Create invalid YAML file - with open(self.invalid_yaml_file, 'w') as f: - f.write("invalid: yaml: content: [\n - unclosed\n") - - # Create readonly YAML file - with open(self.readonly_yaml_file, 'w') as f: - f.write("key: value\n") - os.chmod(self.readonly_yaml_file, 0o000) # Remove all permissions - - def tearDown(self): - # Restore permissions before cleanup - if os.path.exists(self.readonly_yaml_file): - os.chmod(self.readonly_yaml_file, 0o644) - shutil.rmtree(self.temp_dir, ignore_errors=True) - - def test_none_yaml_path(self): - """Test that None yaml_path returns without error""" - validators._validate_param_yaml_file(None, "config-file") - - def test_empty_yaml_path(self): - """Test that empty string yaml_path returns without error""" - validators._validate_param_yaml_file("", "config-file") - - def test_nonexistent_file(self): - """Test that non-existent file raises InvalidArgumentValueError""" - with self.assertRaises(InvalidArgumentValueError) as cm: - validators._validate_param_yaml_file(self.nonexistent_file, "config-file") - self.assertIn("file is not found", str(cm.exception)) - self.assertIn("config-file", str(cm.exception)) - - def test_unreadable_file(self): - """Test that unreadable file raises InvalidArgumentValueError""" - import os - - # Skip on Windows as it handles permissions differently - if os.name == 'nt': - self.skipTest("Skipping readonly test on Windows") - - with self.assertRaises(InvalidArgumentValueError) as cm: - validators._validate_param_yaml_file(self.readonly_yaml_file, "config-file") - self.assertIn("file is not readable", str(cm.exception)) - self.assertIn("config-file", str(cm.exception)) - - def test_invalid_yaml_file(self): - """Test that invalid YAML content raises InvalidArgumentValueError""" - with self.assertRaises(InvalidArgumentValueError) as cm: - validators._validate_param_yaml_file(self.invalid_yaml_file, "config-file") - self.assertIn("file is not a valid YAML file", str(cm.exception)) - self.assertIn("config-file", str(cm.exception)) - - def test_valid_yaml_file(self): - """Test that valid YAML file passes validation""" - # Should not raise any exception - validators._validate_param_yaml_file(self.valid_yaml_file, "config-file") - - def test_different_param_names(self): - """Test that different parameter names are included in error messages""" - with self.assertRaises(InvalidArgumentValueError) as cm: - validators._validate_param_yaml_file(self.nonexistent_file, "my-custom-param") - self.assertIn("my-custom-param", str(cm.exception)) - - @patch('builtins.open') - def test_general_exception_handling(self, mock_open): - """Test that general exceptions are caught and re-raised as InvalidArgumentValueError""" - mock_open.side_effect = PermissionError("Access denied") - - with self.assertRaises(InvalidArgumentValueError) as cm: - validators._validate_param_yaml_file(self.valid_yaml_file, "config-file") - self.assertIn("An error occurred while reading the config file", str(cm.exception)) - self.assertIn("config-file", str(cm.exception)) - - def test_complex_yaml_file(self): - """Test validation with complex YAML structure""" - import os - complex_yaml_file = os.path.join(self.temp_dir, "complex.yaml") - with open(complex_yaml_file, 'w') as f: - f.write(""" -apiVersion: v1 -kind: ConfigMap -metadata: - name: test-config - namespace: default -data: - config.yaml: | - server: - host: localhost - port: 8080 - features: - - auth - - logging - database: - url: "postgresql://user:pass@host:5432/db" - pool_size: 10 -""") - - # Should not raise any exception - validators._validate_param_yaml_file(complex_yaml_file, "config-file") - - def test_empty_yaml_file(self): - """Test validation with empty YAML file""" - import os - empty_yaml_file = os.path.join(self.temp_dir, "empty.yaml") - with open(empty_yaml_file, 'w') as f: - f.write("") - - # Should not raise any exception - empty file is valid YAML - validators._validate_param_yaml_file(empty_yaml_file, "config-file") - - -class AgentConfigFileNamespace: - def __init__(self, config_file=None): - self.config_file = config_file - - -class TestValidateAgentConfigFile(unittest.TestCase): - def setUp(self): - - self.temp_dir = tempfile.mkdtemp() - self.valid_yaml_file = os.path.join(self.temp_dir, "valid_agent.yaml") - self.invalid_yaml_file = os.path.join(self.temp_dir, "invalid_agent.yaml") - self.readonly_yaml_file = os.path.join(self.temp_dir, "readonly_agent.yaml") - self.nonexistent_file = os.path.join(self.temp_dir, "nonexistent_agent.yaml") - - # Create valid YAML file - with open(self.valid_yaml_file, 'w') as f: - f.write(""" -model=azure/gpt-4.1 -""") - - # Create invalid YAML file - with open(self.invalid_yaml_file, 'w') as f: - f.write("invalid: yaml: content: [\n - unclosed\n") - - # Create readonly YAML file - with open(self.readonly_yaml_file, 'w') as f: - f.write("agent:\n config: test\n") - os.chmod(self.readonly_yaml_file, 0o000) # Remove all permissions - - def tearDown(self): - import os - import shutil - - # Restore permissions before cleanup - if os.path.exists(self.readonly_yaml_file): - os.chmod(self.readonly_yaml_file, 0o644) - shutil.rmtree(self.temp_dir, ignore_errors=True) - - def test_none_config_file(self): - """Test that None config_file returns without error""" - namespace = AgentConfigFileNamespace(None) - validators.validate_agent_config_file(namespace) - - def test_empty_config_file(self): - """Test that empty string config_file returns without error""" - namespace = AgentConfigFileNamespace("") - validators.validate_agent_config_file(namespace) - - def test_valid_config_file(self): - """Test that valid YAML config file passes validation""" - namespace = AgentConfigFileNamespace(self.valid_yaml_file) - # Should not raise any exception - validators.validate_agent_config_file(namespace) - - def test_invalid_yaml_config_file(self): - """Test that invalid YAML config file raises InvalidArgumentValueError""" - namespace = AgentConfigFileNamespace(self.invalid_yaml_file) - with self.assertRaises(InvalidArgumentValueError) as cm: - validators.validate_agent_config_file(namespace) - self.assertIn("file is not a valid YAML file", str(cm.exception)) - self.assertIn("config-file", str(cm.exception)) - - def test_nonexistent_config_file(self): - """Test that non-existent config file raises InvalidArgumentValueError""" - namespace = AgentConfigFileNamespace(self.nonexistent_file) - with self.assertRaises(InvalidArgumentValueError) as cm: - validators.validate_agent_config_file(namespace) - self.assertIn("file is not found", str(cm.exception)) - self.assertIn("config-file", str(cm.exception)) - - def test_unreadable_config_file(self): - """Test that unreadable config file raises InvalidArgumentValueError""" - import os - - # Skip on Windows as it handles permissions differently - if os.name == 'nt': - self.skipTest("Skipping readonly test on Windows") - - namespace = AgentConfigFileNamespace(self.readonly_yaml_file) - with self.assertRaises(InvalidArgumentValueError) as cm: - validators.validate_agent_config_file(namespace) - self.assertIn("file is not readable", str(cm.exception)) - self.assertIn("config-file", str(cm.exception)) - - @patch('azext_aks_agent._validators.get_config_dir') - @patch('azext_aks_agent._validators.os.path.exists') - def test_default_config_path_nonexistent(self, mock_exists, mock_get_config_dir): - """Test that default config path that doesn't exist returns without error""" - mock_get_config_dir.return_value = "/home/user/.azure" - mock_exists.return_value = False - - default_path = "/home/user/.azure/aksAgent.yaml" - namespace = AgentConfigFileNamespace(default_path) - - # Should not raise any exception when default path doesn't exist - validators.validate_agent_config_file(namespace) - - @patch('azext_aks_agent._validators.get_config_dir') - def test_default_config_path_exists_valid(self, mock_get_config_dir): - """Test that default config path with valid file passes validation""" - mock_get_config_dir.return_value = self.temp_dir - - default_path = os.path.join(self.temp_dir, "aksAgent.yaml") - # Create the default config file - with open(default_path, 'w') as f: - f.write("agent:\n config: default\n") - - namespace = AgentConfigFileNamespace(default_path) - # Should not raise any exception - validators.validate_agent_config_file(namespace) - - @patch('azext_aks_agent._validators.get_config_dir') - def test_default_config_path_exists_invalid(self, mock_get_config_dir): - """Test that default config path with invalid file raises error""" - mock_get_config_dir.return_value = self.temp_dir - - default_path = os.path.join(self.temp_dir, "aksAgent.yaml") - # Create the default config file with invalid YAML - with open(default_path, 'w') as f: - f.write("invalid: yaml: [\n unclosed\n") - - namespace = AgentConfigFileNamespace(default_path) - with self.assertRaises(InvalidArgumentValueError) as cm: - validators.validate_agent_config_file(namespace) - self.assertIn("file is not a valid YAML file", str(cm.exception)) - - def test_empty_agent_config_file(self): - """Test validation with empty agent config file""" - import os - empty_config_file = os.path.join(self.temp_dir, "empty_agent.yaml") - with open(empty_config_file, 'w') as f: - f.write("") - - namespace = AgentConfigFileNamespace(empty_config_file) - # Should not raise any exception - empty file is valid YAML - validators.validate_agent_config_file(namespace) - - @patch('builtins.open') - def test_file_access_exception(self, mock_open): - """Test that general file access exceptions are handled properly""" - mock_open.side_effect = PermissionError("Access denied") - - namespace = AgentConfigFileNamespace(self.valid_yaml_file) - with self.assertRaises(InvalidArgumentValueError) as cm: - validators.validate_agent_config_file(namespace) - self.assertIn("An error occurred while reading the config file", str(cm.exception)) - self.assertIn("config-file", str(cm.exception)) - - def test_minimal_valid_agent_config(self): - """Test validation with minimal valid agent configuration""" - import os - minimal_config_file = os.path.join(self.temp_dir, "minimal_agent.yaml") - with open(minimal_config_file, 'w') as f: - f.write("agent: {}") - - namespace = AgentConfigFileNamespace(minimal_config_file) - # Should not raise any exception - validators.validate_agent_config_file(namespace) - - -if __name__ == "__main__": - unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_custom_cleanup.py b/src/aks-agent/azext_aks_agent/tests/latest/test_custom_cleanup.py new file mode 100644 index 00000000000..8c5fa7f0c9b --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/latest/test_custom_cleanup.py @@ -0,0 +1,157 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +""" +Unit tests for aks_agent_cleanup function. +""" + +import unittest +from unittest.mock import MagicMock, Mock, patch + +from azext_aks_agent.custom import aks_agent_cleanup + + +class TestAksAgentCleanup(unittest.TestCase): + """Test cases for aks_agent_cleanup function.""" + + def setUp(self): + """Set up test fixtures.""" + self.mock_cmd = Mock() + self.mock_cmd.cli_ctx = Mock() + self.mock_client = Mock() + self.resource_group = 'test-rg' + self.cluster_name = 'test-cluster' + self.subscription_id = 'test-subscription-id' + + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_cleanup_with_various_inputs(self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds): + """Test cleanup with various user inputs including confirmation, cancellation, and invalid inputs.""" + mock_get_aks_creds.return_value = '/mock/kubeconfig/path' + + test_cases = [ + # (input, should_proceed, test_description) + ('y', True, 'lowercase y confirms'), + ('Y', True, 'uppercase Y confirms'), + ('yes', True, 'lowercase yes confirms'), + ('YES', True, 'uppercase YES confirms'), + ('n', False, 'lowercase n cancels'), + ('N', False, 'uppercase N cancels'), + ('no', False, 'lowercase no cancels'), + ('NO', False, 'uppercase NO cancels'), + ('', False, 'empty input (default) cancels'), + ('maybe', False, 'invalid input cancels'), + ('sure', False, 'invalid input cancels'), + ('1', False, 'invalid input cancels'), + ('true', False, 'invalid input cancels'), + ('ok', False, 'invalid input cancels'), + ] + + for user_input, should_proceed, description in test_cases: + with self.subTest(input=user_input, description=description): + # Reset mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_console.input.return_value = user_input + mock_get_subscription_id.return_value = self.subscription_id + mock_aks_manager_class.reset_mock() + mock_get_aks_creds.reset_mock() + + mock_agent_manager = MagicMock() + mock_agent_manager.uninstall_agent.return_value = True + mock_aks_manager_class.return_value = mock_agent_manager + + # Execute + aks_agent_cleanup(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Assert + if should_proceed: + mock_get_aks_creds.assert_called_once_with( + self.mock_client, + self.resource_group, + self.cluster_name + ) + mock_aks_manager_class.assert_called_once_with( + resource_group_name=self.resource_group, + cluster_name=self.cluster_name, + subscription_id=self.subscription_id, + kubeconfig_path='/mock/kubeconfig/path' + ) + mock_agent_manager.uninstall_agent.assert_called_once() + else: + mock_get_aks_creds.assert_not_called() + mock_aks_manager_class.assert_not_called() + + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_cleanup_failed(self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds): + """Test cleanup failure when uninstall_agent returns False.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_console.input.return_value = 'yes' + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = '/mock/kubeconfig/path' + + mock_agent_manager = MagicMock() + mock_agent_manager.uninstall_agent.return_value = False + mock_aks_manager_class.return_value = mock_agent_manager + + # Execute + aks_agent_cleanup(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Assert + mock_get_aks_creds.assert_called_once() + mock_aks_manager_class.assert_called_once() + mock_agent_manager.uninstall_agent.assert_called_once() + + # Assert failure message was printed + failure_calls = [call for call in mock_console.print.call_args_list + if "Cleanup failed" in str(call)] + self.assertTrue(len(failure_calls) > 0, "Failure message should be printed") + + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_cleanup_prints_expected_messages(self, mock_get_console, mock_get_subscription_id, + mock_aks_manager_class, mock_get_aks_creds): + """Test that all expected messages are printed during successful cleanup.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_console.input.return_value = 'y' + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = '/mock/kubeconfig/path' + + mock_agent_manager = MagicMock() + mock_agent_manager.uninstall_agent.return_value = True + mock_aks_manager_class.return_value = mock_agent_manager + + # Execute + aks_agent_cleanup(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Assert uninstall_agent was called + mock_agent_manager.uninstall_agent.assert_called_once() + + # Collect all printed messages + all_prints = [str(call) for call in mock_console.print.call_args_list] + all_messages = '\n'.join(all_prints) + + # Assert expected messages appear + self.assertIn("Warning", all_messages, "Warning message should be printed") + self.assertIn("Starting cleanup", all_messages, "Starting message should be printed") + self.assertIn("typically takes a few seconds", all_messages, "Time estimate should be printed") + self.assertIn("Cleanup completed successfully", all_messages, "Success message should be printed") + + +if __name__ == '__main__': + unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_custom_init.py b/src/aks-agent/azext_aks_agent/tests/latest/test_custom_init.py new file mode 100644 index 00000000000..de884e809cb --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/latest/test_custom_init.py @@ -0,0 +1,404 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +""" +Unit tests for aks_agent_init function. +""" + +import unittest +from unittest.mock import MagicMock, Mock, call, patch + +from azext_aks_agent.custom import aks_agent_init +from azure.cli.core.azclierror import AzCLIError + + +class TestAksAgentInit(unittest.TestCase): + """Test cases for aks_agent_init function.""" + + def setUp(self): + """Set up test fixtures.""" + self.mock_cmd = Mock() + self.mock_cmd.cli_ctx = Mock() + self.mock_client = Mock() + self.resource_group = 'test-rg' + self.cluster_name = 'test-cluster' + self.subscription_id = 'test-subscription-id' + self.kubeconfig_path = '/mock/kubeconfig/path' + + @patch('azext_aks_agent.custom._setup_and_create_llm_config') + @patch('azext_aks_agent.custom._prompt_managed_identity_configuration') + @patch('azext_aks_agent.custom._prompt_cluster_role_configuration') + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_init_new_deployment_no_llm_config( + self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds, mock_prompt_cluster_role, mock_prompt_managed_identity, + mock_setup_llm): + """Test initialization with new deployment and no existing LLM config.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = self.kubeconfig_path + + mock_agent_manager = MagicMock() + mock_agent_manager.check_llm_config_exists.return_value = False + mock_agent_manager.get_agent_status.return_value = { + "helm_status": "not_found", + "ready": True + } + mock_agent_manager.deploy_agent.return_value = (True, "") + mock_aks_manager_class.return_value = mock_agent_manager + + mock_prompt_cluster_role.return_value = "" + mock_prompt_managed_identity.return_value = "" + + # Execute + aks_agent_init(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Assert + mock_get_aks_creds.assert_called_once_with( + self.mock_client, + self.resource_group, + self.cluster_name + ) + mock_aks_manager_class.assert_called_once() + mock_agent_manager.check_llm_config_exists.assert_called_once() + mock_setup_llm.assert_called_once_with(mock_console, mock_agent_manager) + mock_prompt_cluster_role.assert_called_once() + mock_prompt_managed_identity.assert_called_once() + mock_agent_manager.deploy_agent.assert_called_once() + + @patch('azext_aks_agent.custom._get_existing_cluster_role') + @patch('azext_aks_agent.custom._setup_and_create_llm_config') + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_init_existing_llm_config_user_skips_update( + self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds, mock_setup_llm, mock_get_cluster_role): + """Test initialization raises AzCLIError when LLM config exists, user skips update, but cluster role not found.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_console.input.side_effect = ['n'] # User skips LLM config update + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = self.kubeconfig_path + + mock_agent_manager = MagicMock() + mock_agent_manager.check_llm_config_exists.return_value = True + mock_agent_manager.get_agent_status.return_value = { + "helm_status": "deployed", + "ready": True + } + mock_agent_manager.managed_identity_client_id = "" + mock_aks_manager_class.return_value = mock_agent_manager + + mock_get_cluster_role.return_value = None # Cannot find cluster role + + # Execute - should raise AzCLIError with wrapped message + with self.assertRaises(AzCLIError) as cm: + aks_agent_init(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Assert + mock_agent_manager.check_llm_config_exists.assert_called_once() + mock_setup_llm.assert_not_called() + # Verify the error message contains the wrapped format + self.assertIn("Agent initialization failed:", str(cm.exception)) + self.assertIn("Could not determine existing cluster role", str(cm.exception)) + + @patch('azext_aks_agent.custom._get_existing_cluster_role') + @patch('azext_aks_agent.custom._setup_and_create_llm_config') + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_init_existing_llm_config_user_updates( + self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds, mock_setup_llm, mock_get_cluster_role): + """Test initialization raises AzCLIError when LLM config exists, user updates, but cluster role not found.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_console.input.side_effect = ['yes'] # User updates LLM config + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = self.kubeconfig_path + + mock_agent_manager = MagicMock() + mock_agent_manager.check_llm_config_exists.return_value = True + mock_agent_manager.get_agent_status.return_value = { + "helm_status": "deployed", + "ready": True + } + mock_agent_manager.managed_identity_client_id = "" + mock_aks_manager_class.return_value = mock_agent_manager + + mock_get_cluster_role.return_value = None # Cannot find cluster role + + # Execute - should raise AzCLIError with wrapped message + with self.assertRaises(AzCLIError) as cm: + aks_agent_init(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Assert + mock_agent_manager.check_llm_config_exists.assert_called_once() + mock_setup_llm.assert_called_once_with(mock_console, mock_agent_manager) + # Verify the error message contains the wrapped format + self.assertIn("Agent initialization failed:", str(cm.exception)) + self.assertIn("Could not determine existing cluster role", str(cm.exception)) + + @patch('azext_aks_agent.custom._get_existing_cluster_role') + @patch('azext_aks_agent.custom._display_cluster_role_rules') + @patch('azext_aks_agent.custom._prompt_managed_identity_configuration') + @patch('azext_aks_agent.custom._setup_and_create_llm_config') + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_init_deployed_helm_with_managed_identity_update( + self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds, mock_setup_llm, mock_prompt_managed_identity, + mock_display_rules, mock_get_cluster_role): + """Test initialization when helm is deployed and user updates managed identity.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_console.input.side_effect = ['n', 'yes'] # Skip LLM update, change managed identity + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = self.kubeconfig_path + + mock_agent_manager = MagicMock() + mock_agent_manager.check_llm_config_exists.return_value = True + mock_agent_manager.get_agent_status.side_effect = [ + {"helm_status": "deployed", "ready": False}, + {"helm_status": "deployed", "ready": True} + ] + mock_agent_manager.managed_identity_client_id = "existing-client-id" + mock_agent_manager.deploy_agent.return_value = (True, "") + mock_aks_manager_class.return_value = mock_agent_manager + + mock_get_cluster_role.return_value = "test-cluster-role" + mock_cluster_role = Mock() + mock_agent_manager.rbac_v1.read_cluster_role.return_value = mock_cluster_role + mock_prompt_managed_identity.return_value = "new-client-id" + + # Execute + aks_agent_init(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Assert + mock_prompt_managed_identity.assert_called_once() + self.assertEqual(mock_agent_manager.managed_identity_client_id, "new-client-id") + mock_agent_manager.deploy_agent.assert_called_once() + + @patch('azext_aks_agent.custom._prompt_managed_identity_configuration') + @patch('azext_aks_agent.custom._prompt_cluster_role_configuration') + @patch('azext_aks_agent.custom._setup_and_create_llm_config') + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_init_with_custom_cluster_role( + self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds, mock_setup_llm, mock_prompt_cluster_role, + mock_prompt_managed_identity): + """Test initialization with custom cluster role.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = self.kubeconfig_path + + mock_agent_manager = MagicMock() + mock_agent_manager.check_llm_config_exists.return_value = False + mock_agent_manager.get_agent_status.return_value = { + "helm_status": "not_found", + "ready": True + } + mock_agent_manager.deploy_agent.return_value = (True, "") + mock_aks_manager_class.return_value = mock_agent_manager + + mock_prompt_cluster_role.return_value = "custom-cluster-role" + mock_prompt_managed_identity.return_value = "test-client-id" + + # Execute + aks_agent_init(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Assert + self.assertEqual(mock_agent_manager.customized_cluster_role_name, "custom-cluster-role") + self.assertEqual(mock_agent_manager.managed_identity_client_id, "test-client-id") + mock_agent_manager.deploy_agent.assert_called_once() + + @patch('azext_aks_agent.custom._setup_and_create_llm_config') + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_init_deployment_failure_logs_error( + self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds, mock_setup_llm): + """Test initialization raises AzCLIError when deployment fails.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = self.kubeconfig_path + + mock_agent_manager = MagicMock() + mock_agent_manager.check_llm_config_exists.return_value = False + mock_agent_manager.get_agent_status.return_value = {"helm_status": "not_found"} + mock_agent_manager.deploy_agent.return_value = (False, "Deployment failed") + mock_aks_manager_class.return_value = mock_agent_manager + + # Execute - should raise AzCLIError with wrapped message + with self.assertRaises(AzCLIError) as cm: + aks_agent_init(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Verify the error message contains the wrapped format + self.assertIn("Agent initialization failed:", str(cm.exception)) + self.assertIn("Failed to deploy agent", str(cm.exception)) + + @patch('azext_aks_agent.custom._get_existing_cluster_role') + @patch('azext_aks_agent.custom._setup_and_create_llm_config') + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_init_deployed_no_cluster_role_logs_error( + self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds, mock_setup_llm, mock_get_cluster_role): + """Test initialization raises AzCLIError when deployed but cannot determine cluster role.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_console.input.return_value = 'n' + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = self.kubeconfig_path + + mock_agent_manager = MagicMock() + mock_agent_manager.check_llm_config_exists.return_value = True + mock_agent_manager.get_agent_status.return_value = {"helm_status": "deployed"} + mock_aks_manager_class.return_value = mock_agent_manager + + mock_get_cluster_role.return_value = None # Cannot find cluster role + + # Execute - should raise AzCLIError with wrapped message + with self.assertRaises(AzCLIError) as cm: + aks_agent_init(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Verify the error message contains the wrapped format + self.assertIn("Agent initialization failed:", str(cm.exception)) + self.assertIn("Could not determine existing cluster role", str(cm.exception)) + + @patch('azext_aks_agent.custom._prompt_managed_identity_configuration') + @patch('azext_aks_agent.custom._prompt_cluster_role_configuration') + @patch('azext_aks_agent.custom._setup_and_create_llm_config') + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_init_deployment_not_ready_shows_warning( + self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds, mock_setup_llm, mock_prompt_cluster_role, + mock_prompt_managed_identity): + """Test initialization shows warning when deployment not ready.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = self.kubeconfig_path + + mock_agent_manager = MagicMock() + mock_agent_manager.check_llm_config_exists.return_value = False + mock_agent_manager.get_agent_status.side_effect = [ + {"helm_status": "not_found"}, + {"helm_status": "deployed", "ready": False} + ] + mock_agent_manager.deploy_agent.return_value = (True, "") + mock_aks_manager_class.return_value = mock_agent_manager + + mock_prompt_cluster_role.return_value = "" + mock_prompt_managed_identity.return_value = "" + + # Execute + aks_agent_init(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Assert - check that console.print was called with warning message + warning_calls = [call for call in mock_console.print.call_args_list + if "not yet ready" in str(call)] + self.assertTrue(len(warning_calls) > 0, "Expected warning message about agent not ready") + + @patch('azext_aks_agent.custom._prompt_managed_identity_configuration') + @patch('azext_aks_agent.custom._prompt_cluster_role_configuration') + @patch('azext_aks_agent.custom._setup_and_create_llm_config') + @patch('azext_aks_agent.custom.get_aks_credentials') + @patch('azext_aks_agent.custom.AKSAgentManager') + @patch('azext_aks_agent.custom.get_subscription_id') + @patch('azext_aks_agent.custom.get_console') + def test_init_with_azureopenai_model_and_workload_identity( + self, mock_get_console, mock_get_subscription_id, mock_aks_manager_class, + mock_get_aks_creds, mock_setup_llm, mock_prompt_cluster_role, + mock_prompt_managed_identity): + """Test initialization with Azure OpenAI model and workload identity client ID.""" + # Setup mocks + mock_console = MagicMock() + mock_get_console.return_value = mock_console + mock_get_subscription_id.return_value = self.subscription_id + mock_get_aks_creds.return_value = self.kubeconfig_path + + mock_agent_manager = MagicMock() + mock_agent_manager.check_llm_config_exists.return_value = False + mock_agent_manager.get_agent_status.return_value = { + "helm_status": "not_found", + "ready": True + } + mock_agent_manager.deploy_agent.return_value = (True, "") + mock_aks_manager_class.return_value = mock_agent_manager + + # Setup LLM config manager with Azure OpenAI model + mock_llm_config_manager = MagicMock() + mock_llm_config_manager.model_list = { + "azure/gpt-4": { + "model": "azure/gpt-4", + "api_base": "https://test-openai.openai.azure.com", + "api_version": "2024-02-15-preview" + } + } + mock_agent_manager.llm_config_manager = mock_llm_config_manager + + # Mock _setup_and_create_llm_config to set the model_list + def setup_llm_side_effect(console, agent_manager): + agent_manager.llm_config_manager.model_list = { + "azure/gpt-4": { + "model": "azure/gpt-4", + "api_base": "https://test-openai.openai.azure.com", + "api_version": "2024-02-15-preview" + } + } + mock_setup_llm.side_effect = setup_llm_side_effect + + mock_prompt_cluster_role.return_value = "custom-role" + mock_prompt_managed_identity.return_value = "test-workload-client-id-12345" + + # Execute + aks_agent_init(self.mock_cmd, self.mock_client, self.resource_group, self.cluster_name) + + # Assert + mock_setup_llm.assert_called_once_with(mock_console, mock_agent_manager) + mock_prompt_managed_identity.assert_called_once() + + # Verify that managed identity client ID was set + self.assertEqual(mock_agent_manager.managed_identity_client_id, "test-workload-client-id-12345") + + # Verify that customized cluster role name was set + self.assertEqual(mock_agent_manager.customized_cluster_role_name, "custom-role") + + # Verify deploy_agent was called + mock_agent_manager.deploy_agent.assert_called_once() + + +if __name__ == '__main__': + unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_helm_manager.py b/src/aks-agent/azext_aks_agent/tests/latest/test_helm_manager.py new file mode 100644 index 00000000000..759b3a286f0 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/latest/test_helm_manager.py @@ -0,0 +1,289 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +""" +Unit tests for HelmManager. +""" + +import os +import tempfile +import unittest +from pathlib import Path +from unittest.mock import Mock, mock_open, patch + +from azext_aks_agent._consts import HELM_VERSION +from azext_aks_agent.agent.k8s.helm_manager import HelmManager + + +class TestHelmManager(unittest.TestCase): + """Test cases for HelmManager.""" + + def setUp(self): + """Set up test fixtures.""" + self.test_helm_version = HELM_VERSION + self.test_kubeconfig = "/mock/kubeconfig" + self.test_bin_dir = "/mock/bin" + + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_init_default_values(self, mock_ensure_helm, mock_mkdir): + """Test HelmManager initialization with default values.""" + mock_ensure_helm.return_value = "/mock/helm" + + manager = HelmManager() + + self.assertEqual(manager.helm_version, "3.16.0") + self.assertIsNone(manager.kubeconfig_path) + self.assertIsNotNone(manager.local_bin_dir) + mock_mkdir.assert_called_once() + mock_ensure_helm.assert_called_once() + + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_init_custom_values(self, mock_ensure_helm, mock_mkdir): + """Test HelmManager initialization with custom values.""" + mock_ensure_helm.return_value = "/mock/helm" + + manager = HelmManager( + helm_version=self.test_helm_version, + local_bin_dir=self.test_bin_dir, + kubeconfig_path=self.test_kubeconfig + ) + + self.assertEqual(manager.helm_version, self.test_helm_version) + self.assertEqual(manager.kubeconfig_path, self.test_kubeconfig) + self.assertEqual(str(manager.local_bin_dir), self.test_bin_dir) + + @patch('azext_aks_agent.agent.k8s.helm_manager.platform.system') + @patch('azext_aks_agent.agent.k8s.helm_manager.platform.machine') + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_get_platform_info_linux_amd64(self, mock_ensure_helm, mock_mkdir, mock_machine, mock_system): + """Test platform detection for Linux AMD64.""" + mock_ensure_helm.return_value = "/mock/helm" + mock_system.return_value = "Linux" + mock_machine.return_value = "x86_64" + + manager = HelmManager() + os_name, arch = manager._get_platform_info() + + self.assertEqual(os_name, "linux") + self.assertEqual(arch, "amd64") + + @patch('azext_aks_agent.agent.k8s.helm_manager.platform.system') + @patch('azext_aks_agent.agent.k8s.helm_manager.platform.machine') + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_get_platform_info_darwin_arm64(self, mock_ensure_helm, mock_mkdir, mock_machine, mock_system): + """Test platform detection for macOS ARM64.""" + mock_ensure_helm.return_value = "/mock/helm" + mock_system.return_value = "Darwin" + mock_machine.return_value = "arm64" + + manager = HelmManager() + os_name, arch = manager._get_platform_info() + + self.assertEqual(os_name, "darwin") + self.assertEqual(arch, "arm64") + + @patch('azext_aks_agent.agent.k8s.helm_manager.platform.system') + @patch('azext_aks_agent.agent.k8s.helm_manager.platform.machine') + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_get_platform_info_windows_amd64(self, mock_ensure_helm, mock_mkdir, mock_machine, mock_system): + """Test platform detection for Windows AMD64.""" + mock_ensure_helm.return_value = "/mock/helm" + mock_system.return_value = "Windows" + mock_machine.return_value = "AMD64" + + manager = HelmManager() + os_name, arch = manager._get_platform_info() + + self.assertEqual(os_name, "windows") + self.assertEqual(arch, "amd64") + + @patch('azext_aks_agent.agent.k8s.helm_manager.subprocess.run') + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_run_command_success(self, mock_ensure_helm, mock_mkdir, mock_run): + """Test successful helm command execution.""" + mock_ensure_helm.return_value = "/mock/helm" + mock_run.return_value = Mock( + returncode=0, + stdout="success output", + stderr="" + ) + + manager = HelmManager() + success, output = manager.run_command(["version"]) + + self.assertTrue(success) + self.assertEqual(output, "success output") + mock_run.assert_called_once() + + @patch('azext_aks_agent.agent.k8s.helm_manager.subprocess.run') + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_run_command_with_kubeconfig(self, mock_ensure_helm, mock_mkdir, mock_run): + """Test helm command execution with kubeconfig.""" + mock_ensure_helm.return_value = "/mock/helm" + mock_run.return_value = Mock( + returncode=0, + stdout="success", + stderr="" + ) + + manager = HelmManager(kubeconfig_path=self.test_kubeconfig) + success, output = manager.run_command(["list"]) + + self.assertTrue(success) + # Verify --kubeconfig flag was added + call_args = mock_run.call_args[0][0] + self.assertIn("--kubeconfig", call_args) + self.assertIn(self.test_kubeconfig, call_args) + + @patch('azext_aks_agent.agent.k8s.helm_manager.subprocess.run') + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_run_command_failure(self, mock_ensure_helm, mock_mkdir, mock_run): + """Test helm command execution failure.""" + mock_ensure_helm.return_value = "/mock/helm" + mock_run.return_value = Mock( + returncode=1, + stdout="", + stderr="error output" + ) + + manager = HelmManager() + success, output = manager.run_command(["invalid"], check=False) + + self.assertFalse(success) + self.assertIn("error output", output) + + @patch('azext_aks_agent.agent.k8s.helm_manager.subprocess.run') + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_get_version(self, mock_ensure_helm, mock_mkdir, mock_run): + """Test getting helm version.""" + mock_ensure_helm.return_value = "/mock/helm" + mock_run.return_value = Mock( + returncode=0, + stdout="version.BuildInfo{Version:\"v3.16.0\"}", + stderr="" + ) + + manager = HelmManager() + version = manager.get_version() + + self.assertIsNotNone(version) + self.assertIn("3.16.0", version) + + @patch('azext_aks_agent.agent.k8s.helm_manager.subprocess.run') + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_repo_add_success(self, mock_ensure_helm, mock_mkdir, mock_run): + """Test adding helm repository.""" + mock_ensure_helm.return_value = "/mock/helm" + mock_run.return_value = Mock( + returncode=0, + stdout="repo added", + stderr="" + ) + + manager = HelmManager() + result = manager.repo_add("test-repo", "https://test.repo") + + self.assertTrue(result) + call_args = mock_run.call_args[0][0] + self.assertIn("repo", call_args) + self.assertIn("add", call_args) + + @patch('azext_aks_agent.agent.k8s.helm_manager.subprocess.run') + @patch('azext_aks_agent.agent.k8s.helm_manager.Path.mkdir') + @patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._ensure_helm_binary') + def test_repo_update_success(self, mock_ensure_helm, mock_mkdir, mock_run): + """Test updating helm repositories.""" + mock_ensure_helm.return_value = "/mock/helm" + mock_run.return_value = Mock( + returncode=0, + stdout="repos updated", + stderr="" + ) + + manager = HelmManager() + result = manager.repo_update() + + self.assertTrue(result) + call_args = mock_run.call_args[0][0] + self.assertIn("repo", call_args) + self.assertIn("update", call_args) + + +class TestHelmManagerRealDownload(unittest.TestCase): + """Integration tests for HelmManager that perform real downloads.""" + + def setUp(self): + """Set up test fixtures.""" + self.test_helm_version = HELM_VERSION + self.temp_dir = None + + def tearDown(self): + """Clean up test fixtures.""" + if self.temp_dir and os.path.exists(self.temp_dir): + import shutil + shutil.rmtree(self.temp_dir, ignore_errors=True) + + @unittest.skipIf(os.environ.get('SKIP_INTEGRATION_TESTS'), "Skipping integration test") + def test_real_download_all_platforms(self): + """Test real helm binary download for all supported OS and architecture combinations.""" + import shutil + + platforms = [ + ("linux", "amd64"), + ("linux", "arm64"), + ("linux", "arm"), + ("linux", "386"), + ("darwin", "amd64"), + ("darwin", "arm64"), + ("windows", "amd64"), + ("windows", "arm64"), + ] + + for os_name, arch in platforms: + with self.subTest(os=os_name, arch=arch): + # Create fresh temp directory for each platform + if self.temp_dir and os.path.exists(self.temp_dir): + shutil.rmtree(self.temp_dir, ignore_errors=True) + + self.temp_dir = tempfile.mkdtemp() + + try: + with patch('azext_aks_agent.agent.k8s.helm_manager.HelmManager._get_platform_info') as mock_platform: + mock_platform.return_value = (os_name, arch) + + manager = HelmManager.__new__(HelmManager) + manager.local_bin_dir = Path(self.temp_dir) + manager.helm_version = self.test_helm_version + + # Perform actual download + result = manager._download_helm_binary() + + # Verify no exception was raised and binary exists + self.assertIsNotNone(result, f"Download failed for {os_name}-{arch}") + self.assertTrue(os.path.exists(result), f"Binary not found for {os_name}-{arch}") + self.assertIn("helm", result) + + # Verify binary is executable on Unix systems + if os_name != "windows": + self.assertTrue(os.access(result, os.X_OK), f"Binary not executable for {os_name}-{arch}") + finally: + # Clean up temp directory after each platform test + if self.temp_dir and os.path.exists(self.temp_dir): + shutil.rmtree(self.temp_dir, ignore_errors=True) + self.temp_dir = None + + +if __name__ == '__main__': + unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/latest/test_llm_config_manager.py b/src/aks-agent/azext_aks_agent/tests/latest/test_llm_config_manager.py new file mode 100644 index 00000000000..3904f1b19d7 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/latest/test_llm_config_manager.py @@ -0,0 +1,157 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +""" +Unit tests for LLMConfigManager. +""" + +import unittest +from unittest.mock import MagicMock, Mock, patch + +from azext_aks_agent.agent.llm_config_manager import LLMConfigManager +from azure.cli.core.azclierror import AzCLIError + + +class TestLLMConfigManager(unittest.TestCase): + """Test cases for LLMConfigManager.""" + + def setUp(self): + """Set up test fixtures.""" + self.manager = LLMConfigManager() + self.test_model_config = { + "model": "gpt-4", + "api_key": "test-key", + "api_base": "https://test.openai.azure.com", + "api_version": "2023-05-15", + } + + def test_init_empty(self): + """Test LLMConfigManager initialization with no models.""" + manager = LLMConfigManager() + self.assertIsNotNone(manager.model_list) + self.assertEqual(len(manager.model_list), 0) + + def test_init_with_models(self): + """Test LLMConfigManager initialization with existing models.""" + models = {"azure/gpt-4": self.test_model_config} + manager = LLMConfigManager(model_list=models) + self.assertEqual(len(manager.model_list), 1) + self.assertIn("azure/gpt-4", manager.model_list) + + def test_save_model_config(self): + """Test saving model configuration.""" + mock_provider = Mock() + mock_provider.model_name.return_value = "azure/gpt-4" + + params = { + "model": "gpt-4", + "api_key": "test-key" + } + + self.manager.save(mock_provider, params) + + self.assertEqual(len(self.manager.model_list), 1) + self.assertIn("azure/gpt-4", self.manager.model_list) + self.assertEqual(self.manager.model_list["azure/gpt-4"]["model"], "azure/gpt-4") + + @patch('azext_aks_agent.agent.llm_config_manager.LLMProvider.to_k8s_secret_data') + def test_get_llm_model_secret_data(self, mock_to_secret): + """Test generating Kubernetes secret data.""" + mock_to_secret.return_value = {"API_KEY": "encoded-key"} + self.manager.model_list = { + "azure/gpt-4": self.test_model_config + } + + result = self.manager.get_llm_model_secret_data() + + self.assertIsNotNone(result) + mock_to_secret.assert_called_once() + + @patch('azext_aks_agent.agent.llm_config_manager.LLMProvider.to_env_vars') + def test_get_env_vars(self, mock_to_env): + """Test generating environment variables.""" + mock_to_env.return_value = [{"name": "API_KEY", "valueFrom": {"secretKeyRef": {"name": "test-secret"}}}] + self.manager.model_list = { + "azure/gpt-4": self.test_model_config + } + + result = self.manager.get_env_vars("test-secret") + + self.assertIsNotNone(result) + mock_to_env.assert_called_once() + + @patch('azext_aks_agent.agent.llm_config_manager.LLMProvider.to_secured_model_list_config') + def test_secured_model_list_multiple_models(self, mock_to_secured): + """Test secured_model_list with multiple models.""" + gpt4_secured = { + "model": "azure/gpt-4", + "api_key": "{{ env.AZURE_GPT_4_API_KEY }}" + } + gpt35_secured = { + "model": "azure/gpt-35-turbo", + "api_key": "{{ env.AZURE_GPT_35_TURBO_API_KEY }}" + } + + mock_to_secured.side_effect = [gpt4_secured, gpt35_secured] + + self.manager.model_list = { + "azure/gpt-4": {"model": "azure/gpt-4", "api_key": "key1"}, + "azure/gpt-35-turbo": {"model": "azure/gpt-35-turbo", "api_key": "key2"} + } + + result = self.manager.secured_model_list() + + self.assertEqual(len(result), 2) + self.assertIn("azure/gpt-4", result) + self.assertIn("azure/gpt-35-turbo", result) + self.assertEqual(result["azure/gpt-4"], gpt4_secured) + self.assertEqual(result["azure/gpt-35-turbo"], gpt35_secured) + self.assertEqual(mock_to_secured.call_count, 2) + + @patch('azext_aks_agent.agent.llm_config_manager.LLMProvider.to_secured_model_list_config') + def test_secured_model_list_does_not_modify_original(self, mock_to_secured): + """Test that secured_model_list doesn't modify the original model_list.""" + original_api_key = "test-key" + original_config = { + "model": "azure/gpt-4", + "api_key": original_api_key + } + + secured_config = { + "model": "azure/gpt-4", + "api_key": "{{ env.AZURE_GPT_4_API_KEY }}" + } + mock_to_secured.return_value = secured_config + + self.manager.model_list = { + "azure/gpt-4": original_config + } + + result = self.manager.secured_model_list() + + # Verify original model_list is unchanged + self.assertEqual(self.manager.model_list["azure/gpt-4"]["api_key"], original_api_key) + + # Verify result has secured api_key + self.assertEqual(result["azure/gpt-4"]["api_key"], "{{ env.AZURE_GPT_4_API_KEY }}") + + @patch('azext_aks_agent.agent.llm_config_manager.LLMProvider.to_secured_model_list_config') + def test_secured_model_list_preserves_model_names(self, mock_to_secured): + """Test that secured_model_list preserves model names as keys.""" + mock_to_secured.return_value = {"secured": "config"} + + model_names = ["azure/gpt-4", "openai/gpt-4-turbo", "anthropic/claude-3"] + for model_name in model_names: + self.manager.model_list[model_name] = {"model": model_name} + + result = self.manager.secured_model_list() + + # Verify all model names are preserved as keys + for model_name in model_names: + self.assertIn(model_name, result) + + +if __name__ == '__main__': + unittest.main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/__init__.py b/src/aks-agent/azext_aks_agent/vendored_sdks/__init__.py similarity index 100% rename from src/aks-agent/azext_aks_agent/tests/evals/__init__.py rename to src/aks-agent/azext_aks_agent/vendored_sdks/__init__.py diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/__init__.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/__init__.py new file mode 100644 index 00000000000..999067d049c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/__init__.py @@ -0,0 +1,32 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=wrong-import-position + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from ._patch import * # pylint: disable=unused-wildcard-import + +from ._container_service_client import ContainerServiceClient # type: ignore +from ._version import VERSION + +__version__ = VERSION + +try: + from ._patch import __all__ as _patch_all + from ._patch import * +except ImportError: + _patch_all = [] +from ._patch import patch_sdk as _patch_sdk + +__all__ = [ + "ContainerServiceClient", +] +__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore + +_patch_sdk() diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_configuration.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_configuration.py new file mode 100644 index 00000000000..2a018b2cb81 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_configuration.py @@ -0,0 +1,75 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, Optional, TYPE_CHECKING + +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy + +from ._version import VERSION + +if TYPE_CHECKING: + from azure.core import AzureClouds + from azure.core.credentials import TokenCredential + + +class ContainerServiceClientConfiguration: # pylint: disable=too-many-instance-attributes + """Configuration for ContainerServiceClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: The ID of the target subscription. The value must be an UUID. Required. + :type subscription_id: str + :param cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is + None. + :type cloud_setting: ~azure.core.AzureClouds + :keyword api_version: Api Version. Default value is "2025-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + """ + + def __init__( + self, + credential: "TokenCredential", + subscription_id: str, + cloud_setting: Optional["AzureClouds"] = None, + **kwargs: Any + ) -> None: + api_version: str = kwargs.pop("api_version", "2025-10-01") + + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + + self.credential = credential + self.subscription_id = subscription_id + self.cloud_setting = cloud_setting + self.api_version = api_version + self.credential_scopes = kwargs.pop("credential_scopes", ["https://management.azure.com/.default"]) + kwargs.setdefault("sdk_moniker", "mgmt-containerservice/{}".format(VERSION)) + self.polling_interval = kwargs.get("polling_interval", 30) + self._configure(**kwargs) + + def _configure(self, **kwargs: Any) -> None: + self.user_agent_policy = kwargs.get("user_agent_policy") or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get("headers_policy") or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get("proxy_policy") or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get("logging_policy") or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get("http_logging_policy") or ARMHttpLoggingPolicy(**kwargs) + self.custom_hook_policy = kwargs.get("custom_hook_policy") or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get("redirect_policy") or policies.RedirectPolicy(**kwargs) + self.retry_policy = kwargs.get("retry_policy") or policies.RetryPolicy(**kwargs) + self.authentication_policy = kwargs.get("authentication_policy") + if self.credential and not self.authentication_policy: + self.authentication_policy = ARMChallengeAuthenticationPolicy( + self.credential, *self.credential_scopes, **kwargs + ) diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_container_service_client.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_container_service_client.py new file mode 100644 index 00000000000..b5b52bb4815 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_container_service_client.py @@ -0,0 +1,197 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from copy import deepcopy +from typing import Any, Optional, TYPE_CHECKING, cast +from typing_extensions import Self + +from azure.core.pipeline import policies +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.settings import settings +from azure.mgmt.core import ARMPipelineClient +from azure.mgmt.core.policies import ARMAutoResourceProviderRegistrationPolicy +from azure.mgmt.core.tools import get_arm_endpoints + +from . import models as _models +from ._configuration import ContainerServiceClientConfiguration +from ._utils.serialization import Deserializer, Serializer +from .operations import ( + AgentPoolsOperations, + MachinesOperations, + MaintenanceConfigurationsOperations, + ManagedClustersOperations, + ManagedNamespacesOperations, + Operations, + PrivateEndpointConnectionsOperations, + PrivateLinkResourcesOperations, + ResolvePrivateLinkServiceIdOperations, + SnapshotsOperations, + TrustedAccessRoleBindingsOperations, + TrustedAccessRolesOperations, +) + +if TYPE_CHECKING: + from azure.core import AzureClouds + from azure.core.credentials import TokenCredential + + +class ContainerServiceClient: # pylint: disable=too-many-instance-attributes + """The Container Service Client. + + :ivar operations: Operations operations + :vartype operations: azure.mgmt.containerservice.operations.Operations + :ivar managed_clusters: ManagedClustersOperations operations + :vartype managed_clusters: azure.mgmt.containerservice.operations.ManagedClustersOperations + :ivar maintenance_configurations: MaintenanceConfigurationsOperations operations + :vartype maintenance_configurations: + azure.mgmt.containerservice.operations.MaintenanceConfigurationsOperations + :ivar managed_namespaces: ManagedNamespacesOperations operations + :vartype managed_namespaces: azure.mgmt.containerservice.operations.ManagedNamespacesOperations + :ivar agent_pools: AgentPoolsOperations operations + :vartype agent_pools: azure.mgmt.containerservice.operations.AgentPoolsOperations + :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations + :vartype private_endpoint_connections: + azure.mgmt.containerservice.operations.PrivateEndpointConnectionsOperations + :ivar private_link_resources: PrivateLinkResourcesOperations operations + :vartype private_link_resources: + azure.mgmt.containerservice.operations.PrivateLinkResourcesOperations + :ivar resolve_private_link_service_id: ResolvePrivateLinkServiceIdOperations operations + :vartype resolve_private_link_service_id: + azure.mgmt.containerservice.operations.ResolvePrivateLinkServiceIdOperations + :ivar snapshots: SnapshotsOperations operations + :vartype snapshots: azure.mgmt.containerservice.operations.SnapshotsOperations + :ivar trusted_access_role_bindings: TrustedAccessRoleBindingsOperations operations + :vartype trusted_access_role_bindings: + azure.mgmt.containerservice.operations.TrustedAccessRoleBindingsOperations + :ivar trusted_access_roles: TrustedAccessRolesOperations operations + :vartype trusted_access_roles: + azure.mgmt.containerservice.operations.TrustedAccessRolesOperations + :ivar machines: MachinesOperations operations + :vartype machines: azure.mgmt.containerservice.operations.MachinesOperations + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: The ID of the target subscription. The value must be an UUID. Required. + :type subscription_id: str + :param base_url: Service URL. Default value is None. + :type base_url: str + :keyword cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is + None. + :paramtype cloud_setting: ~azure.core.AzureClouds + :keyword api_version: Api Version. Default value is "2025-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + """ + + def __init__( + self, + credential: "TokenCredential", + subscription_id: str, + base_url: Optional[str] = None, + *, + cloud_setting: Optional["AzureClouds"] = None, + **kwargs: Any + ) -> None: + _cloud = cloud_setting or settings.current.azure_cloud # type: ignore + _endpoints = get_arm_endpoints(_cloud) + if not base_url: + base_url = _endpoints["resource_manager"] + credential_scopes = kwargs.pop("credential_scopes", _endpoints["credential_scopes"]) + self._config = ContainerServiceClientConfiguration( + credential=credential, + subscription_id=subscription_id, + cloud_setting=cloud_setting, + credential_scopes=credential_scopes, + **kwargs + ) + + _policies = kwargs.pop("policies", None) + if _policies is None: + _policies = [ + policies.RequestIdPolicy(**kwargs), + self._config.headers_policy, + self._config.user_agent_policy, + self._config.proxy_policy, + policies.ContentDecodePolicy(**kwargs), + ARMAutoResourceProviderRegistrationPolicy(), + self._config.redirect_policy, + self._config.retry_policy, + self._config.authentication_policy, + self._config.custom_hook_policy, + self._config.logging_policy, + policies.DistributedTracingPolicy(**kwargs), + policies.SensitiveHeaderCleanupPolicy(**kwargs) if self._config.redirect_policy else None, + self._config.http_logging_policy, + ] + self._client: ARMPipelineClient = ARMPipelineClient(base_url=cast(str, base_url), policies=_policies, **kwargs) + + client_models = {k: v for k, v in _models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + self._serialize.client_side_validation = False + self.operations = Operations(self._client, self._config, self._serialize, self._deserialize) + self.managed_clusters = ManagedClustersOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.maintenance_configurations = MaintenanceConfigurationsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.managed_namespaces = ManagedNamespacesOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.agent_pools = AgentPoolsOperations(self._client, self._config, self._serialize, self._deserialize) + self.private_endpoint_connections = PrivateEndpointConnectionsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.private_link_resources = PrivateLinkResourcesOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.resolve_private_link_service_id = ResolvePrivateLinkServiceIdOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.snapshots = SnapshotsOperations(self._client, self._config, self._serialize, self._deserialize) + self.trusted_access_role_bindings = TrustedAccessRoleBindingsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.trusted_access_roles = TrustedAccessRolesOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.machines = MachinesOperations(self._client, self._config, self._serialize, self._deserialize) + + def _send_request(self, request: HttpRequest, *, stream: bool = False, **kwargs: Any) -> HttpResponse: + """Runs the network request through the client's chained policies. + + >>> from azure.core.rest import HttpRequest + >>> request = HttpRequest("GET", "https://www.example.org/") + + >>> response = client._send_request(request) + + + For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request + + :param request: The network request you want to make. Required. + :type request: ~azure.core.rest.HttpRequest + :keyword bool stream: Whether the response payload will be streamed. Defaults to False. + :return: The response of your network call. Does not do error handling on your response. + :rtype: ~azure.core.rest.HttpResponse + """ + + request_copy = deepcopy(request) + request_copy.url = self._client.format_url(request_copy.url) + return self._client.send_request(request_copy, stream=stream, **kwargs) # type: ignore + + def close(self) -> None: + self._client.close() + + def __enter__(self) -> Self: + self._client.__enter__() + return self + + def __exit__(self, *exc_details: Any) -> None: + self._client.__exit__(*exc_details) diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_patch.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_patch.py new file mode 100644 index 00000000000..8bcb627aa47 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_patch.py @@ -0,0 +1,21 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_utils/__init__.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_utils/__init__.py similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_utils/__init__.py rename to src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_utils/__init__.py diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_utils/serialization.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_utils/serialization.py similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_utils/serialization.py rename to src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_utils/serialization.py diff --git a/src/mobile-network/azext_mobile_network/tests/__init__.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_version.py similarity index 66% rename from src/mobile-network/azext_mobile_network/tests/__init__.py rename to src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_version.py index 5757aea3175..0c7b9c7ab52 100644 --- a/src/mobile-network/azext_mobile_network/tests/__init__.py +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/_version.py @@ -1,6 +1,8 @@ -# -------------------------------------------------------------------------------------------- +# coding=utf-8 +# -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +VERSION = "40.2.0" diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/__init__.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/__init__.py new file mode 100644 index 00000000000..a55668168f0 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/__init__.py @@ -0,0 +1,29 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=wrong-import-position + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from ._patch import * # pylint: disable=unused-wildcard-import + +from ._container_service_client import ContainerServiceClient # type: ignore + +try: + from ._patch import __all__ as _patch_all + from ._patch import * +except ImportError: + _patch_all = [] +from ._patch import patch_sdk as _patch_sdk + +__all__ = [ + "ContainerServiceClient", +] +__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore + +_patch_sdk() diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/_configuration.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/_configuration.py new file mode 100644 index 00000000000..f67b2db6f29 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/_configuration.py @@ -0,0 +1,75 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, Optional, TYPE_CHECKING + +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMHttpLoggingPolicy, AsyncARMChallengeAuthenticationPolicy + +from .._version import VERSION + +if TYPE_CHECKING: + from azure.core import AzureClouds + from azure.core.credentials_async import AsyncTokenCredential + + +class ContainerServiceClientConfiguration: # pylint: disable=too-many-instance-attributes + """Configuration for ContainerServiceClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param subscription_id: The ID of the target subscription. The value must be an UUID. Required. + :type subscription_id: str + :param cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is + None. + :type cloud_setting: ~azure.core.AzureClouds + :keyword api_version: Api Version. Default value is "2025-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + subscription_id: str, + cloud_setting: Optional["AzureClouds"] = None, + **kwargs: Any + ) -> None: + api_version: str = kwargs.pop("api_version", "2025-10-01") + + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + + self.credential = credential + self.subscription_id = subscription_id + self.cloud_setting = cloud_setting + self.api_version = api_version + self.credential_scopes = kwargs.pop("credential_scopes", ["https://management.azure.com/.default"]) + kwargs.setdefault("sdk_moniker", "mgmt-containerservice/{}".format(VERSION)) + self.polling_interval = kwargs.get("polling_interval", 30) + self._configure(**kwargs) + + def _configure(self, **kwargs: Any) -> None: + self.user_agent_policy = kwargs.get("user_agent_policy") or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get("headers_policy") or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get("proxy_policy") or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get("logging_policy") or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get("http_logging_policy") or ARMHttpLoggingPolicy(**kwargs) + self.custom_hook_policy = kwargs.get("custom_hook_policy") or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get("redirect_policy") or policies.AsyncRedirectPolicy(**kwargs) + self.retry_policy = kwargs.get("retry_policy") or policies.AsyncRetryPolicy(**kwargs) + self.authentication_policy = kwargs.get("authentication_policy") + if self.credential and not self.authentication_policy: + self.authentication_policy = AsyncARMChallengeAuthenticationPolicy( + self.credential, *self.credential_scopes, **kwargs + ) diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/_container_service_client.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/_container_service_client.py new file mode 100644 index 00000000000..40bf44c3044 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/_container_service_client.py @@ -0,0 +1,202 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from copy import deepcopy +from typing import Any, Awaitable, Optional, TYPE_CHECKING, cast +from typing_extensions import Self + +from azure.core.pipeline import policies +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.settings import settings +from azure.mgmt.core import AsyncARMPipelineClient +from azure.mgmt.core.policies import AsyncARMAutoResourceProviderRegistrationPolicy +from azure.mgmt.core.tools import get_arm_endpoints + +from .. import models as _models +from .._utils.serialization import Deserializer, Serializer +from ._configuration import ContainerServiceClientConfiguration +from .operations import ( + AgentPoolsOperations, + MachinesOperations, + MaintenanceConfigurationsOperations, + ManagedClustersOperations, + ManagedNamespacesOperations, + Operations, + PrivateEndpointConnectionsOperations, + PrivateLinkResourcesOperations, + ResolvePrivateLinkServiceIdOperations, + SnapshotsOperations, + TrustedAccessRoleBindingsOperations, + TrustedAccessRolesOperations, +) + +if TYPE_CHECKING: + from azure.core import AzureClouds + from azure.core.credentials_async import AsyncTokenCredential + + +class ContainerServiceClient: # pylint: disable=too-many-instance-attributes + """The Container Service Client. + + :ivar operations: Operations operations + :vartype operations: azure.mgmt.containerservice.aio.operations.Operations + :ivar managed_clusters: ManagedClustersOperations operations + :vartype managed_clusters: azure.mgmt.containerservice.aio.operations.ManagedClustersOperations + :ivar maintenance_configurations: MaintenanceConfigurationsOperations operations + :vartype maintenance_configurations: + azure.mgmt.containerservice.aio.operations.MaintenanceConfigurationsOperations + :ivar managed_namespaces: ManagedNamespacesOperations operations + :vartype managed_namespaces: + azure.mgmt.containerservice.aio.operations.ManagedNamespacesOperations + :ivar agent_pools: AgentPoolsOperations operations + :vartype agent_pools: azure.mgmt.containerservice.aio.operations.AgentPoolsOperations + :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations + :vartype private_endpoint_connections: + azure.mgmt.containerservice.aio.operations.PrivateEndpointConnectionsOperations + :ivar private_link_resources: PrivateLinkResourcesOperations operations + :vartype private_link_resources: + azure.mgmt.containerservice.aio.operations.PrivateLinkResourcesOperations + :ivar resolve_private_link_service_id: ResolvePrivateLinkServiceIdOperations operations + :vartype resolve_private_link_service_id: + azure.mgmt.containerservice.aio.operations.ResolvePrivateLinkServiceIdOperations + :ivar snapshots: SnapshotsOperations operations + :vartype snapshots: azure.mgmt.containerservice.aio.operations.SnapshotsOperations + :ivar trusted_access_role_bindings: TrustedAccessRoleBindingsOperations operations + :vartype trusted_access_role_bindings: + azure.mgmt.containerservice.aio.operations.TrustedAccessRoleBindingsOperations + :ivar trusted_access_roles: TrustedAccessRolesOperations operations + :vartype trusted_access_roles: + azure.mgmt.containerservice.aio.operations.TrustedAccessRolesOperations + :ivar machines: MachinesOperations operations + :vartype machines: azure.mgmt.containerservice.aio.operations.MachinesOperations + :param credential: Credential needed for the client to connect to Azure. Required. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param subscription_id: The ID of the target subscription. The value must be an UUID. Required. + :type subscription_id: str + :param base_url: Service URL. Default value is None. + :type base_url: str + :keyword cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is + None. + :paramtype cloud_setting: ~azure.core.AzureClouds + :keyword api_version: Api Version. Default value is "2025-10-01". Note that overriding this + default value may result in unsupported behavior. + :paramtype api_version: str + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no + Retry-After header is present. + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + subscription_id: str, + base_url: Optional[str] = None, + *, + cloud_setting: Optional["AzureClouds"] = None, + **kwargs: Any + ) -> None: + _cloud = cloud_setting or settings.current.azure_cloud # type: ignore + _endpoints = get_arm_endpoints(_cloud) + if not base_url: + base_url = _endpoints["resource_manager"] + credential_scopes = kwargs.pop("credential_scopes", _endpoints["credential_scopes"]) + self._config = ContainerServiceClientConfiguration( + credential=credential, + subscription_id=subscription_id, + cloud_setting=cloud_setting, + credential_scopes=credential_scopes, + **kwargs + ) + + _policies = kwargs.pop("policies", None) + if _policies is None: + _policies = [ + policies.RequestIdPolicy(**kwargs), + self._config.headers_policy, + self._config.user_agent_policy, + self._config.proxy_policy, + policies.ContentDecodePolicy(**kwargs), + AsyncARMAutoResourceProviderRegistrationPolicy(), + self._config.redirect_policy, + self._config.retry_policy, + self._config.authentication_policy, + self._config.custom_hook_policy, + self._config.logging_policy, + policies.DistributedTracingPolicy(**kwargs), + policies.SensitiveHeaderCleanupPolicy(**kwargs) if self._config.redirect_policy else None, + self._config.http_logging_policy, + ] + self._client: AsyncARMPipelineClient = AsyncARMPipelineClient( + base_url=cast(str, base_url), policies=_policies, **kwargs + ) + + client_models = {k: v for k, v in _models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + self._serialize.client_side_validation = False + self.operations = Operations(self._client, self._config, self._serialize, self._deserialize) + self.managed_clusters = ManagedClustersOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.maintenance_configurations = MaintenanceConfigurationsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.managed_namespaces = ManagedNamespacesOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.agent_pools = AgentPoolsOperations(self._client, self._config, self._serialize, self._deserialize) + self.private_endpoint_connections = PrivateEndpointConnectionsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.private_link_resources = PrivateLinkResourcesOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.resolve_private_link_service_id = ResolvePrivateLinkServiceIdOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.snapshots = SnapshotsOperations(self._client, self._config, self._serialize, self._deserialize) + self.trusted_access_role_bindings = TrustedAccessRoleBindingsOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.trusted_access_roles = TrustedAccessRolesOperations( + self._client, self._config, self._serialize, self._deserialize + ) + self.machines = MachinesOperations(self._client, self._config, self._serialize, self._deserialize) + + def _send_request( + self, request: HttpRequest, *, stream: bool = False, **kwargs: Any + ) -> Awaitable[AsyncHttpResponse]: + """Runs the network request through the client's chained policies. + + >>> from azure.core.rest import HttpRequest + >>> request = HttpRequest("GET", "https://www.example.org/") + + >>> response = await client._send_request(request) + + + For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request + + :param request: The network request you want to make. Required. + :type request: ~azure.core.rest.HttpRequest + :keyword bool stream: Whether the response payload will be streamed. Defaults to False. + :return: The response of your network call. Does not do error handling on your response. + :rtype: ~azure.core.rest.AsyncHttpResponse + """ + + request_copy = deepcopy(request) + request_copy.url = self._client.format_url(request_copy.url) + return self._client.send_request(request_copy, stream=stream, **kwargs) # type: ignore + + async def close(self) -> None: + await self._client.close() + + async def __aenter__(self) -> Self: + await self._client.__aenter__() + return self + + async def __aexit__(self, *exc_details: Any) -> None: + await self._client.__aexit__(*exc_details) diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/_patch.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/_patch.py new file mode 100644 index 00000000000..8bcb627aa47 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/_patch.py @@ -0,0 +1,21 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/__init__.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/__init__.py new file mode 100644 index 00000000000..70b2a677e7b --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/__init__.py @@ -0,0 +1,47 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=wrong-import-position + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from ._patch import * # pylint: disable=unused-wildcard-import + +from ._operations import Operations # type: ignore +from ._managed_clusters_operations import ManagedClustersOperations # type: ignore +from ._maintenance_configurations_operations import MaintenanceConfigurationsOperations # type: ignore +from ._managed_namespaces_operations import ManagedNamespacesOperations # type: ignore +from ._agent_pools_operations import AgentPoolsOperations # type: ignore +from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations # type: ignore +from ._private_link_resources_operations import PrivateLinkResourcesOperations # type: ignore +from ._resolve_private_link_service_id_operations import ResolvePrivateLinkServiceIdOperations # type: ignore +from ._snapshots_operations import SnapshotsOperations # type: ignore +from ._trusted_access_role_bindings_operations import TrustedAccessRoleBindingsOperations # type: ignore +from ._trusted_access_roles_operations import TrustedAccessRolesOperations # type: ignore +from ._machines_operations import MachinesOperations # type: ignore + +from ._patch import __all__ as _patch_all +from ._patch import * +from ._patch import patch_sdk as _patch_sdk + +__all__ = [ + "Operations", + "ManagedClustersOperations", + "MaintenanceConfigurationsOperations", + "ManagedNamespacesOperations", + "AgentPoolsOperations", + "PrivateEndpointConnectionsOperations", + "PrivateLinkResourcesOperations", + "ResolvePrivateLinkServiceIdOperations", + "SnapshotsOperations", + "TrustedAccessRoleBindingsOperations", + "TrustedAccessRolesOperations", + "MachinesOperations", +] +__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore +_patch_sdk() diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_agent_pools_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_agent_pools_operations.py new file mode 100644 index 00000000000..32e36defb7e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_agent_pools_operations.py @@ -0,0 +1,1214 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +import urllib.parse + +from azure.core import AsyncPipelineClient +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + StreamClosedError, + StreamConsumedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._agent_pools_operations import ( + build_abort_latest_operation_request, + build_create_or_update_request, + build_delete_machines_request, + build_delete_request, + build_get_available_agent_pool_versions_request, + build_get_request, + build_get_upgrade_profile_request, + build_list_request, + build_upgrade_node_image_version_request, +) +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class AgentPoolsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`agent_pools` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + async def _abort_latest_operation_initial( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_abort_latest_operation_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_abort_latest_operation( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> AsyncLROPoller[None]: + """Aborts last operation running on agent pool. + + Aborts the currently running operation on the agent pool. The Agent Pool will be moved to a + Canceling state and eventually to a Canceled state when cancellation finishes. If the operation + completes before cancellation can take place, a 409 error code is returned. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._abort_latest_operation_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, AsyncARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + @distributed_trace + def list(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> AsyncItemPaged["_models.AgentPool"]: + """Gets a list of agent pools in the specified managed cluster. + + Gets a list of agent pools in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either AgentPool or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.AgentPool] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.AgentPoolListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("AgentPoolListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace_async + async def get( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> _models.AgentPool: + """Gets the specified managed cluster agent pool. + + Gets the specified managed cluster agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :return: AgentPool or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.AgentPool + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.AgentPool] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("AgentPool", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + async def _create_or_update_initial( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + parameters: Union[_models.AgentPool, IO[bytes]], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "AgentPool") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + if_match=if_match, + if_none_match=if_none_match, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + parameters: _models.AgentPool, + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.AgentPool]: + """Creates or updates an agent pool in the specified managed cluster. + + Creates or updates an agent pool in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param parameters: The agent pool to create or update. Required. + :type parameters: ~azure.mgmt.containerservice.models.AgentPool + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either AgentPool or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.AgentPool] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + parameters: IO[bytes], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.AgentPool]: + """Creates or updates an agent pool in the specified managed cluster. + + Creates or updates an agent pool in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param parameters: The agent pool to create or update. Required. + :type parameters: IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either AgentPool or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.AgentPool] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + parameters: Union[_models.AgentPool, IO[bytes]], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs: Any + ) -> AsyncLROPoller[_models.AgentPool]: + """Creates or updates an agent pool in the specified managed cluster. + + Creates or updates an agent pool in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param parameters: The agent pool to create or update. Is either a AgentPool type or a + IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.AgentPool or IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :return: An instance of AsyncLROPoller that returns either AgentPool or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.AgentPool] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.AgentPool] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + parameters=parameters, + if_match=if_match, + if_none_match=if_none_match, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("AgentPool", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[_models.AgentPool].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[_models.AgentPool]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + async def _delete_initial( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + ignore_pod_disruption_budget: Optional[bool] = None, + if_match: Optional[str] = None, + **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + ignore_pod_disruption_budget=ignore_pod_disruption_budget, + if_match=if_match, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_delete( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + ignore_pod_disruption_budget: Optional[bool] = None, + if_match: Optional[str] = None, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes an agent pool in the specified managed cluster. + + Deletes an agent pool in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param ignore_pod_disruption_budget: ignore-pod-disruption-budget=true to delete those pods on + a node without considering Pod Disruption Budget. Default value is None. + :type ignore_pod_disruption_budget: bool + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + ignore_pod_disruption_budget=ignore_pod_disruption_budget, + if_match=if_match, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + @distributed_trace_async + async def get_upgrade_profile( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> _models.AgentPoolUpgradeProfile: + """Gets the upgrade profile for an agent pool. + + Gets the upgrade profile for an agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :return: AgentPoolUpgradeProfile or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.AgentPoolUpgradeProfile + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.AgentPoolUpgradeProfile] = kwargs.pop("cls", None) + + _request = build_get_upgrade_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("AgentPoolUpgradeProfile", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + async def _delete_machines_initial( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + machines: Union[_models.AgentPoolDeleteMachinesParameter, IO[bytes]], + **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(machines, (IOBase, bytes)): + _content = machines + else: + _json = self._serialize.body(machines, "AgentPoolDeleteMachinesParameter") + + _request = build_delete_machines_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @overload + async def begin_delete_machines( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + machines: _models.AgentPoolDeleteMachinesParameter, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes specific machines in an agent pool. + + Deletes specific machines in an agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param machines: A list of machines from the agent pool to be deleted. Required. + :type machines: ~azure.mgmt.containerservice.models.AgentPoolDeleteMachinesParameter + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_delete_machines( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + machines: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes specific machines in an agent pool. + + Deletes specific machines in an agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param machines: A list of machines from the agent pool to be deleted. Required. + :type machines: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_delete_machines( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + machines: Union[_models.AgentPoolDeleteMachinesParameter, IO[bytes]], + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes specific machines in an agent pool. + + Deletes specific machines in an agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param machines: A list of machines from the agent pool to be deleted. Is either a + AgentPoolDeleteMachinesParameter type or a IO[bytes] type. Required. + :type machines: ~azure.mgmt.containerservice.models.AgentPoolDeleteMachinesParameter or + IO[bytes] + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._delete_machines_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + machines=machines, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + @distributed_trace_async + async def get_available_agent_pool_versions( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> _models.AgentPoolAvailableVersions: + """Gets a list of supported Kubernetes versions for the specified agent pool. + + See `supported Kubernetes versions + `_ for more details about + the version lifecycle. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: AgentPoolAvailableVersions or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.AgentPoolAvailableVersions + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.AgentPoolAvailableVersions] = kwargs.pop("cls", None) + + _request = build_get_available_agent_pool_versions_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("AgentPoolAvailableVersions", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + async def _upgrade_node_image_version_initial( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_upgrade_node_image_version_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_upgrade_node_image_version( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> AsyncLROPoller[_models.AgentPool]: + """Upgrades the node image version of an agent pool to the latest. + + Upgrading the node image version of an agent pool applies the newest OS and runtime updates to + the nodes. AKS provides one new image per week with the latest updates. For more details on + node image versions, see: https://docs.microsoft.com/azure/aks/node-image-upgrade. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :return: An instance of AsyncLROPoller that returns either AgentPool or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.AgentPool] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._upgrade_node_image_version_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + response_headers = {} + response = pipeline_response.http_response + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = self._deserialize("AgentPool", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, AsyncARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[_models.AgentPool].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[_models.AgentPool]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_machines_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_machines_operations.py new file mode 100644 index 00000000000..ed5c1c39eb3 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_machines_operations.py @@ -0,0 +1,217 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from typing import Any, Callable, Optional, TypeVar +import urllib.parse + +from azure.core import AsyncPipelineClient +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._machines_operations import build_get_request, build_list_request +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class MachinesOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`machines` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> AsyncItemPaged["_models.Machine"]: + """Gets a list of machines in the specified agent pool. + + Gets a list of machines in the specified agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :return: An iterator like instance of either Machine or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.Machine] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MachineListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("MachineListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace_async + async def get( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, machine_name: str, **kwargs: Any + ) -> _models.Machine: + """Get a specific machine in the specified agent pool. + + Get a specific machine in the specified agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param machine_name: host name of the machine. Required. + :type machine_name: str + :return: Machine or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Machine + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.Machine] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + machine_name=machine_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("Machine", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_maintenance_configurations_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_maintenance_configurations_operations.py new file mode 100644 index 00000000000..e11d52fc87f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_maintenance_configurations_operations.py @@ -0,0 +1,434 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +import urllib.parse + +from azure.core import AsyncPipelineClient +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._maintenance_configurations_operations import ( + build_create_or_update_request, + build_delete_request, + build_get_request, + build_list_by_managed_cluster_request, +) +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class MaintenanceConfigurationsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`maintenance_configurations` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list_by_managed_cluster( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncItemPaged["_models.MaintenanceConfiguration"]: + """Gets a list of maintenance configurations in the specified managed cluster. + + Gets a list of maintenance configurations in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either MaintenanceConfiguration or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.MaintenanceConfiguration] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MaintenanceConfigurationListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_by_managed_cluster_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("MaintenanceConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace_async + async def get( + self, resource_group_name: str, resource_name: str, config_name: str, **kwargs: Any + ) -> _models.MaintenanceConfiguration: + """Gets the specified maintenance configuration of a managed cluster. + + Gets the specified maintenance configuration of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. + :type config_name: str + :return: MaintenanceConfiguration or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MaintenanceConfiguration + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MaintenanceConfiguration] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + config_name=config_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("MaintenanceConfiguration", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + async def create_or_update( + self, + resource_group_name: str, + resource_name: str, + config_name: str, + parameters: _models.MaintenanceConfiguration, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.MaintenanceConfiguration: + """Creates or updates a maintenance configuration in the specified managed cluster. + + Creates or updates a maintenance configuration in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. + :type config_name: str + :param parameters: The maintenance configuration to create or update. Required. + :type parameters: ~azure.mgmt.containerservice.models.MaintenanceConfiguration + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: MaintenanceConfiguration or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MaintenanceConfiguration + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def create_or_update( + self, + resource_group_name: str, + resource_name: str, + config_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.MaintenanceConfiguration: + """Creates or updates a maintenance configuration in the specified managed cluster. + + Creates or updates a maintenance configuration in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. + :type config_name: str + :param parameters: The maintenance configuration to create or update. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: MaintenanceConfiguration or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MaintenanceConfiguration + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def create_or_update( + self, + resource_group_name: str, + resource_name: str, + config_name: str, + parameters: Union[_models.MaintenanceConfiguration, IO[bytes]], + **kwargs: Any + ) -> _models.MaintenanceConfiguration: + """Creates or updates a maintenance configuration in the specified managed cluster. + + Creates or updates a maintenance configuration in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. + :type config_name: str + :param parameters: The maintenance configuration to create or update. Is either a + MaintenanceConfiguration type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.MaintenanceConfiguration or IO[bytes] + :return: MaintenanceConfiguration or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MaintenanceConfiguration + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.MaintenanceConfiguration] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "MaintenanceConfiguration") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + config_name=config_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("MaintenanceConfiguration", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def delete(self, resource_group_name: str, resource_name: str, config_name: str, **kwargs: Any) -> None: + """Deletes a maintenance configuration. + + Deletes a maintenance configuration. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. + :type config_name: str + :return: None or the result of cls(response) + :rtype: None + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + config_name=config_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_managed_clusters_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_managed_clusters_operations.py new file mode 100644 index 00000000000..69e06849da8 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_managed_clusters_operations.py @@ -0,0 +1,2969 @@ +# pylint: disable=too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +import urllib.parse + +from azure.core import AsyncPipelineClient +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + StreamClosedError, + StreamConsumedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._managed_clusters_operations import ( + build_abort_latest_operation_request, + build_create_or_update_request, + build_delete_request, + build_get_access_profile_request, + build_get_command_result_request, + build_get_mesh_revision_profile_request, + build_get_mesh_upgrade_profile_request, + build_get_request, + build_get_upgrade_profile_request, + build_list_by_resource_group_request, + build_list_cluster_admin_credentials_request, + build_list_cluster_monitoring_user_credentials_request, + build_list_cluster_user_credentials_request, + build_list_kubernetes_versions_request, + build_list_mesh_revision_profiles_request, + build_list_mesh_upgrade_profiles_request, + build_list_outbound_network_dependencies_endpoints_request, + build_list_request, + build_reset_aad_profile_request, + build_reset_service_principal_profile_request, + build_rotate_cluster_certificates_request, + build_rotate_service_account_signing_keys_request, + build_run_command_request, + build_start_request, + build_stop_request, + build_update_tags_request, +) +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class ManagedClustersOperations: # pylint: disable=too-many-public-methods + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`managed_clusters` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace_async + async def list_kubernetes_versions(self, location: str, **kwargs: Any) -> _models.KubernetesVersionListResult: + """Gets a list of supported Kubernetes versions in the specified subscription. + + Contains extra metadata on the version, including supported patch versions, capabilities, + available upgrades, and details on preview status of the version. + + :param location: The name of the Azure region. Required. + :type location: str + :return: KubernetesVersionListResult or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.KubernetesVersionListResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.KubernetesVersionListResult] = kwargs.pop("cls", None) + + _request = build_list_kubernetes_versions_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("KubernetesVersionListResult", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def list(self, **kwargs: Any) -> AsyncItemPaged["_models.ManagedCluster"]: + """Gets a list of managed clusters in the specified subscription. + + Gets a list of managed clusters in the specified subscription. + + :return: An iterator like instance of either ManagedCluster or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedClusterListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ManagedClusterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace + def list_by_resource_group( + self, resource_group_name: str, **kwargs: Any + ) -> AsyncItemPaged["_models.ManagedCluster"]: + """Lists managed clusters in the specified subscription and resource group. + + Lists managed clusters in the specified subscription and resource group. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :return: An iterator like instance of either ManagedCluster or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedClusterListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ManagedClusterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace_async + async def get_upgrade_profile( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> _models.ManagedClusterUpgradeProfile: + """Gets the upgrade profile of a managed cluster. + + Gets the upgrade profile of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: ManagedClusterUpgradeProfile or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedClusterUpgradeProfile + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedClusterUpgradeProfile] = kwargs.pop("cls", None) + + _request = build_get_upgrade_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ManagedClusterUpgradeProfile", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def get_access_profile( + self, resource_group_name: str, resource_name: str, role_name: str, **kwargs: Any + ) -> _models.ManagedClusterAccessProfile: + """Gets an access profile of a managed cluster. + + **WARNING**\\ : This API will be deprecated. Instead use `ListClusterUserCredentials + `_ or + `ListClusterAdminCredentials + `_ . + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param role_name: The name of the role for managed cluster accessProfile resource. Required. + :type role_name: str + :return: ManagedClusterAccessProfile or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedClusterAccessProfile + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedClusterAccessProfile] = kwargs.pop("cls", None) + + _request = build_get_access_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + role_name=role_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ManagedClusterAccessProfile", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def list_cluster_admin_credentials( + self, resource_group_name: str, resource_name: str, server_fqdn: Optional[str] = None, **kwargs: Any + ) -> _models.CredentialResults: + """Lists the admin credentials of a managed cluster. + + Lists the admin credentials of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. + :type server_fqdn: str + :return: CredentialResults or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.CredentialResults + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.CredentialResults] = kwargs.pop("cls", None) + + _request = build_list_cluster_admin_credentials_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + server_fqdn=server_fqdn, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def list_cluster_user_credentials( + self, + resource_group_name: str, + resource_name: str, + server_fqdn: Optional[str] = None, + format: Optional[Union[str, _models.Format]] = None, + **kwargs: Any + ) -> _models.CredentialResults: + """Lists the user credentials of a managed cluster. + + Lists the user credentials of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. + :type server_fqdn: str + :param format: Only apply to AAD clusters, specifies the format of returned kubeconfig. Format + 'azure' will return azure auth-provider kubeconfig; format 'exec' will return exec format + kubeconfig, which requires kubelogin binary in the path. Known values are: "azure", "exec", and + "exec". Default value is None. + :type format: str or ~azure.mgmt.containerservice.models.Format + :return: CredentialResults or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.CredentialResults + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.CredentialResults] = kwargs.pop("cls", None) + + _request = build_list_cluster_user_credentials_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + server_fqdn=server_fqdn, + format=format, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def list_cluster_monitoring_user_credentials( + self, resource_group_name: str, resource_name: str, server_fqdn: Optional[str] = None, **kwargs: Any + ) -> _models.CredentialResults: + """Lists the cluster monitoring user credentials of a managed cluster. + + Lists the cluster monitoring user credentials of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. + :type server_fqdn: str + :return: CredentialResults or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.CredentialResults + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.CredentialResults] = kwargs.pop("cls", None) + + _request = build_list_cluster_monitoring_user_credentials_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + server_fqdn=server_fqdn, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def get(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> _models.ManagedCluster: + """Gets a managed cluster. + + Gets a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: ManagedCluster or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedCluster + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedCluster] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ManagedCluster", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + async def _create_or_update_initial( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedCluster, IO[bytes]], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "ManagedCluster") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + if_match=if_match, + if_none_match=if_none_match, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.ManagedCluster, + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ManagedCluster]: + """Creates or updates a managed cluster. + + Creates or updates a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The managed cluster to create or update. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedCluster + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ManagedCluster]: + """Creates or updates a managed cluster. + + Creates or updates a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The managed cluster to create or update. Required. + :type parameters: IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedCluster, IO[bytes]], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs: Any + ) -> AsyncLROPoller[_models.ManagedCluster]: + """Creates or updates a managed cluster. + + Creates or updates a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The managed cluster to create or update. Is either a ManagedCluster type or + a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedCluster or IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :return: An instance of AsyncLROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ManagedCluster] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + parameters=parameters, + if_match=if_match, + if_none_match=if_none_match, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("ManagedCluster", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[_models.ManagedCluster].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[_models.ManagedCluster]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + async def _update_tags_initial( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.TagsObject, IO[bytes]], + if_match: Optional[str] = None, + **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "TagsObject") + + _request = build_update_tags_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + if_match=if_match, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + async def begin_update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.TagsObject, + if_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ManagedCluster]: + """Updates tags on a managed cluster. + + Updates tags on a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update Managed Cluster Tags operation. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + if_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ManagedCluster]: + """Updates tags on a managed cluster. + + Updates tags on a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update Managed Cluster Tags operation. Required. + :type parameters: IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.TagsObject, IO[bytes]], + if_match: Optional[str] = None, + **kwargs: Any + ) -> AsyncLROPoller[_models.ManagedCluster]: + """Updates tags on a managed cluster. + + Updates tags on a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update Managed Cluster Tags operation. Is either + a TagsObject type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject or IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :return: An instance of AsyncLROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ManagedCluster] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._update_tags_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + parameters=parameters, + if_match=if_match, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("ManagedCluster", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[_models.ManagedCluster].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[_models.ManagedCluster]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + async def _delete_initial( + self, resource_group_name: str, resource_name: str, if_match: Optional[str] = None, **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + if_match=if_match, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_delete( + self, resource_group_name: str, resource_name: str, if_match: Optional[str] = None, **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a managed cluster. + + Deletes a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + if_match=if_match, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + async def _reset_service_principal_profile_initial( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedClusterServicePrincipalProfile, IO[bytes]], + **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "ManagedClusterServicePrincipalProfile") + + _request = build_reset_service_principal_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @overload + async def begin_reset_service_principal_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.ManagedClusterServicePrincipalProfile, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Reset the Service Principal Profile of a managed cluster. + + This action cannot be performed on a cluster that is not using a service principal. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The service principal profile to set on the managed cluster. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedClusterServicePrincipalProfile + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_reset_service_principal_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Reset the Service Principal Profile of a managed cluster. + + This action cannot be performed on a cluster that is not using a service principal. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The service principal profile to set on the managed cluster. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_reset_service_principal_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedClusterServicePrincipalProfile, IO[bytes]], + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Reset the Service Principal Profile of a managed cluster. + + This action cannot be performed on a cluster that is not using a service principal. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The service principal profile to set on the managed cluster. Is either a + ManagedClusterServicePrincipalProfile type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedClusterServicePrincipalProfile or + IO[bytes] + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._reset_service_principal_profile_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, AsyncARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + async def _reset_aad_profile_initial( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedClusterAADProfile, IO[bytes]], + **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "ManagedClusterAADProfile") + + _request = build_reset_aad_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @overload + async def begin_reset_aad_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.ManagedClusterAADProfile, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Reset the AAD Profile of a managed cluster. + + **WARNING**\\ : This API will be deprecated. Please see `AKS-managed Azure Active Directory + integration `_ to update your cluster with AKS-managed Azure + AD. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The AAD profile to set on the Managed Cluster. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedClusterAADProfile + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_reset_aad_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Reset the AAD Profile of a managed cluster. + + **WARNING**\\ : This API will be deprecated. Please see `AKS-managed Azure Active Directory + integration `_ to update your cluster with AKS-managed Azure + AD. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The AAD profile to set on the Managed Cluster. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_reset_aad_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedClusterAADProfile, IO[bytes]], + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Reset the AAD Profile of a managed cluster. + + **WARNING**\\ : This API will be deprecated. Please see `AKS-managed Azure Active Directory + integration `_ to update your cluster with AKS-managed Azure + AD. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The AAD profile to set on the Managed Cluster. Is either a + ManagedClusterAADProfile type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedClusterAADProfile or IO[bytes] + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._reset_aad_profile_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, AsyncARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + async def _rotate_cluster_certificates_initial( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_rotate_cluster_certificates_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_rotate_cluster_certificates( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncLROPoller[None]: + """Rotates the certificates of a managed cluster. + + See `Certificate rotation `_ for + more details about rotating managed cluster certificates. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._rotate_cluster_certificates_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, AsyncARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + async def _abort_latest_operation_initial( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_abort_latest_operation_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_abort_latest_operation( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncLROPoller[None]: + """Aborts last operation running on managed cluster. + + Aborts the currently running operation on the managed cluster. The Managed Cluster will be + moved to a Canceling state and eventually to a Canceled state when cancellation finishes. If + the operation completes before cancellation can take place, a 409 error code is returned. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._abort_latest_operation_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, AsyncARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + async def _rotate_service_account_signing_keys_initial( # pylint: disable=name-too-long + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_rotate_service_account_signing_keys_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_rotate_service_account_signing_keys( # pylint: disable=name-too-long + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncLROPoller[None]: + """Rotates the service account signing keys of a managed cluster. + + Rotates the service account signing keys of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._rotate_service_account_signing_keys_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, AsyncARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + async def _stop_initial(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_stop_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_stop(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> AsyncLROPoller[None]: + """Stops a Managed Cluster. + + This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a + cluster stops the control plane and agent nodes entirely, while maintaining all object and + cluster state. A cluster does not accrue charges while it is stopped. See `stopping a cluster + `_ for more details about stopping a + cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._stop_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, AsyncARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + async def _start_initial(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_start_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_start(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> AsyncLROPoller[None]: + """Starts a previously stopped Managed Cluster. + + See `starting a cluster `_ for more + details about starting a cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._start_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, AsyncARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + async def _run_command_initial( + self, + resource_group_name: str, + resource_name: str, + request_payload: Union[_models.RunCommandRequest, IO[bytes]], + **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(request_payload, (IOBase, bytes)): + _content = request_payload + else: + _json = self._serialize.body(request_payload, "RunCommandRequest") + + _request = build_run_command_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @overload + async def begin_run_command( + self, + resource_group_name: str, + resource_name: str, + request_payload: _models.RunCommandRequest, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.RunCommandResult]: + """Submits a command to run against the Managed Cluster. + + AKS will create a pod to run the command. This is primarily useful for private clusters. For + more information see `AKS Run Command + `_. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param request_payload: The run command request. Required. + :type request_payload: ~azure.mgmt.containerservice.models.RunCommandRequest + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either RunCommandResult or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.RunCommandResult] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_run_command( + self, + resource_group_name: str, + resource_name: str, + request_payload: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.RunCommandResult]: + """Submits a command to run against the Managed Cluster. + + AKS will create a pod to run the command. This is primarily useful for private clusters. For + more information see `AKS Run Command + `_. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param request_payload: The run command request. Required. + :type request_payload: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either RunCommandResult or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.RunCommandResult] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_run_command( + self, + resource_group_name: str, + resource_name: str, + request_payload: Union[_models.RunCommandRequest, IO[bytes]], + **kwargs: Any + ) -> AsyncLROPoller[_models.RunCommandResult]: + """Submits a command to run against the Managed Cluster. + + AKS will create a pod to run the command. This is primarily useful for private clusters. For + more information see `AKS Run Command + `_. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param request_payload: The run command request. Is either a RunCommandRequest type or a + IO[bytes] type. Required. + :type request_payload: ~azure.mgmt.containerservice.models.RunCommandRequest or IO[bytes] + :return: An instance of AsyncLROPoller that returns either RunCommandResult or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.RunCommandResult] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.RunCommandResult] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._run_command_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + request_payload=request_payload, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("RunCommandResult", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast( + AsyncPollingMethod, AsyncARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[_models.RunCommandResult].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[_models.RunCommandResult]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + @distributed_trace_async + async def get_command_result( + self, resource_group_name: str, resource_name: str, command_id: str, **kwargs: Any + ) -> Optional[_models.RunCommandResult]: + """Gets the results of a command which has been run on the Managed Cluster. + + Gets the results of a command which has been run on the Managed Cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param command_id: Id of the command. Required. + :type command_id: str + :return: RunCommandResult or None or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.RunCommandResult or None + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Optional[_models.RunCommandResult]] = kwargs.pop("cls", None) + + _request = build_get_command_result_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + command_id=command_id, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = None + response_headers = {} + if response.status_code == 200: + deserialized = self._deserialize("RunCommandResult", pipeline_response.http_response) + + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def list_outbound_network_dependencies_endpoints( # pylint: disable=name-too-long + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncItemPaged["_models.OutboundEnvironmentEndpoint"]: + """Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the + specified managed cluster. + + Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the + specified managed cluster. The operation returns properties of each egress endpoint. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either OutboundEnvironmentEndpoint or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.OutboundEnvironmentEndpoint] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.OutboundEnvironmentEndpointCollection] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_outbound_network_dependencies_endpoints_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("OutboundEnvironmentEndpointCollection", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace + def list_mesh_revision_profiles( + self, location: str, **kwargs: Any + ) -> AsyncItemPaged["_models.MeshRevisionProfile"]: + """Lists mesh revision profiles for all meshes in the specified location. + + Contains extra metadata on each revision, including supported revisions, cluster compatibility + and available upgrades. + + :param location: The name of the Azure region. Required. + :type location: str + :return: An iterator like instance of either MeshRevisionProfile or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.MeshRevisionProfile] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MeshRevisionProfileList] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_mesh_revision_profiles_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("MeshRevisionProfileList", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace_async + async def get_mesh_revision_profile(self, location: str, mode: str, **kwargs: Any) -> _models.MeshRevisionProfile: + """Gets a mesh revision profile for a specified mesh in the specified location. + + Contains extra metadata on the revision, including supported revisions, cluster compatibility + and available upgrades. + + :param location: The name of the Azure region. Required. + :type location: str + :param mode: The mode of the mesh. Required. + :type mode: str + :return: MeshRevisionProfile or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MeshRevisionProfile + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MeshRevisionProfile] = kwargs.pop("cls", None) + + _request = build_get_mesh_revision_profile_request( + location=location, + mode=mode, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("MeshRevisionProfile", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def list_mesh_upgrade_profiles( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncItemPaged["_models.MeshUpgradeProfile"]: + """Lists available upgrades for all service meshes in a specific cluster. + + Lists available upgrades for all service meshes in a specific cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either MeshUpgradeProfile or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.MeshUpgradeProfile] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MeshUpgradeProfileList] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_mesh_upgrade_profiles_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("MeshUpgradeProfileList", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace_async + async def get_mesh_upgrade_profile( + self, resource_group_name: str, resource_name: str, mode: str, **kwargs: Any + ) -> _models.MeshUpgradeProfile: + """Gets available upgrades for a service mesh in a cluster. + + Gets available upgrades for a service mesh in a cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param mode: The mode of the mesh. Required. + :type mode: str + :return: MeshUpgradeProfile or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MeshUpgradeProfile + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MeshUpgradeProfile] = kwargs.pop("cls", None) + + _request = build_get_mesh_upgrade_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + mode=mode, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("MeshUpgradeProfile", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_managed_namespaces_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_managed_namespaces_operations.py new file mode 100644 index 00000000000..ecd1869246e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_managed_namespaces_operations.py @@ -0,0 +1,809 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +import urllib.parse + +from azure.core import AsyncPipelineClient +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + StreamClosedError, + StreamConsumedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._managed_namespaces_operations import ( + build_create_or_update_request, + build_delete_request, + build_get_request, + build_list_by_managed_cluster_request, + build_list_credential_request, + build_update_request, +) +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class ManagedNamespacesOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`managed_namespaces` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list_by_managed_cluster( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncItemPaged["_models.ManagedNamespace"]: + """Gets a list of managed namespaces in the specified managed cluster. + + Gets a list of managed namespaces in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either ManagedNamespace or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.ManagedNamespace] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedNamespaceListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_by_managed_cluster_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("ManagedNamespaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace_async + async def get( + self, resource_group_name: str, resource_name: str, managed_namespace_name: str, **kwargs: Any + ) -> _models.ManagedNamespace: + """Gets the specified namespace of a managed cluster. + + Gets the specified namespace of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :return: ManagedNamespace or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedNamespace + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedNamespace] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ManagedNamespace", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + async def _create_or_update_initial( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: Union[_models.ManagedNamespace, IO[bytes]], + **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "ManagedNamespace") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @overload + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: _models.ManagedNamespace, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ManagedNamespace]: + """Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: The namespace to create or update. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedNamespace + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either ManagedNamespace or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.ManagedNamespace] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.ManagedNamespace]: + """Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: The namespace to create or update. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either ManagedNamespace or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.ManagedNamespace] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: Union[_models.ManagedNamespace, IO[bytes]], + **kwargs: Any + ) -> AsyncLROPoller[_models.ManagedNamespace]: + """Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: The namespace to create or update. Is either a ManagedNamespace type or a + IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedNamespace or IO[bytes] + :return: An instance of AsyncLROPoller that returns either ManagedNamespace or the result of + cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.ManagedNamespace] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ManagedNamespace] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + response_headers = {} + response = pipeline_response.http_response + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = self._deserialize("ManagedNamespace", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[_models.ManagedNamespace].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[_models.ManagedNamespace]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + async def _delete_initial( + self, resource_group_name: str, resource_name: str, managed_namespace_name: str, **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + if response.status_code == 204: + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_delete( + self, resource_group_name: str, resource_name: str, managed_namespace_name: str, **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a namespace. + + Deletes a namespace. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + @overload + async def update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: _models.TagsObject, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.ManagedNamespace: + """Updates tags on a managed namespace. + + Updates tags on a managed namespace. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: Parameters supplied to the patch namespace operation, we only support patch + tags for now. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: ManagedNamespace or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedNamespace + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.ManagedNamespace: + """Updates tags on a managed namespace. + + Updates tags on a managed namespace. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: Parameters supplied to the patch namespace operation, we only support patch + tags for now. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: ManagedNamespace or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedNamespace + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: Union[_models.TagsObject, IO[bytes]], + **kwargs: Any + ) -> _models.ManagedNamespace: + """Updates tags on a managed namespace. + + Updates tags on a managed namespace. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: Parameters supplied to the patch namespace operation, we only support patch + tags for now. Is either a TagsObject type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject or IO[bytes] + :return: ManagedNamespace or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedNamespace + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ManagedNamespace] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "TagsObject") + + _request = build_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ManagedNamespace", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def list_credential( + self, resource_group_name: str, resource_name: str, managed_namespace_name: str, **kwargs: Any + ) -> _models.CredentialResults: + """Lists the credentials of a namespace. + + Lists the credentials of a namespace. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :return: CredentialResults or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.CredentialResults + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.CredentialResults] = kwargs.pop("cls", None) + + _request = build_list_credential_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_operations.py new file mode 100644 index 00000000000..6277992c37d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_operations.py @@ -0,0 +1,135 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from typing import Any, Callable, Optional, TypeVar +import urllib.parse + +from azure.core import AsyncPipelineClient +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._operations import build_list_request +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class Operations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`operations` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list(self, **kwargs: Any) -> AsyncItemPaged["_models.OperationValue"]: + """Gets a list of operations. + + Gets a list of operations. + + :return: An iterator like instance of either OperationValue or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.OperationValue] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.OperationListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("OperationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_patch.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_patch.py new file mode 100644 index 00000000000..8bcb627aa47 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_patch.py @@ -0,0 +1,21 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_private_endpoint_connections_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_private_endpoint_connections_operations.py new file mode 100644 index 00000000000..832f404c47e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_private_endpoint_connections_operations.py @@ -0,0 +1,459 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload + +from azure.core import AsyncPipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + StreamClosedError, + StreamConsumedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._private_endpoint_connections_operations import ( + build_delete_request, + build_get_request, + build_list_request, + build_update_request, +) +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class PrivateEndpointConnectionsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`private_endpoint_connections` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace_async + async def list( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> _models.PrivateEndpointConnectionListResult: + """Gets a list of private endpoint connections in the specified managed cluster. + + To learn more about private clusters, see: + https://docs.microsoft.com/azure/aks/private-clusters. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: PrivateEndpointConnectionListResult or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateEndpointConnectionListResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.PrivateEndpointConnectionListResult] = kwargs.pop("cls", None) + + _request = build_list_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("PrivateEndpointConnectionListResult", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def get( + self, resource_group_name: str, resource_name: str, private_endpoint_connection_name: str, **kwargs: Any + ) -> _models.PrivateEndpointConnection: + """Gets the specified private endpoint connection. + + To learn more about private clusters, see: + https://docs.microsoft.com/azure/aks/private-clusters. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private endpoint connection. Required. + :type private_endpoint_connection_name: str + :return: PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateEndpointConnection + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.PrivateEndpointConnection] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + private_endpoint_connection_name=private_endpoint_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("PrivateEndpointConnection", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + async def update( + self, + resource_group_name: str, + resource_name: str, + private_endpoint_connection_name: str, + parameters: _models.PrivateEndpointConnection, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.PrivateEndpointConnection: + """Updates a private endpoint connection. + + Updates a private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private endpoint connection. Required. + :type private_endpoint_connection_name: str + :param parameters: The updated private endpoint connection. Required. + :type parameters: ~azure.mgmt.containerservice.models.PrivateEndpointConnection + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateEndpointConnection + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def update( + self, + resource_group_name: str, + resource_name: str, + private_endpoint_connection_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.PrivateEndpointConnection: + """Updates a private endpoint connection. + + Updates a private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private endpoint connection. Required. + :type private_endpoint_connection_name: str + :param parameters: The updated private endpoint connection. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateEndpointConnection + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def update( + self, + resource_group_name: str, + resource_name: str, + private_endpoint_connection_name: str, + parameters: Union[_models.PrivateEndpointConnection, IO[bytes]], + **kwargs: Any + ) -> _models.PrivateEndpointConnection: + """Updates a private endpoint connection. + + Updates a private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private endpoint connection. Required. + :type private_endpoint_connection_name: str + :param parameters: The updated private endpoint connection. Is either a + PrivateEndpointConnection type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.PrivateEndpointConnection or IO[bytes] + :return: PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateEndpointConnection + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.PrivateEndpointConnection] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "PrivateEndpointConnection") + + _request = build_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + private_endpoint_connection_name=private_endpoint_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("PrivateEndpointConnection", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + async def _delete_initial( + self, resource_group_name: str, resource_name: str, private_endpoint_connection_name: str, **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + private_endpoint_connection_name=private_endpoint_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_delete( + self, resource_group_name: str, resource_name: str, private_endpoint_connection_name: str, **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes a private endpoint connection. + + Deletes a private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private endpoint connection. Required. + :type private_endpoint_connection_name: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_private_link_resources_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_private_link_resources_operations.py new file mode 100644 index 00000000000..75359f8ffed --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_private_link_resources_operations.py @@ -0,0 +1,117 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from typing import Any, Callable, Optional, TypeVar + +from azure.core import AsyncPipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._private_link_resources_operations import build_list_request +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class PrivateLinkResourcesOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`private_link_resources` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace_async + async def list( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> _models.PrivateLinkResourcesListResult: + """Gets a list of private link resources in the specified managed cluster. + + To learn more about private clusters, see: + https://docs.microsoft.com/azure/aks/private-clusters. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: PrivateLinkResourcesListResult or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateLinkResourcesListResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.PrivateLinkResourcesListResult] = kwargs.pop("cls", None) + + _request = build_list_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("PrivateLinkResourcesListResult", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_resolve_private_link_service_id_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_resolve_private_link_service_id_operations.py new file mode 100644 index 00000000000..e173bbbc3ef --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_resolve_private_link_service_id_operations.py @@ -0,0 +1,194 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Optional, TypeVar, Union, overload + +from azure.core import AsyncPipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._resolve_private_link_service_id_operations import build_post_request +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class ResolvePrivateLinkServiceIdOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`resolve_private_link_service_id` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @overload + async def post( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.PrivateLinkResource, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.PrivateLinkResource: + """Gets the private link service ID for the specified managed cluster. + + Gets the private link service ID for the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters required in order to resolve a private link service ID. Required. + :type parameters: ~azure.mgmt.containerservice.models.PrivateLinkResource + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: PrivateLinkResource or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateLinkResource + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def post( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.PrivateLinkResource: + """Gets the private link service ID for the specified managed cluster. + + Gets the private link service ID for the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters required in order to resolve a private link service ID. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: PrivateLinkResource or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateLinkResource + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def post( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.PrivateLinkResource, IO[bytes]], + **kwargs: Any + ) -> _models.PrivateLinkResource: + """Gets the private link service ID for the specified managed cluster. + + Gets the private link service ID for the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters required in order to resolve a private link service ID. Is either + a PrivateLinkResource type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.PrivateLinkResource or IO[bytes] + :return: PrivateLinkResource or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateLinkResource + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.PrivateLinkResource] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "PrivateLinkResource") + + _request = build_post_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("PrivateLinkResource", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_snapshots_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_snapshots_operations.py new file mode 100644 index 00000000000..a09e86da1a9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_snapshots_operations.py @@ -0,0 +1,626 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +import urllib.parse + +from azure.core import AsyncPipelineClient +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._snapshots_operations import ( + build_create_or_update_request, + build_delete_request, + build_get_request, + build_list_by_resource_group_request, + build_list_request, + build_update_tags_request, +) +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class SnapshotsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`snapshots` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list(self, **kwargs: Any) -> AsyncItemPaged["_models.Snapshot"]: + """Gets a list of snapshots in the specified subscription. + + Gets a list of snapshots in the specified subscription. + + :return: An iterator like instance of either Snapshot or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.Snapshot] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.SnapshotListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("SnapshotListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace + def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) -> AsyncItemPaged["_models.Snapshot"]: + """Lists snapshots in the specified subscription and resource group. + + Lists snapshots in the specified subscription and resource group. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :return: An iterator like instance of either Snapshot or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.Snapshot] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.SnapshotListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("SnapshotListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace_async + async def get(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> _models.Snapshot: + """Gets a snapshot. + + Gets a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.Snapshot] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("Snapshot", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + async def create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.Snapshot, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.Snapshot: + """Creates or updates a snapshot. + + Creates or updates a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The snapshot to create or update. Required. + :type parameters: ~azure.mgmt.containerservice.models.Snapshot + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.Snapshot: + """Creates or updates a snapshot. + + Creates or updates a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The snapshot to create or update. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.Snapshot, IO[bytes]], + **kwargs: Any + ) -> _models.Snapshot: + """Creates or updates a snapshot. + + Creates or updates a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The snapshot to create or update. Is either a Snapshot type or a IO[bytes] + type. Required. + :type parameters: ~azure.mgmt.containerservice.models.Snapshot or IO[bytes] + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.Snapshot] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "Snapshot") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("Snapshot", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + async def update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.TagsObject, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.Snapshot: + """Updates tags on a snapshot. + + Updates tags on a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update snapshot Tags operation. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.Snapshot: + """Updates tags on a snapshot. + + Updates tags on a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update snapshot Tags operation. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.TagsObject, IO[bytes]], + **kwargs: Any + ) -> _models.Snapshot: + """Updates tags on a snapshot. + + Updates tags on a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update snapshot Tags operation. Is either a + TagsObject type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject or IO[bytes] + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.Snapshot] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "TagsObject") + + _request = build_update_tags_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("Snapshot", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def delete(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> None: + """Deletes a snapshot. + + Deletes a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: None or the result of cls(response) + :rtype: None + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_trusted_access_role_bindings_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_trusted_access_role_bindings_operations.py new file mode 100644 index 00000000000..07c07d19d19 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_trusted_access_role_bindings_operations.py @@ -0,0 +1,560 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +import urllib.parse + +from azure.core import AsyncPipelineClient +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + StreamClosedError, + StreamConsumedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._trusted_access_role_bindings_operations import ( + build_create_or_update_request, + build_delete_request, + build_get_request, + build_list_request, +) +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class TrustedAccessRoleBindingsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`trusted_access_role_bindings` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> AsyncItemPaged["_models.TrustedAccessRoleBinding"]: + """List trusted access role bindings. + + List trusted access role bindings. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either TrustedAccessRoleBinding or the result of + cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.TrustedAccessRoleBindingListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("TrustedAccessRoleBindingListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) + + @distributed_trace_async + async def get( + self, resource_group_name: str, resource_name: str, trusted_access_role_binding_name: str, **kwargs: Any + ) -> _models.TrustedAccessRoleBinding: + """Get a trusted access role binding. + + Get a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. Required. + :type trusted_access_role_binding_name: str + :return: TrustedAccessRoleBinding or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.TrustedAccessRoleBinding + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.TrustedAccessRoleBinding] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("TrustedAccessRoleBinding", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + async def _create_or_update_initial( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + trusted_access_role_binding: Union[_models.TrustedAccessRoleBinding, IO[bytes]], + **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(trusted_access_role_binding, (IOBase, bytes)): + _content = trusted_access_role_binding + else: + _json = self._serialize.body(trusted_access_role_binding, "TrustedAccessRoleBinding") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + trusted_access_role_binding: _models.TrustedAccessRoleBinding, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.TrustedAccessRoleBinding]: + """Create or update a trusted access role binding. + + Create or update a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. Required. + :type trusted_access_role_binding_name: str + :param trusted_access_role_binding: A trusted access role binding. Required. + :type trusted_access_role_binding: ~azure.mgmt.containerservice.models.TrustedAccessRoleBinding + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either TrustedAccessRoleBinding or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + trusted_access_role_binding: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> AsyncLROPoller[_models.TrustedAccessRoleBinding]: + """Create or update a trusted access role binding. + + Create or update a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. Required. + :type trusted_access_role_binding_name: str + :param trusted_access_role_binding: A trusted access role binding. Required. + :type trusted_access_role_binding: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of AsyncLROPoller that returns either TrustedAccessRoleBinding or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace_async + async def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + trusted_access_role_binding: Union[_models.TrustedAccessRoleBinding, IO[bytes]], + **kwargs: Any + ) -> AsyncLROPoller[_models.TrustedAccessRoleBinding]: + """Create or update a trusted access role binding. + + Create or update a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. Required. + :type trusted_access_role_binding_name: str + :param trusted_access_role_binding: A trusted access role binding. Is either a + TrustedAccessRoleBinding type or a IO[bytes] type. Required. + :type trusted_access_role_binding: ~azure.mgmt.containerservice.models.TrustedAccessRoleBinding + or IO[bytes] + :return: An instance of AsyncLROPoller that returns either TrustedAccessRoleBinding or the + result of cls(response) + :rtype: + ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.TrustedAccessRoleBinding] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + trusted_access_role_binding=trusted_access_role_binding, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("TrustedAccessRoleBinding", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + return deserialized + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[_models.TrustedAccessRoleBinding].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[_models.TrustedAccessRoleBinding]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + async def _delete_initial( + self, resource_group_name: str, resource_name: str, trusted_access_role_binding_name: str, **kwargs: Any + ) -> AsyncIterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[AsyncIterator[bytes]] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + await response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace_async + async def begin_delete( + self, resource_group_name: str, resource_name: str, trusted_access_role_binding_name: str, **kwargs: Any + ) -> AsyncLROPoller[None]: + """Delete a trusted access role binding. + + Delete a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. Required. + :type trusted_access_role_binding_name: str + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, AsyncPollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + await raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: AsyncPollingMethod = cast(AsyncPollingMethod, AsyncARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(AsyncPollingMethod, AsyncNoPolling()) + else: + polling_method = polling + if cont_token: + return AsyncLROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_trusted_access_roles_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_trusted_access_roles_operations.py new file mode 100644 index 00000000000..cc473f5fdc0 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/aio/operations/_trusted_access_roles_operations.py @@ -0,0 +1,139 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from typing import Any, Callable, Optional, TypeVar +import urllib.parse + +from azure.core import AsyncPipelineClient +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.rest import AsyncHttpResponse, HttpRequest +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models +from ..._utils.serialization import Deserializer, Serializer +from ...operations._trusted_access_roles_operations import build_list_request +from .._configuration import ContainerServiceClientConfiguration + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] +List = list + + +class TrustedAccessRolesOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.aio.ContainerServiceClient`'s + :attr:`trusted_access_roles` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: AsyncPipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list(self, location: str, **kwargs: Any) -> AsyncItemPaged["_models.TrustedAccessRole"]: + """List supported trusted access roles. + + List supported trusted access roles. + + :param location: The name of the Azure region. Required. + :type location: str + :return: An iterator like instance of either TrustedAccessRole or the result of cls(response) + :rtype: + ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.models.TrustedAccessRole] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.TrustedAccessRoleListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + async def extract_data(pipeline_response): + deserialized = self._deserialize("TrustedAccessRoleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged(get_next, extract_data) diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/__init__.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/__init__.py new file mode 100644 index 00000000000..1a65b56f013 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/__init__.py @@ -0,0 +1,506 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=wrong-import-position + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from ._patch import * # pylint: disable=unused-wildcard-import + + +from ._models_py3 import ( # type: ignore + AbsoluteMonthlySchedule, + AdvancedNetworking, + AdvancedNetworkingObservability, + AdvancedNetworkingSecurity, + AgentPool, + AgentPoolAvailableVersions, + AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem, + AgentPoolDeleteMachinesParameter, + AgentPoolGatewayProfile, + AgentPoolListResult, + AgentPoolNetworkProfile, + AgentPoolSecurityProfile, + AgentPoolStatus, + AgentPoolUpgradeProfile, + AgentPoolUpgradeProfilePropertiesUpgradesItem, + AgentPoolUpgradeSettings, + AgentPoolWindowsProfile, + AzureKeyVaultKms, + ClusterUpgradeSettings, + CompatibleVersions, + ContainerServiceLinuxProfile, + ContainerServiceNetworkProfile, + ContainerServiceSshConfiguration, + ContainerServiceSshPublicKey, + CreationData, + CredentialResult, + CredentialResults, + DailySchedule, + DateSpan, + DelegatedResource, + EndpointDependency, + EndpointDetail, + ErrorAdditionalInfo, + ErrorDetail, + ErrorResponse, + ExtendedLocation, + GPUProfile, + IPTag, + IstioCertificateAuthority, + IstioComponents, + IstioEgressGateway, + IstioIngressGateway, + IstioPluginCertificateAuthority, + IstioServiceMesh, + KubeletConfig, + KubernetesPatchVersion, + KubernetesVersion, + KubernetesVersionCapabilities, + KubernetesVersionListResult, + LinuxOSConfig, + LocalDNSOverride, + LocalDNSProfile, + Machine, + MachineIpAddress, + MachineListResult, + MachineNetworkProperties, + MachineProperties, + MaintenanceConfiguration, + MaintenanceConfigurationListResult, + MaintenanceWindow, + ManagedCluster, + ManagedClusterAADProfile, + ManagedClusterAIToolchainOperatorProfile, + ManagedClusterAPIServerAccessProfile, + ManagedClusterAccessProfile, + ManagedClusterAddonProfile, + ManagedClusterAddonProfileIdentity, + ManagedClusterAgentPoolProfile, + ManagedClusterAgentPoolProfileProperties, + ManagedClusterAutoUpgradeProfile, + ManagedClusterAzureMonitorProfile, + ManagedClusterAzureMonitorProfileKubeStateMetrics, + ManagedClusterAzureMonitorProfileMetrics, + ManagedClusterBootstrapProfile, + ManagedClusterCostAnalysis, + ManagedClusterHTTPProxyConfig, + ManagedClusterIdentity, + ManagedClusterIngressProfile, + ManagedClusterIngressProfileNginx, + ManagedClusterIngressProfileWebAppRouting, + ManagedClusterListResult, + ManagedClusterLoadBalancerProfile, + ManagedClusterLoadBalancerProfileManagedOutboundIPs, + ManagedClusterLoadBalancerProfileOutboundIPPrefixes, + ManagedClusterLoadBalancerProfileOutboundIPs, + ManagedClusterManagedOutboundIPProfile, + ManagedClusterMetricsProfile, + ManagedClusterNATGatewayProfile, + ManagedClusterNodeProvisioningProfile, + ManagedClusterNodeResourceGroupProfile, + ManagedClusterOIDCIssuerProfile, + ManagedClusterPodIdentity, + ManagedClusterPodIdentityException, + ManagedClusterPodIdentityProfile, + ManagedClusterPodIdentityProvisioningError, + ManagedClusterPodIdentityProvisioningErrorBody, + ManagedClusterPodIdentityProvisioningInfo, + ManagedClusterPoolUpgradeProfile, + ManagedClusterPoolUpgradeProfileUpgradesItem, + ManagedClusterPropertiesAutoScalerProfile, + ManagedClusterSKU, + ManagedClusterSecurityProfile, + ManagedClusterSecurityProfileDefender, + ManagedClusterSecurityProfileDefenderSecurityMonitoring, + ManagedClusterSecurityProfileImageCleaner, + ManagedClusterSecurityProfileWorkloadIdentity, + ManagedClusterServicePrincipalProfile, + ManagedClusterStaticEgressGatewayProfile, + ManagedClusterStatus, + ManagedClusterStorageProfile, + ManagedClusterStorageProfileBlobCSIDriver, + ManagedClusterStorageProfileDiskCSIDriver, + ManagedClusterStorageProfileFileCSIDriver, + ManagedClusterStorageProfileSnapshotController, + ManagedClusterUpgradeProfile, + ManagedClusterWindowsProfile, + ManagedClusterWorkloadAutoScalerProfile, + ManagedClusterWorkloadAutoScalerProfileKeda, + ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscaler, + ManagedNamespace, + ManagedNamespaceListResult, + ManagedServiceIdentityUserAssignedIdentitiesValue, + ManualScaleProfile, + MeshRevision, + MeshRevisionProfile, + MeshRevisionProfileList, + MeshRevisionProfileProperties, + MeshUpgradeProfile, + MeshUpgradeProfileList, + MeshUpgradeProfileProperties, + NamespaceProperties, + NetworkPolicies, + OperationListResult, + OperationValue, + OutboundEnvironmentEndpoint, + OutboundEnvironmentEndpointCollection, + PortRange, + PowerState, + PrivateEndpoint, + PrivateEndpointConnection, + PrivateEndpointConnectionListResult, + PrivateLinkResource, + PrivateLinkResourcesListResult, + PrivateLinkServiceConnectionState, + ProxyResource, + RelativeMonthlySchedule, + Resource, + ResourceQuota, + ResourceReference, + RunCommandRequest, + RunCommandResult, + ScaleProfile, + Schedule, + ServiceMeshProfile, + Snapshot, + SnapshotListResult, + SubResource, + SysctlConfig, + SystemData, + TagsObject, + TimeInWeek, + TimeSpan, + TrackedResource, + TrustedAccessRole, + TrustedAccessRoleBinding, + TrustedAccessRoleBindingListResult, + TrustedAccessRoleListResult, + TrustedAccessRoleRule, + UpgradeOverrideSettings, + UserAssignedIdentity, + VirtualMachineNodes, + VirtualMachinesProfile, + WeeklySchedule, + WindowsGmsaProfile, +) + +from ._container_service_client_enums import ( # type: ignore + AdoptionPolicy, + AdvancedNetworkPolicies, + AgentPoolMode, + AgentPoolSSHAccess, + AgentPoolType, + ArtifactSource, + BackendPoolType, + Code, + ConnectionStatus, + CreatedByType, + DeletePolicy, + Expander, + ExtendedLocationTypes, + Format, + GPUDriver, + GPUInstanceProfile, + IpFamily, + IstioIngressGatewayMode, + KeyVaultNetworkAccessTypes, + KubeletDiskType, + KubernetesSupportPlan, + LicenseType, + LoadBalancerSku, + LocalDNSForwardDestination, + LocalDNSForwardPolicy, + LocalDNSMode, + LocalDNSProtocol, + LocalDNSQueryLogging, + LocalDNSServeStale, + LocalDNSState, + ManagedClusterPodIdentityProvisioningState, + ManagedClusterSKUName, + ManagedClusterSKUTier, + NamespaceProvisioningState, + NetworkDataplane, + NetworkMode, + NetworkPlugin, + NetworkPluginMode, + NetworkPolicy, + NginxIngressControllerType, + NodeOSUpgradeChannel, + NodeProvisioningDefaultNodePools, + NodeProvisioningMode, + OSDiskType, + OSSKU, + OSType, + OutboundType, + PodIPAllocationMode, + PolicyRule, + PrivateEndpointConnectionProvisioningState, + Protocol, + PublicNetworkAccess, + ResourceIdentityType, + RestrictionLevel, + ScaleDownMode, + ScaleSetEvictionPolicy, + ScaleSetPriority, + ServiceMeshMode, + SnapshotType, + TrustedAccessRoleBindingProvisioningState, + Type, + UndrainableNodeBehavior, + UpgradeChannel, + WeekDay, + WorkloadRuntime, +) +from ._patch import __all__ as _patch_all +from ._patch import * +from ._patch import patch_sdk as _patch_sdk + +__all__ = [ + "AbsoluteMonthlySchedule", + "AdvancedNetworking", + "AdvancedNetworkingObservability", + "AdvancedNetworkingSecurity", + "AgentPool", + "AgentPoolAvailableVersions", + "AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem", + "AgentPoolDeleteMachinesParameter", + "AgentPoolGatewayProfile", + "AgentPoolListResult", + "AgentPoolNetworkProfile", + "AgentPoolSecurityProfile", + "AgentPoolStatus", + "AgentPoolUpgradeProfile", + "AgentPoolUpgradeProfilePropertiesUpgradesItem", + "AgentPoolUpgradeSettings", + "AgentPoolWindowsProfile", + "AzureKeyVaultKms", + "ClusterUpgradeSettings", + "CompatibleVersions", + "ContainerServiceLinuxProfile", + "ContainerServiceNetworkProfile", + "ContainerServiceSshConfiguration", + "ContainerServiceSshPublicKey", + "CreationData", + "CredentialResult", + "CredentialResults", + "DailySchedule", + "DateSpan", + "DelegatedResource", + "EndpointDependency", + "EndpointDetail", + "ErrorAdditionalInfo", + "ErrorDetail", + "ErrorResponse", + "ExtendedLocation", + "GPUProfile", + "IPTag", + "IstioCertificateAuthority", + "IstioComponents", + "IstioEgressGateway", + "IstioIngressGateway", + "IstioPluginCertificateAuthority", + "IstioServiceMesh", + "KubeletConfig", + "KubernetesPatchVersion", + "KubernetesVersion", + "KubernetesVersionCapabilities", + "KubernetesVersionListResult", + "LinuxOSConfig", + "LocalDNSOverride", + "LocalDNSProfile", + "Machine", + "MachineIpAddress", + "MachineListResult", + "MachineNetworkProperties", + "MachineProperties", + "MaintenanceConfiguration", + "MaintenanceConfigurationListResult", + "MaintenanceWindow", + "ManagedCluster", + "ManagedClusterAADProfile", + "ManagedClusterAIToolchainOperatorProfile", + "ManagedClusterAPIServerAccessProfile", + "ManagedClusterAccessProfile", + "ManagedClusterAddonProfile", + "ManagedClusterAddonProfileIdentity", + "ManagedClusterAgentPoolProfile", + "ManagedClusterAgentPoolProfileProperties", + "ManagedClusterAutoUpgradeProfile", + "ManagedClusterAzureMonitorProfile", + "ManagedClusterAzureMonitorProfileKubeStateMetrics", + "ManagedClusterAzureMonitorProfileMetrics", + "ManagedClusterBootstrapProfile", + "ManagedClusterCostAnalysis", + "ManagedClusterHTTPProxyConfig", + "ManagedClusterIdentity", + "ManagedClusterIngressProfile", + "ManagedClusterIngressProfileNginx", + "ManagedClusterIngressProfileWebAppRouting", + "ManagedClusterListResult", + "ManagedClusterLoadBalancerProfile", + "ManagedClusterLoadBalancerProfileManagedOutboundIPs", + "ManagedClusterLoadBalancerProfileOutboundIPPrefixes", + "ManagedClusterLoadBalancerProfileOutboundIPs", + "ManagedClusterManagedOutboundIPProfile", + "ManagedClusterMetricsProfile", + "ManagedClusterNATGatewayProfile", + "ManagedClusterNodeProvisioningProfile", + "ManagedClusterNodeResourceGroupProfile", + "ManagedClusterOIDCIssuerProfile", + "ManagedClusterPodIdentity", + "ManagedClusterPodIdentityException", + "ManagedClusterPodIdentityProfile", + "ManagedClusterPodIdentityProvisioningError", + "ManagedClusterPodIdentityProvisioningErrorBody", + "ManagedClusterPodIdentityProvisioningInfo", + "ManagedClusterPoolUpgradeProfile", + "ManagedClusterPoolUpgradeProfileUpgradesItem", + "ManagedClusterPropertiesAutoScalerProfile", + "ManagedClusterSKU", + "ManagedClusterSecurityProfile", + "ManagedClusterSecurityProfileDefender", + "ManagedClusterSecurityProfileDefenderSecurityMonitoring", + "ManagedClusterSecurityProfileImageCleaner", + "ManagedClusterSecurityProfileWorkloadIdentity", + "ManagedClusterServicePrincipalProfile", + "ManagedClusterStaticEgressGatewayProfile", + "ManagedClusterStatus", + "ManagedClusterStorageProfile", + "ManagedClusterStorageProfileBlobCSIDriver", + "ManagedClusterStorageProfileDiskCSIDriver", + "ManagedClusterStorageProfileFileCSIDriver", + "ManagedClusterStorageProfileSnapshotController", + "ManagedClusterUpgradeProfile", + "ManagedClusterWindowsProfile", + "ManagedClusterWorkloadAutoScalerProfile", + "ManagedClusterWorkloadAutoScalerProfileKeda", + "ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscaler", + "ManagedNamespace", + "ManagedNamespaceListResult", + "ManagedServiceIdentityUserAssignedIdentitiesValue", + "ManualScaleProfile", + "MeshRevision", + "MeshRevisionProfile", + "MeshRevisionProfileList", + "MeshRevisionProfileProperties", + "MeshUpgradeProfile", + "MeshUpgradeProfileList", + "MeshUpgradeProfileProperties", + "NamespaceProperties", + "NetworkPolicies", + "OperationListResult", + "OperationValue", + "OutboundEnvironmentEndpoint", + "OutboundEnvironmentEndpointCollection", + "PortRange", + "PowerState", + "PrivateEndpoint", + "PrivateEndpointConnection", + "PrivateEndpointConnectionListResult", + "PrivateLinkResource", + "PrivateLinkResourcesListResult", + "PrivateLinkServiceConnectionState", + "ProxyResource", + "RelativeMonthlySchedule", + "Resource", + "ResourceQuota", + "ResourceReference", + "RunCommandRequest", + "RunCommandResult", + "ScaleProfile", + "Schedule", + "ServiceMeshProfile", + "Snapshot", + "SnapshotListResult", + "SubResource", + "SysctlConfig", + "SystemData", + "TagsObject", + "TimeInWeek", + "TimeSpan", + "TrackedResource", + "TrustedAccessRole", + "TrustedAccessRoleBinding", + "TrustedAccessRoleBindingListResult", + "TrustedAccessRoleListResult", + "TrustedAccessRoleRule", + "UpgradeOverrideSettings", + "UserAssignedIdentity", + "VirtualMachineNodes", + "VirtualMachinesProfile", + "WeeklySchedule", + "WindowsGmsaProfile", + "AdoptionPolicy", + "AdvancedNetworkPolicies", + "AgentPoolMode", + "AgentPoolSSHAccess", + "AgentPoolType", + "ArtifactSource", + "BackendPoolType", + "Code", + "ConnectionStatus", + "CreatedByType", + "DeletePolicy", + "Expander", + "ExtendedLocationTypes", + "Format", + "GPUDriver", + "GPUInstanceProfile", + "IpFamily", + "IstioIngressGatewayMode", + "KeyVaultNetworkAccessTypes", + "KubeletDiskType", + "KubernetesSupportPlan", + "LicenseType", + "LoadBalancerSku", + "LocalDNSForwardDestination", + "LocalDNSForwardPolicy", + "LocalDNSMode", + "LocalDNSProtocol", + "LocalDNSQueryLogging", + "LocalDNSServeStale", + "LocalDNSState", + "ManagedClusterPodIdentityProvisioningState", + "ManagedClusterSKUName", + "ManagedClusterSKUTier", + "NamespaceProvisioningState", + "NetworkDataplane", + "NetworkMode", + "NetworkPlugin", + "NetworkPluginMode", + "NetworkPolicy", + "NginxIngressControllerType", + "NodeOSUpgradeChannel", + "NodeProvisioningDefaultNodePools", + "NodeProvisioningMode", + "OSDiskType", + "OSSKU", + "OSType", + "OutboundType", + "PodIPAllocationMode", + "PolicyRule", + "PrivateEndpointConnectionProvisioningState", + "Protocol", + "PublicNetworkAccess", + "ResourceIdentityType", + "RestrictionLevel", + "ScaleDownMode", + "ScaleSetEvictionPolicy", + "ScaleSetPriority", + "ServiceMeshMode", + "SnapshotType", + "TrustedAccessRoleBindingProvisioningState", + "Type", + "UndrainableNodeBehavior", + "UpgradeChannel", + "WeekDay", + "WorkloadRuntime", +] +__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore +_patch_sdk() diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/_container_service_client_enums.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/_container_service_client_enums.py new file mode 100644 index 00000000000..8218304f1ba --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/_container_service_client_enums.py @@ -0,0 +1,869 @@ +# pylint: disable=line-too-long,useless-suppression +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from enum import Enum +from azure.core import CaseInsensitiveEnumMeta + + +class AdoptionPolicy(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Action if Kubernetes namespace with same name already exists.""" + + NEVER = "Never" + """If the namespace already exists in Kubernetes, attempts to create that same namespace in ARM + will fail.""" + IF_IDENTICAL = "IfIdentical" + """Take over the existing namespace to be managed by ARM, if there is no difference.""" + ALWAYS = "Always" + """Always take over the existing namespace to be managed by ARM, some fields might be overwritten.""" + + +class AdvancedNetworkPolicies(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Enable advanced network policies. This allows users to configure Layer 7 network policies + (FQDN, HTTP, Kafka). Policies themselves must be configured via the Cilium Network Policy + resources, see https://docs.cilium.io/en/latest/security/policy/index.html. This can be enabled + only on cilium-based clusters. If not specified, the default value is FQDN if security.enabled + is set to true. + """ + + L7 = "L7" + """Enable Layer7 network policies (FQDN, HTTP/S, Kafka). This option is a superset of the FQDN + option.""" + FQDN = "FQDN" + """Enable FQDN based network policies""" + NONE = "None" + """Disable Layer 7 network policies (FQDN, HTTP/S, Kafka)""" + + +class AgentPoolMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The mode of an agent pool. A cluster must have at least one 'System' Agent Pool at all times. + For additional information on agent pool restrictions and best practices, see: + https://docs.microsoft.com/azure/aks/use-system-pools. + """ + + SYSTEM = "System" + """System agent pools are primarily for hosting critical system pods such as CoreDNS and + metrics-server. System agent pools osType must be Linux. System agent pools VM SKU must have at + least 2vCPUs and 4GB of memory.""" + USER = "User" + """User agent pools are primarily for hosting your application pods.""" + GATEWAY = "Gateway" + """Gateway agent pools are dedicated to providing static egress IPs to pods. For more details, see + https://aka.ms/aks/static-egress-gateway.""" + + +class AgentPoolSSHAccess(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """SSH access method of an agent pool.""" + + LOCAL_USER = "LocalUser" + """Can SSH onto the node as a local user using private key.""" + DISABLED = "Disabled" + """SSH service will be turned off on the node.""" + + +class AgentPoolType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The type of Agent Pool.""" + + VIRTUAL_MACHINE_SCALE_SETS = "VirtualMachineScaleSets" + """Create an Agent Pool backed by a Virtual Machine Scale Set.""" + AVAILABILITY_SET = "AvailabilitySet" + """Use of this is strongly discouraged.""" + VIRTUAL_MACHINES = "VirtualMachines" + """Create an Agent Pool backed by a Single Instance VM orchestration mode.""" + + +class ArtifactSource(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The artifact source. The source where the artifacts are downloaded from.""" + + CACHE = "Cache" + """pull images from Azure Container Registry with cache""" + DIRECT = "Direct" + """pull images from Microsoft Artifact Registry""" + + +class BackendPoolType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The type of the managed inbound Load Balancer BackendPool.""" + + NODE_IP_CONFIGURATION = "NodeIPConfiguration" + """The type of the managed inbound Load Balancer BackendPool. + https://cloud-provider-azure.sigs.k8s.io/topics/loadbalancer/#configure-load-balancer-backend.""" + NODE_IP = "NodeIP" + """The type of the managed inbound Load Balancer BackendPool. + https://cloud-provider-azure.sigs.k8s.io/topics/loadbalancer/#configure-load-balancer-backend.""" + + +class Code(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Tells whether the cluster is Running or Stopped.""" + + RUNNING = "Running" + """The cluster is running.""" + STOPPED = "Stopped" + """The cluster is stopped.""" + + +class ConnectionStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The private link service connection status.""" + + PENDING = "Pending" + APPROVED = "Approved" + REJECTED = "Rejected" + DISCONNECTED = "Disconnected" + + +class CreatedByType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The type of identity that created the resource.""" + + USER = "User" + APPLICATION = "Application" + MANAGED_IDENTITY = "ManagedIdentity" + KEY = "Key" + + +class DeletePolicy(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Delete options of a namespace.""" + + KEEP = "Keep" + """Only delete the ARM resource, keep the Kubernetes namespace. Also delete the ManagedByARM + label.""" + DELETE = "Delete" + """Delete both the ARM resource and the Kubernetes namespace together.""" + + +class Expander(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The expander to use when scaling up. If not specified, the default is 'random'. See `expanders + `_ + for more information. + """ + + LEAST_WASTE = "least-waste" + """Selects the node group that will have the least idle CPU (if tied, unused memory) after + scale-up. This is useful when you have different classes of nodes, for example, high CPU or + high memory nodes, and only want to expand those when there are pending pods that need a lot of + those resources.""" + MOST_PODS = "most-pods" + """Selects the node group that would be able to schedule the most pods when scaling up. This is + useful when you are using nodeSelector to make sure certain pods land on certain nodes. Note + that this won't cause the autoscaler to select bigger nodes vs. smaller, as it can add multiple + smaller nodes at once.""" + PRIORITY = "priority" + """Selects the node group that has the highest priority assigned by the user. It's configuration + is described in more details `here + `_.""" + RANDOM = "random" + """Used when you don't have a particular need for the node groups to scale differently.""" + + +class ExtendedLocationTypes(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The type of extendedLocation.""" + + EDGE_ZONE = "EdgeZone" + + +class Format(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Format.""" + + AZURE = "azure" + """Return azure auth-provider kubeconfig. This format is deprecated in v1.22 and will be fully + removed in v1.26. See: https://aka.ms/k8s/changes-1-26.""" + EXEC = "exec" + """Return exec format kubeconfig. This format requires kubelogin binary in the path.""" + EXEC_ENUM = "exec" + """Return exec format kubeconfig. This format requires kubelogin binary in the path.""" + + +class GPUDriver(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Whether to install GPU drivers. When it's not specified, default is Install.""" + + INSTALL = "Install" + """Install driver.""" + NONE = "None" + """Skip driver install.""" + + +class GPUInstanceProfile(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU.""" + + MIG1_G = "MIG1g" + MIG2_G = "MIG2g" + MIG3_G = "MIG3g" + MIG4_G = "MIG4g" + MIG7_G = "MIG7g" + + +class IpFamily(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The IP version to use for cluster networking and IP assignment.""" + + I_PV4 = "IPv4" + I_PV6 = "IPv6" + + +class IstioIngressGatewayMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Mode of an ingress gateway.""" + + EXTERNAL = "External" + """The ingress gateway is assigned a public IP address and is publicly accessible.""" + INTERNAL = "Internal" + """The ingress gateway is assigned an internal IP address and cannot is accessed publicly.""" + + +class KeyVaultNetworkAccessTypes(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Network access of the key vault. Network access of key vault. The possible values are + ``Public`` and ``Private``. ``Public`` means the key vault allows public access from all + networks. ``Private`` means the key vault disables public access and enables private link. The + default value is ``Public``. + """ + + PUBLIC = "Public" + PRIVATE = "Private" + + +class KubeletDiskType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Determines the placement of emptyDir volumes, container runtime data root, and Kubelet + ephemeral storage. + """ + + OS = "OS" + """Kubelet will use the OS disk for its data.""" + TEMPORARY = "Temporary" + """Kubelet will use the temporary disk for its data.""" + + +class KubernetesSupportPlan(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Different support tiers for AKS managed clusters.""" + + KUBERNETES_OFFICIAL = "KubernetesOfficial" + """Support for the version is the same as for the open source Kubernetes offering. Official + Kubernetes open source community support versions for 1 year after release.""" + AKS_LONG_TERM_SUPPORT = "AKSLongTermSupport" + """Support for the version extended past the KubernetesOfficial support of 1 year. AKS continues + to patch CVEs for another 1 year, for a total of 2 years of support.""" + + +class LicenseType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The license type to use for Windows VMs. See `Azure Hybrid User Benefits + `_ for more details. + """ + + NONE = "None" + """No additional licensing is applied.""" + WINDOWS_SERVER = "Windows_Server" + """Enables Azure Hybrid User Benefits for Windows VMs.""" + + +class LoadBalancerSku(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The load balancer sku for the managed cluster. The default is 'standard'. See `Azure Load + Balancer SKUs `_ for more information + about the differences between load balancer SKUs. + """ + + STANDARD = "standard" + """Use a a standard Load Balancer. This is the recommended Load Balancer SKU. For more information + about on working with the load balancer in the managed cluster, see the `standard Load Balancer + `_ article.""" + BASIC = "basic" + """Use a basic Load Balancer with limited functionality.""" + + +class LocalDNSForwardDestination(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Destination server for DNS queries to be forwarded from localDNS.""" + + CLUSTER_CORE_DNS = "ClusterCoreDNS" + """Forward DNS queries from localDNS to cluster CoreDNS.""" + VNET_DNS = "VnetDNS" + """Forward DNS queries from localDNS to DNS server configured in the VNET. A VNET can have + multiple DNS servers configured.""" + + +class LocalDNSForwardPolicy(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Forward policy for selecting upstream DNS server. See `forward plugin + `_ for more information. + """ + + SEQUENTIAL = "Sequential" + """Implements sequential upstream DNS server selection. See `forward plugin + `_ for more information.""" + ROUND_ROBIN = "RoundRobin" + """Implements round robin upstream DNS server selection. See `forward plugin + `_ for more information.""" + RANDOM = "Random" + """Implements random upstream DNS server selection. See `forward plugin + `_ for more information.""" + + +class LocalDNSMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Mode of enablement for localDNS.""" + + PREFERRED = "Preferred" + """If the current orchestrator version supports this feature, prefer enabling localDNS.""" + REQUIRED = "Required" + """Enable localDNS.""" + DISABLED = "Disabled" + """Disable localDNS.""" + + +class LocalDNSProtocol(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Enforce TCP or prefer UDP protocol for connections from localDNS to upstream DNS server.""" + + PREFER_UDP = "PreferUDP" + """Prefer UDP protocol for connections from localDNS to upstream DNS server.""" + FORCE_TCP = "ForceTCP" + """Enforce TCP protocol for connections from localDNS to upstream DNS server.""" + + +class LocalDNSQueryLogging(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Log level for DNS queries in localDNS.""" + + ERROR = "Error" + """Enables error logging in localDNS. See `errors plugin `_ for + more information.""" + LOG = "Log" + """Enables query logging in localDNS. See `log plugin `_ for more + information.""" + + +class LocalDNSServeStale(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Policy for serving stale data. See `cache plugin `_ for more + information. + """ + + VERIFY = "Verify" + """Serve stale data with verification. First verify that an entry is still unavailable from the + source before sending the expired entry to the client. See `cache plugin + `_ for more information.""" + IMMEDIATE = "Immediate" + """Serve stale data immediately. Send the expired entry to the client before checking to see if + the entry is available from the source. See `cache plugin `_ + for more information.""" + DISABLE = "Disable" + """Disable serving stale data.""" + + +class LocalDNSState(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """System-generated state of localDNS.""" + + ENABLED = "Enabled" + """localDNS is enabled.""" + DISABLED = "Disabled" + """localDNS is disabled.""" + + +class ManagedClusterPodIdentityProvisioningState(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The current provisioning state of the pod identity.""" + + ASSIGNED = "Assigned" + CANCELED = "Canceled" + DELETING = "Deleting" + FAILED = "Failed" + SUCCEEDED = "Succeeded" + UPDATING = "Updating" + + +class ManagedClusterSKUName(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The name of a managed cluster SKU.""" + + BASE = "Base" + """Base option for the AKS control plane.""" + AUTOMATIC = "Automatic" + """Automatic clusters are optimized to run most production workloads with configuration that + follows AKS best practices and recommendations for cluster and workload setup, scalability, and + security. For more details about Automatic clusters see aka.ms/aks/automatic.""" + + +class ManagedClusterSKUTier(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The tier of a managed cluster SKU. If not specified, the default is 'Free'. See `AKS Pricing + Tier `_ for more details. + """ + + PREMIUM = "Premium" + """Cluster has premium capabilities in addition to all of the capabilities included in 'Standard'. + Premium enables selection of LongTermSupport (aka.ms/aks/lts) for certain Kubernetes versions.""" + STANDARD = "Standard" + """Recommended for mission-critical and production workloads. Includes Kubernetes control plane + autoscaling, workload-intensive testing, and up to 5,000 nodes per cluster. Guarantees 99.95% + availability of the Kubernetes API server endpoint for clusters that use Availability Zones and + 99.9% of availability for clusters that don't use Availability Zones.""" + FREE = "Free" + """The cluster management is free, but charged for VM, storage, and networking usage. Best for + experimenting, learning, simple testing, or workloads with fewer than 10 nodes. Not recommended + for production use cases.""" + + +class NamespaceProvisioningState(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The current provisioning state of the namespace.""" + + UPDATING = "Updating" + DELETING = "Deleting" + CREATING = "Creating" + SUCCEEDED = "Succeeded" + FAILED = "Failed" + CANCELED = "Canceled" + + +class NetworkDataplane(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Network dataplane used in the Kubernetes cluster.""" + + AZURE = "azure" + """Use Azure network dataplane.""" + CILIUM = "cilium" + """Use Cilium network dataplane. See `Azure CNI Powered by Cilium + `_ for more information.""" + + +class NetworkMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The network mode Azure CNI is configured with. This cannot be specified if networkPlugin is + anything other than 'azure'. + """ + + TRANSPARENT = "transparent" + """No bridge is created. Intra-VM Pod to Pod communication is through IP routes created by Azure + CNI. See `Transparent Mode `_ for + more information.""" + BRIDGE = "bridge" + """This is no longer supported""" + + +class NetworkPlugin(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Network plugin used for building the Kubernetes network.""" + + AZURE = "azure" + """Use the Azure CNI network plugin. See `Azure CNI (advanced) networking + `_ for + more information.""" + KUBENET = "kubenet" + """Use the Kubenet network plugin. See `Kubenet (basic) networking + `_ for more + information.""" + NONE = "none" + """No CNI plugin is pre-installed. See `BYO CNI + `_ for more information.""" + + +class NetworkPluginMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The mode the network plugin should use.""" + + OVERLAY = "overlay" + """Used with networkPlugin=azure, pods are given IPs from the PodCIDR address space but use Azure + Routing Domains rather than Kubenet's method of route tables. For more information visit + https://aka.ms/aks/azure-cni-overlay.""" + + +class NetworkPolicy(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Network policy used for building the Kubernetes network.""" + + NONE = "none" + """Network policies will not be enforced. This is the default value when NetworkPolicy is not + specified.""" + CALICO = "calico" + """Use Calico network policies. See `differences between Azure and Calico policies + `_ + for more information.""" + AZURE = "azure" + """Use Azure network policies. See `differences between Azure and Calico policies + `_ + for more information.""" + CILIUM = "cilium" + """Use Cilium to enforce network policies. This requires networkDataplane to be 'cilium'.""" + + +class NginxIngressControllerType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Ingress type for the default NginxIngressController custom resource.""" + + ANNOTATION_CONTROLLED = "AnnotationControlled" + """The default NginxIngressController will be created. Users can edit the default + NginxIngressController Custom Resource to configure load balancer annotations.""" + EXTERNAL = "External" + """The default NginxIngressController will be created and the operator will provision an external + loadbalancer with it. Any annotation to make the default loadbalancer internal will be + overwritten.""" + INTERNAL = "Internal" + """The default NginxIngressController will be created and the operator will provision an internal + loadbalancer with it. Any annotation to make the default loadbalancer external will be + overwritten.""" + NONE = "None" + """The default Ingress Controller will not be created. It will not be deleted by the system if it + exists. Users should delete the default NginxIngressController Custom Resource manually if + desired.""" + + +class NodeOSUpgradeChannel(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Node OS Upgrade Channel. Manner in which the OS on your nodes is updated. The default is + NodeImage. + """ + + NONE = "None" + """No attempt to update your machines OS will be made either by OS or by rolling VHDs. This means + you are responsible for your security updates""" + UNMANAGED = "Unmanaged" + """OS updates will be applied automatically through the OS built-in patching infrastructure. Newly + scaled in machines will be unpatched initially and will be patched at some point by the OS's + infrastructure. Behavior of this option depends on the OS in question. Ubuntu and Mariner apply + security patches through unattended upgrade roughly once a day around 06:00 UTC. Windows does + not apply security patches automatically and so for them this option is equivalent to None till + further notice""" + NODE_IMAGE = "NodeImage" + """AKS will update the nodes with a newly patched VHD containing security fixes and bugfixes on a + weekly cadence. With the VHD update machines will be rolling reimaged to that VHD following + maintenance windows and surge settings. No extra VHD cost is incurred when choosing this option + as AKS hosts the images.""" + SECURITY_PATCH = "SecurityPatch" + """AKS downloads and updates the nodes with tested security updates. These updates honor the + maintenance window settings and produce a new VHD that is used on new nodes. On some occasions + it's not possible to apply the updates in place, in such cases the existing nodes will also be + re-imaged to the newly produced VHD in order to apply the changes. This option incurs an extra + cost of hosting the new Security Patch VHDs in your resource group for just in time + consumption.""" + + +class NodeProvisioningDefaultNodePools(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The set of default Karpenter NodePools (CRDs) configured for node provisioning. This field has + no effect unless mode is 'Auto'. Warning: Changing this from Auto to None on an existing + cluster will cause the default Karpenter NodePools to be deleted, which will drain and delete + the nodes associated with those pools. It is strongly recommended to not do this unless there + are idle nodes ready to take the pods evicted by that action. If not specified, the default is + Auto. For more information see aka.ms/aks/nap#node-pools. + """ + + NONE = "None" + """No Karpenter NodePools are provisioned automatically. Automatic scaling will not happen unless + the user creates one or more NodePool CRD instances.""" + AUTO = "Auto" + """A standard set of Karpenter NodePools are provisioned""" + + +class NodeProvisioningMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The node provisioning mode. If not specified, the default is Manual.""" + + MANUAL = "Manual" + """Nodes are provisioned manually by the user""" + AUTO = "Auto" + """Nodes are provisioned automatically by AKS using Karpenter (See aka.ms/aks/nap for more + details). Fixed size Node Pools can still be created, but autoscaling Node Pools cannot be. + (See aka.ms/aks/nap for more details).""" + + +class OSDiskType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The OS disk type to be used for machines in the agent pool. The default is 'Ephemeral' if the + VM supports it and has a cache disk larger than the requested OSDiskSizeGB. Otherwise, defaults + to 'Managed'. May not be changed after creation. For more information see `Ephemeral OS + `_. + """ + + MANAGED = "Managed" + """Azure replicates the operating system disk for a virtual machine to Azure storage to avoid data + loss should the VM need to be relocated to another host. Since containers aren't designed to + have local state persisted, this behavior offers limited value while providing some drawbacks, + including slower node provisioning and higher read/write latency.""" + EPHEMERAL = "Ephemeral" + """Ephemeral OS disks are stored only on the host machine, just like a temporary disk. This + provides lower read/write latency, along with faster node scaling and cluster upgrades.""" + + +class OSSKU(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Specifies the OS SKU used by the agent pool. The default is Ubuntu if OSType is Linux. The + default is Windows2019 when Kubernetes <= 1.24 or Windows2022 when Kubernetes >= 1.25 if OSType + is Windows. + """ + + UBUNTU = "Ubuntu" + """Use Ubuntu as the OS for node images.""" + AZURE_LINUX = "AzureLinux" + """Use AzureLinux as the OS for node images. Azure Linux is a container-optimized Linux distro + built by Microsoft, visit https://aka.ms/azurelinux for more information.""" + AZURE_LINUX3 = "AzureLinux3" + """Use AzureLinux3 as the OS for node images. Azure Linux is a container-optimized Linux distro + built by Microsoft, visit https://aka.ms/azurelinux for more information. For limitations, + visit https://aka.ms/aks/node-images. For OS migration guidance, see + https://aka.ms/aks/upgrade-os-version.""" + CBL_MARINER = "CBLMariner" + """Deprecated OSSKU. Microsoft recommends that new deployments choose 'AzureLinux' instead.""" + WINDOWS2019 = "Windows2019" + """Use Windows2019 as the OS for node images. Unsupported for system node pools. Windows2019 only + supports Windows2019 containers; it cannot run Windows2022 containers and vice versa.""" + WINDOWS2022 = "Windows2022" + """Use Windows2022 as the OS for node images. Unsupported for system node pools. Windows2022 only + supports Windows2022 containers; it cannot run Windows2019 containers and vice versa.""" + UBUNTU2204 = "Ubuntu2204" + """Use Ubuntu2204 as the OS for node images, however, Ubuntu 22.04 may not be supported for all + nodepools. For limitations and supported kubernetes versions, see + https://aka.ms/aks/supported-ubuntu-versions""" + UBUNTU2404 = "Ubuntu2404" + """Use Ubuntu2404 as the OS for node images, however, Ubuntu 24.04 may not be supported for all + nodepools. For limitations and supported kubernetes versions, see + https://aka.ms/aks/supported-ubuntu-versions""" + + +class OSType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The operating system type. The default is Linux.""" + + LINUX = "Linux" + """Use Linux.""" + WINDOWS = "Windows" + """Use Windows.""" + + +class OutboundType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The outbound (egress) routing method. This can only be set at cluster creation time and cannot + be changed later. For more information see `egress outbound type + `_. + """ + + LOAD_BALANCER = "loadBalancer" + """The load balancer is used for egress through an AKS assigned public IP. This supports + Kubernetes services of type 'loadBalancer'. For more information see `outbound type + loadbalancer + `_.""" + USER_DEFINED_ROUTING = "userDefinedRouting" + """Egress paths must be defined by the user. This is an advanced scenario and requires proper + network configuration. For more information see `outbound type userDefinedRouting + `_.""" + MANAGED_NAT_GATEWAY = "managedNATGateway" + """The AKS-managed NAT gateway is used for egress.""" + USER_ASSIGNED_NAT_GATEWAY = "userAssignedNATGateway" + """The user-assigned NAT gateway associated to the cluster subnet is used for egress. This is an + advanced scenario and requires proper network configuration.""" + NONE = "none" + """The AKS cluster is not set with any outbound-type. All AKS nodes follows Azure VM default + outbound behavior. Please refer to + https://azure.microsoft.com/en-us/updates/default-outbound-access-for-vms-in-azure-will-be-retired-transition-to-a-new-method-of-internet-access/""" + + +class PodIPAllocationMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Pod IP Allocation Mode. The IP allocation mode for pods in the agent pool. Must be used with + podSubnetId. The default is 'DynamicIndividual'. + """ + + DYNAMIC_INDIVIDUAL = "DynamicIndividual" + """Each node gets allocated with a non-contiguous list of IP addresses assignable to pods. This is + better for maximizing a small to medium subnet of size /16 or smaller. The Azure CNI cluster + with dynamic IP allocation defaults to this mode if the customer does not explicitly specify a + podIPAllocationMode""" + STATIC_BLOCK = "StaticBlock" + """Each node is statically allocated CIDR block(s) of size /28 = 16 IPs per block to satisfy the + maxPods per node. Number of CIDR blocks >= (maxPods / 16). The block, rather than a single IP, + counts against the Azure Vnet Private IP limit of 65K. Therefore block mode is suitable for + running larger workloads with more than the current limit of 65K pods in a cluster. This mode + is better suited to scale with larger subnets of /15 or bigger""" + + +class PolicyRule(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Enum representing different network policy rules.""" + + DENY_ALL = "DenyAll" + """Deny all network traffic.""" + ALLOW_ALL = "AllowAll" + """Allow all network traffic.""" + ALLOW_SAME_NAMESPACE = "AllowSameNamespace" + """Allow traffic within the same namespace.""" + + +class PrivateEndpointConnectionProvisioningState(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The current provisioning state.""" + + CANCELED = "Canceled" + CREATING = "Creating" + DELETING = "Deleting" + FAILED = "Failed" + SUCCEEDED = "Succeeded" + + +class Protocol(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The network protocol of the port.""" + + TCP = "TCP" + """TCP protocol.""" + UDP = "UDP" + """UDP protocol.""" + + +class PublicNetworkAccess(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """PublicNetworkAccess of the managedCluster. Allow or deny public network access for AKS.""" + + ENABLED = "Enabled" + DISABLED = "Disabled" + + +class ResourceIdentityType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The type of identity used for the managed cluster. For more information see `use managed + identities in AKS `_. + """ + + SYSTEM_ASSIGNED = "SystemAssigned" + """Use an implicitly created system assigned managed identity to manage cluster resources. Master + components in the control plane such as kube-controller-manager will use the system assigned + managed identity to manipulate Azure resources.""" + USER_ASSIGNED = "UserAssigned" + """Use a user-specified identity to manage cluster resources. Master components in the control + plane such as kube-controller-manager will use the specified user assigned managed identity to + manipulate Azure resources.""" + NONE = "None" + """Do not use a managed identity for the Managed Cluster, service principal will be used instead.""" + + +class RestrictionLevel(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The restriction level applied to the cluster's node resource group. If not specified, the + default is 'Unrestricted'. + """ + + UNRESTRICTED = "Unrestricted" + """All RBAC permissions are allowed on the managed node resource group""" + READ_ONLY = "ReadOnly" + """Only */read RBAC permissions allowed on the managed node resource group""" + + +class ScaleDownMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Describes how VMs are added to or removed from Agent Pools. See `billing states + `_. + """ + + DELETE = "Delete" + """Create new instances during scale up and remove instances during scale down.""" + DEALLOCATE = "Deallocate" + """Attempt to start deallocated instances (if they exist) during scale up and deallocate instances + during scale down.""" + + +class ScaleSetEvictionPolicy(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The Virtual Machine Scale Set eviction policy. The eviction policy specifies what to do with + the VM when it is evicted. The default is Delete. For more information about eviction see `spot + VMs `_. + """ + + DELETE = "Delete" + """Nodes in the underlying Scale Set of the node pool are deleted when they're evicted.""" + DEALLOCATE = "Deallocate" + """Nodes in the underlying Scale Set of the node pool are set to the stopped-deallocated state + upon eviction. Nodes in the stopped-deallocated state count against your compute quota and can + cause issues with cluster scaling or upgrading.""" + + +class ScaleSetPriority(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The Virtual Machine Scale Set priority.""" + + SPOT = "Spot" + """Spot priority VMs will be used. There is no SLA for spot nodes. See `spot on AKS + `_ for more information.""" + REGULAR = "Regular" + """Regular VMs will be used.""" + + +class ServiceMeshMode(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Mode of the service mesh.""" + + ISTIO = "Istio" + """Istio deployed as an AKS addon.""" + DISABLED = "Disabled" + """Mesh is disabled.""" + + +class SnapshotType(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The type of a snapshot. The default is NodePool.""" + + NODE_POOL = "NodePool" + """The snapshot is a snapshot of a node pool.""" + + +class TrustedAccessRoleBindingProvisioningState(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The current provisioning state of trusted access role binding.""" + + CANCELED = "Canceled" + DELETING = "Deleting" + FAILED = "Failed" + SUCCEEDED = "Succeeded" + UPDATING = "Updating" + + +class Type(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The week index. Specifies on which week of the month the dayOfWeek applies.""" + + FIRST = "First" + """First week of the month.""" + SECOND = "Second" + """Second week of the month.""" + THIRD = "Third" + """Third week of the month.""" + FOURTH = "Fourth" + """Fourth week of the month.""" + LAST = "Last" + """Last week of the month.""" + + +class UndrainableNodeBehavior(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Defines the behavior for undrainable nodes during upgrade. The most common cause of undrainable + nodes is Pod Disruption Budgets (PDBs), but other issues, such as pod termination grace period + is exceeding the remaining per-node drain timeout or pod is still being in a running state, can + also cause undrainable nodes. + """ + + CORDON = "Cordon" + """AKS will cordon the blocked nodes and replace them with surge nodes during upgrade. The blocked + nodes will be cordoned and replaced by surge nodes. The blocked nodes will have label + 'kubernetes.azure.com/upgrade-status:Quarantined'. A surge node will be retained for each + blocked node. A best-effort attempt will be made to delete all other surge nodes. If there are + enough surge nodes to replace blocked nodes, then the upgrade operation and the managed cluster + will be in failed state. Otherwise, the upgrade operation and the managed cluster will be in + canceled state.""" + SCHEDULE = "Schedule" + """AKS will mark the blocked nodes schedulable, but the blocked nodes are not upgraded. A + best-effort attempt will be made to delete all surge nodes. The upgrade operation and the + managed cluster will be in failed state if there are any blocked nodes.""" + + +class UpgradeChannel(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The upgrade channel for auto upgrade. The default is 'none'. For more information see `setting + the AKS cluster auto-upgrade channel + `_. + """ + + RAPID = "rapid" + """Automatically upgrade the cluster to the latest supported patch release on the latest supported + minor version. In cases where the cluster is at a version of Kubernetes that is at an N-2 minor + version where N is the latest supported minor version, the cluster first upgrades to the latest + supported patch version on N-1 minor version. For example, if a cluster is running version + 1.17.7 and versions 1.17.9, 1.18.4, 1.18.6, and 1.19.1 are available, your cluster first is + upgraded to 1.18.6, then is upgraded to 1.19.1.""" + STABLE = "stable" + """Automatically upgrade the cluster to the latest supported patch release on minor version N-1, + where N is the latest supported minor version. For example, if a cluster is running version + 1.17.7 and versions 1.17.9, 1.18.4, 1.18.6, and 1.19.1 are available, your cluster is upgraded + to 1.18.6.""" + PATCH = "patch" + """Automatically upgrade the cluster to the latest supported patch version when it becomes + available while keeping the minor version the same. For example, if a cluster is running + version 1.17.7 and versions 1.17.9, 1.18.4, 1.18.6, and 1.19.1 are available, your cluster is + upgraded to 1.17.9.""" + NODE_IMAGE = "node-image" + """Automatically upgrade the node image to the latest version available. Consider using + nodeOSUpgradeChannel instead as that allows you to configure node OS patching separate from + Kubernetes version patching""" + NONE = "none" + """Disables auto-upgrades and keeps the cluster at its current version of Kubernetes.""" + + +class WeekDay(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """The weekday enum.""" + + SUNDAY = "Sunday" + MONDAY = "Monday" + TUESDAY = "Tuesday" + WEDNESDAY = "Wednesday" + THURSDAY = "Thursday" + FRIDAY = "Friday" + SATURDAY = "Saturday" + + +class WorkloadRuntime(str, Enum, metaclass=CaseInsensitiveEnumMeta): + """Determines the type of workload a node can run.""" + + OCI_CONTAINER = "OCIContainer" + """Nodes will use Kubelet to run standard OCI container workloads.""" + WASM_WASI = "WasmWasi" + """Nodes will use Krustlet to run WASM workloads using the WASI provider (Preview).""" + KATA_VM_ISOLATION = "KataVmIsolation" + """Nodes can use (Kata + Cloud Hypervisor + Hyper-V) to enable Nested VM-based pods. Due to the + use Hyper-V, AKS node OS itself is a nested VM (the root OS) of Hyper-V. Thus it can only be + used with VM series that support Nested Virtualization such as Dv3 series.""" diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/_models_py3.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/_models_py3.py new file mode 100644 index 00000000000..9bcc668831d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/_models_py3.py @@ -0,0 +1,9636 @@ +# pylint: disable=line-too-long,useless-suppression,too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from collections.abc import MutableMapping +import datetime +from typing import Any, Optional, TYPE_CHECKING, Union + +from .._utils import serialization as _serialization + +if TYPE_CHECKING: + from .. import models as _models +JSON = MutableMapping[str, Any] + + +class AbsoluteMonthlySchedule(_serialization.Model): + """For schedules like: 'recur every month on the 15th' or 'recur every 3 months on the 20th'. + + All required parameters must be populated in order to send to server. + + :ivar interval_months: Specifies the number of months between each set of occurrences. + Required. + :vartype interval_months: int + :ivar day_of_month: The date of the month. Required. + :vartype day_of_month: int + """ + + _validation = { + "interval_months": {"required": True, "maximum": 6, "minimum": 1}, + "day_of_month": {"required": True, "maximum": 31, "minimum": 1}, + } + + _attribute_map = { + "interval_months": {"key": "intervalMonths", "type": "int"}, + "day_of_month": {"key": "dayOfMonth", "type": "int"}, + } + + def __init__(self, *, interval_months: int, day_of_month: int, **kwargs: Any) -> None: + """ + :keyword interval_months: Specifies the number of months between each set of occurrences. + Required. + :paramtype interval_months: int + :keyword day_of_month: The date of the month. Required. + :paramtype day_of_month: int + """ + super().__init__(**kwargs) + self.interval_months = interval_months + self.day_of_month = day_of_month + + +class AdvancedNetworking(_serialization.Model): + """Advanced Networking profile for enabling observability and security feature suite on a cluster. + For more information see aka.ms/aksadvancednetworking. + + :ivar enabled: Indicates the enablement of Advanced Networking functionalities of observability + and security on AKS clusters. When this is set to true, all observability and security features + will be set to enabled unless explicitly disabled. If not specified, the default is false. + :vartype enabled: bool + :ivar observability: Observability profile to enable advanced network metrics and flow logs + with historical contexts. + :vartype observability: ~azure.mgmt.containerservice.models.AdvancedNetworkingObservability + :ivar security: Security profile to enable security features on cilium based cluster. + :vartype security: ~azure.mgmt.containerservice.models.AdvancedNetworkingSecurity + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + "observability": {"key": "observability", "type": "AdvancedNetworkingObservability"}, + "security": {"key": "security", "type": "AdvancedNetworkingSecurity"}, + } + + def __init__( + self, + *, + enabled: Optional[bool] = None, + observability: Optional["_models.AdvancedNetworkingObservability"] = None, + security: Optional["_models.AdvancedNetworkingSecurity"] = None, + **kwargs: Any + ) -> None: + """ + :keyword enabled: Indicates the enablement of Advanced Networking functionalities of + observability and security on AKS clusters. When this is set to true, all observability and + security features will be set to enabled unless explicitly disabled. If not specified, the + default is false. + :paramtype enabled: bool + :keyword observability: Observability profile to enable advanced network metrics and flow logs + with historical contexts. + :paramtype observability: ~azure.mgmt.containerservice.models.AdvancedNetworkingObservability + :keyword security: Security profile to enable security features on cilium based cluster. + :paramtype security: ~azure.mgmt.containerservice.models.AdvancedNetworkingSecurity + """ + super().__init__(**kwargs) + self.enabled = enabled + self.observability = observability + self.security = security + + +class AdvancedNetworkingObservability(_serialization.Model): + """Observability profile to enable advanced network metrics and flow logs with historical + contexts. + + :ivar enabled: Indicates the enablement of Advanced Networking observability functionalities on + clusters. + :vartype enabled: bool + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Indicates the enablement of Advanced Networking observability functionalities + on clusters. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class AdvancedNetworkingSecurity(_serialization.Model): + """Security profile to enable security features on cilium based cluster. + + :ivar enabled: This feature allows user to configure network policy based on DNS (FQDN) names. + It can be enabled only on cilium based clusters. If not specified, the default is false. + :vartype enabled: bool + :ivar advanced_network_policies: Enable advanced network policies. This allows users to + configure Layer 7 network policies (FQDN, HTTP, Kafka). Policies themselves must be configured + via the Cilium Network Policy resources, see + https://docs.cilium.io/en/latest/security/policy/index.html. This can be enabled only on + cilium-based clusters. If not specified, the default value is FQDN if security.enabled is set + to true. Known values are: "L7", "FQDN", and "None". + :vartype advanced_network_policies: str or + ~azure.mgmt.containerservice.models.AdvancedNetworkPolicies + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + "advanced_network_policies": {"key": "advancedNetworkPolicies", "type": "str"}, + } + + def __init__( + self, + *, + enabled: Optional[bool] = None, + advanced_network_policies: Optional[Union[str, "_models.AdvancedNetworkPolicies"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword enabled: This feature allows user to configure network policy based on DNS (FQDN) + names. It can be enabled only on cilium based clusters. If not specified, the default is false. + :paramtype enabled: bool + :keyword advanced_network_policies: Enable advanced network policies. This allows users to + configure Layer 7 network policies (FQDN, HTTP, Kafka). Policies themselves must be configured + via the Cilium Network Policy resources, see + https://docs.cilium.io/en/latest/security/policy/index.html. This can be enabled only on + cilium-based clusters. If not specified, the default value is FQDN if security.enabled is set + to true. Known values are: "L7", "FQDN", and "None". + :paramtype advanced_network_policies: str or + ~azure.mgmt.containerservice.models.AdvancedNetworkPolicies + """ + super().__init__(**kwargs) + self.enabled = enabled + self.advanced_network_policies = advanced_network_policies + + +class SubResource(_serialization.Model): + """Reference to another subresource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.id: Optional[str] = None + self.name: Optional[str] = None + self.type: Optional[str] = None + + +class AgentPool(SubResource): + """Agent Pool. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar e_tag: Unique read-only string used to implement optimistic concurrency. The eTag value + will change when the resource is updated. Specify an if-match or if-none-match header with the + eTag value for a subsequent request to enable optimistic concurrency per the normal eTag + convention. + :vartype e_tag: str + :ivar count: Number of agents (VMs) to host docker containers. Allowed values must be in the + range of 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for + system pools. The default value is 1. + :vartype count: int + :ivar vm_size: The size of the agent pool VMs. VM size availability varies by region. If a node + contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. + For more details on restricted VM sizes, see: + https://docs.microsoft.com/azure/aks/quotas-skus-regions. + :vartype vm_size: str + :ivar os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every machine + in the master/agent pool. If you specify 0, it will apply the default osDisk size according to + the vmSize specified. + :vartype os_disk_size_gb: int + :ivar os_disk_type: The OS disk type to be used for machines in the agent pool. The default is + 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. + Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see + `Ephemeral OS `_. + Known values are: "Managed" and "Ephemeral". + :vartype os_disk_type: str or ~azure.mgmt.containerservice.models.OSDiskType + :ivar kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data + root, and Kubelet ephemeral storage. Known values are: "OS" and "Temporary". + :vartype kubelet_disk_type: str or ~azure.mgmt.containerservice.models.KubeletDiskType + :ivar workload_runtime: Determines the type of workload a node can run. Known values are: + "OCIContainer", "WasmWasi", and "KataVmIsolation". + :vartype workload_runtime: str or ~azure.mgmt.containerservice.models.WorkloadRuntime + :ivar message_of_the_day: Message of the day for Linux nodes, base64-encoded. A base64-encoded + string which will be written to /etc/motd after decoding. This allows customization of the + message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a + static string (i.e., will be printed raw and not be executed as a script). + :vartype message_of_the_day: str + :ivar vnet_subnet_id: The ID of the subnet which agent pool nodes and optionally pods will join + on startup. If this is not specified, a VNET and subnet will be generated and used. If no + podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :vartype vnet_subnet_id: str + :ivar pod_subnet_id: The ID of the subnet which pods will join when launched. If omitted, pod + IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of + the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :vartype pod_subnet_id: str + :ivar pod_ip_allocation_mode: Pod IP Allocation Mode. The IP allocation mode for pods in the + agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'. Known values + are: "DynamicIndividual" and "StaticBlock". + :vartype pod_ip_allocation_mode: str or ~azure.mgmt.containerservice.models.PodIPAllocationMode + :ivar max_pods: The maximum number of pods that can run on a node. + :vartype max_pods: int + :ivar os_type: The operating system type. The default is Linux. Known values are: "Linux" and + "Windows". + :vartype os_type: str or ~azure.mgmt.containerservice.models.OSType + :ivar os_sku: Specifies the OS SKU used by the agent pool. The default is Ubuntu if OSType is + Linux. The default is Windows2019 when Kubernetes <= 1.24 or Windows2022 when Kubernetes >= + 1.25 if OSType is Windows. Known values are: "Ubuntu", "AzureLinux", "AzureLinux3", + "CBLMariner", "Windows2019", "Windows2022", "Ubuntu2204", and "Ubuntu2404". + :vartype os_sku: str or ~azure.mgmt.containerservice.models.OSSKU + :ivar max_count: The maximum number of nodes for auto-scaling. + :vartype max_count: int + :ivar min_count: The minimum number of nodes for auto-scaling. + :vartype min_count: int + :ivar enable_auto_scaling: Whether to enable auto-scaler. + :vartype enable_auto_scaling: bool + :ivar scale_down_mode: The scale down mode to use when scaling the Agent Pool. This also + effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Known values + are: "Delete" and "Deallocate". + :vartype scale_down_mode: str or ~azure.mgmt.containerservice.models.ScaleDownMode + :ivar type_properties_type: The type of Agent Pool. Known values are: + "VirtualMachineScaleSets", "AvailabilitySet", and "VirtualMachines". + :vartype type_properties_type: str or ~azure.mgmt.containerservice.models.AgentPoolType + :ivar mode: The mode of an agent pool. A cluster must have at least one 'System' Agent Pool at + all times. For additional information on agent pool restrictions and best practices, see: + https://docs.microsoft.com/azure/aks/use-system-pools. Known values are: "System", "User", and + "Gateway". + :vartype mode: str or ~azure.mgmt.containerservice.models.AgentPoolMode + :ivar orchestrator_version: The version of Kubernetes specified by the user. Both patch version + (e.g. 1.20.13) and (e.g. 1.20) are supported. When + is specified, the latest supported GA patch version is chosen automatically. + Updating the cluster with the same once it has been created (e.g. 1.14.x -> 1.14) + will not trigger an upgrade, even if a newer patch version is available. As a best practice, + you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node + pool version must have the same major version as the control plane. The node pool minor version + must be within two minor versions of the control plane version. The node pool version cannot be + greater than the control plane version. For more information see `upgrading a node pool + `_. + :vartype orchestrator_version: str + :ivar current_orchestrator_version: The version of Kubernetes the Agent Pool is running. If + orchestratorVersion is a fully specified version , this field will be + exactly equal to it. If orchestratorVersion is , this field will contain the full + version being used. + :vartype current_orchestrator_version: str + :ivar node_image_version: The version of node image. + :vartype node_image_version: str + :ivar upgrade_settings: Settings for upgrading the agentpool. + :vartype upgrade_settings: ~azure.mgmt.containerservice.models.AgentPoolUpgradeSettings + :ivar provisioning_state: The current deployment or provisioning state. + :vartype provisioning_state: str + :ivar power_state: Whether the Agent Pool is running or stopped. When an Agent Pool is first + created it is initially Running. The Agent Pool can be stopped by setting this field to + Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An + Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. + :vartype power_state: ~azure.mgmt.containerservice.models.PowerState + :ivar availability_zones: The list of Availability zones to use for nodes. This can only be + specified if the AgentPoolType property is 'VirtualMachineScaleSets'. + :vartype availability_zones: list[str] + :ivar enable_node_public_ip: Whether each node is allocated its own public IP. Some scenarios + may require nodes in a node pool to receive their own dedicated public IP addresses. A common + scenario is for gaming workloads, where a console needs to make a direct connection to a cloud + virtual machine to minimize hops. For more information see `assigning a public IP per node + `_. + The default is false. + :vartype enable_node_public_ip: bool + :ivar node_public_ip_prefix_id: The public IP prefix ID which VM nodes should use IPs from. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. + :vartype node_public_ip_prefix_id: str + :ivar scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default + is 'Regular'. Known values are: "Spot" and "Regular". + :vartype scale_set_priority: str or ~azure.mgmt.containerservice.models.ScaleSetPriority + :ivar scale_set_eviction_policy: The Virtual Machine Scale Set eviction policy to use. This + cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is + 'Delete'. Known values are: "Delete" and "Deallocate". + :vartype scale_set_eviction_policy: str or + ~azure.mgmt.containerservice.models.ScaleSetEvictionPolicy + :ivar spot_max_price: The max price (in US Dollars) you are willing to pay for spot instances. + Possible values are any decimal value greater than zero or -1 which indicates default price to + be up-to on-demand. Possible values are any decimal value greater than zero or -1 which + indicates the willingness to pay any on-demand price. For more details on spot pricing, see + `spot VMs pricing `_. + :vartype spot_max_price: float + :ivar tags: The tags to be persisted on the agent pool virtual machine scale set. + :vartype tags: dict[str, str] + :ivar node_labels: The node labels to be persisted across all nodes in agent pool. + :vartype node_labels: dict[str, str] + :ivar node_taints: The taints added to new nodes during node pool create and scale. For + example, key=value:NoSchedule. + :vartype node_taints: list[str] + :ivar proximity_placement_group_id: The ID for Proximity Placement Group. + :vartype proximity_placement_group_id: str + :ivar kubelet_config: The Kubelet configuration on the agent pool nodes. + :vartype kubelet_config: ~azure.mgmt.containerservice.models.KubeletConfig + :ivar linux_os_config: The OS configuration of Linux agent nodes. + :vartype linux_os_config: ~azure.mgmt.containerservice.models.LinuxOSConfig + :ivar enable_encryption_at_host: Whether to enable host based OS and data drive encryption. + This is only supported on certain VM sizes and in certain Azure regions. For more information, + see: https://docs.microsoft.com/azure/aks/enable-host-encryption. + :vartype enable_encryption_at_host: bool + :ivar enable_ultra_ssd: Whether to enable UltraSSD. + :vartype enable_ultra_ssd: bool + :ivar enable_fips: Whether to use a FIPS-enabled OS. See `Add a FIPS-enabled node pool + `_ + for more details. + :vartype enable_fips: bool + :ivar gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile + for supported GPU VM SKU. Known values are: "MIG1g", "MIG2g", "MIG3g", "MIG4g", and "MIG7g". + :vartype gpu_instance_profile: str or ~azure.mgmt.containerservice.models.GPUInstanceProfile + :ivar creation_data: CreationData to be used to specify the source Snapshot ID if the node pool + will be created/upgraded using a snapshot. + :vartype creation_data: ~azure.mgmt.containerservice.models.CreationData + :ivar capacity_reservation_group_id: AKS will associate the specified agent pool with the + Capacity Reservation Group. + :vartype capacity_reservation_group_id: str + :ivar host_group_id: The fully qualified resource ID of the Dedicated Host Group to provision + virtual machines from, used only in creation scenario and not allowed to changed once set. This + is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + For more information see `Azure dedicated hosts + `_. + :vartype host_group_id: str + :ivar network_profile: Network-related settings of an agent pool. + :vartype network_profile: ~azure.mgmt.containerservice.models.AgentPoolNetworkProfile + :ivar windows_profile: The Windows agent pool's specific profile. + :vartype windows_profile: ~azure.mgmt.containerservice.models.AgentPoolWindowsProfile + :ivar security_profile: The security settings of an agent pool. + :vartype security_profile: ~azure.mgmt.containerservice.models.AgentPoolSecurityProfile + :ivar gpu_profile: GPU settings for the Agent Pool. + :vartype gpu_profile: ~azure.mgmt.containerservice.models.GPUProfile + :ivar gateway_profile: Profile specific to a managed agent pool in Gateway mode. This field + cannot be set if agent pool mode is not Gateway. + :vartype gateway_profile: ~azure.mgmt.containerservice.models.AgentPoolGatewayProfile + :ivar virtual_machines_profile: Specifications on VirtualMachines agent pool. + :vartype virtual_machines_profile: ~azure.mgmt.containerservice.models.VirtualMachinesProfile + :ivar virtual_machine_nodes_status: The status of nodes in a VirtualMachines agent pool. + :vartype virtual_machine_nodes_status: + list[~azure.mgmt.containerservice.models.VirtualMachineNodes] + :ivar status: Contains read-only information about the Agent Pool. + :vartype status: ~azure.mgmt.containerservice.models.AgentPoolStatus + :ivar local_dns_profile: Configures the per-node local DNS, with VnetDNS and KubeDNS overrides. + LocalDNS helps improve performance and reliability of DNS resolution in an AKS cluster. For + more details see aka.ms/aks/localdns. + :vartype local_dns_profile: ~azure.mgmt.containerservice.models.LocalDNSProfile + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "e_tag": {"readonly": True}, + "os_disk_size_gb": {"maximum": 2048, "minimum": 0}, + "current_orchestrator_version": {"readonly": True}, + "node_image_version": {"readonly": True}, + "provisioning_state": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "e_tag": {"key": "properties.eTag", "type": "str"}, + "count": {"key": "properties.count", "type": "int"}, + "vm_size": {"key": "properties.vmSize", "type": "str"}, + "os_disk_size_gb": {"key": "properties.osDiskSizeGB", "type": "int"}, + "os_disk_type": {"key": "properties.osDiskType", "type": "str"}, + "kubelet_disk_type": {"key": "properties.kubeletDiskType", "type": "str"}, + "workload_runtime": {"key": "properties.workloadRuntime", "type": "str"}, + "message_of_the_day": {"key": "properties.messageOfTheDay", "type": "str"}, + "vnet_subnet_id": {"key": "properties.vnetSubnetID", "type": "str"}, + "pod_subnet_id": {"key": "properties.podSubnetID", "type": "str"}, + "pod_ip_allocation_mode": {"key": "properties.podIPAllocationMode", "type": "str"}, + "max_pods": {"key": "properties.maxPods", "type": "int"}, + "os_type": {"key": "properties.osType", "type": "str"}, + "os_sku": {"key": "properties.osSKU", "type": "str"}, + "max_count": {"key": "properties.maxCount", "type": "int"}, + "min_count": {"key": "properties.minCount", "type": "int"}, + "enable_auto_scaling": {"key": "properties.enableAutoScaling", "type": "bool"}, + "scale_down_mode": {"key": "properties.scaleDownMode", "type": "str"}, + "type_properties_type": {"key": "properties.type", "type": "str"}, + "mode": {"key": "properties.mode", "type": "str"}, + "orchestrator_version": {"key": "properties.orchestratorVersion", "type": "str"}, + "current_orchestrator_version": {"key": "properties.currentOrchestratorVersion", "type": "str"}, + "node_image_version": {"key": "properties.nodeImageVersion", "type": "str"}, + "upgrade_settings": {"key": "properties.upgradeSettings", "type": "AgentPoolUpgradeSettings"}, + "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, + "power_state": {"key": "properties.powerState", "type": "PowerState"}, + "availability_zones": {"key": "properties.availabilityZones", "type": "[str]"}, + "enable_node_public_ip": {"key": "properties.enableNodePublicIP", "type": "bool"}, + "node_public_ip_prefix_id": {"key": "properties.nodePublicIPPrefixID", "type": "str"}, + "scale_set_priority": {"key": "properties.scaleSetPriority", "type": "str"}, + "scale_set_eviction_policy": {"key": "properties.scaleSetEvictionPolicy", "type": "str"}, + "spot_max_price": {"key": "properties.spotMaxPrice", "type": "float"}, + "tags": {"key": "properties.tags", "type": "{str}"}, + "node_labels": {"key": "properties.nodeLabels", "type": "{str}"}, + "node_taints": {"key": "properties.nodeTaints", "type": "[str]"}, + "proximity_placement_group_id": {"key": "properties.proximityPlacementGroupID", "type": "str"}, + "kubelet_config": {"key": "properties.kubeletConfig", "type": "KubeletConfig"}, + "linux_os_config": {"key": "properties.linuxOSConfig", "type": "LinuxOSConfig"}, + "enable_encryption_at_host": {"key": "properties.enableEncryptionAtHost", "type": "bool"}, + "enable_ultra_ssd": {"key": "properties.enableUltraSSD", "type": "bool"}, + "enable_fips": {"key": "properties.enableFIPS", "type": "bool"}, + "gpu_instance_profile": {"key": "properties.gpuInstanceProfile", "type": "str"}, + "creation_data": {"key": "properties.creationData", "type": "CreationData"}, + "capacity_reservation_group_id": {"key": "properties.capacityReservationGroupID", "type": "str"}, + "host_group_id": {"key": "properties.hostGroupID", "type": "str"}, + "network_profile": {"key": "properties.networkProfile", "type": "AgentPoolNetworkProfile"}, + "windows_profile": {"key": "properties.windowsProfile", "type": "AgentPoolWindowsProfile"}, + "security_profile": {"key": "properties.securityProfile", "type": "AgentPoolSecurityProfile"}, + "gpu_profile": {"key": "properties.gpuProfile", "type": "GPUProfile"}, + "gateway_profile": {"key": "properties.gatewayProfile", "type": "AgentPoolGatewayProfile"}, + "virtual_machines_profile": {"key": "properties.virtualMachinesProfile", "type": "VirtualMachinesProfile"}, + "virtual_machine_nodes_status": { + "key": "properties.virtualMachineNodesStatus", + "type": "[VirtualMachineNodes]", + }, + "status": {"key": "properties.status", "type": "AgentPoolStatus"}, + "local_dns_profile": {"key": "properties.localDNSProfile", "type": "LocalDNSProfile"}, + } + + def __init__( # pylint: disable=too-many-locals + self, + *, + count: Optional[int] = None, + vm_size: Optional[str] = None, + os_disk_size_gb: Optional[int] = None, + os_disk_type: Optional[Union[str, "_models.OSDiskType"]] = None, + kubelet_disk_type: Optional[Union[str, "_models.KubeletDiskType"]] = None, + workload_runtime: Optional[Union[str, "_models.WorkloadRuntime"]] = None, + message_of_the_day: Optional[str] = None, + vnet_subnet_id: Optional[str] = None, + pod_subnet_id: Optional[str] = None, + pod_ip_allocation_mode: Optional[Union[str, "_models.PodIPAllocationMode"]] = None, + max_pods: Optional[int] = None, + os_type: Union[str, "_models.OSType"] = "Linux", + os_sku: Optional[Union[str, "_models.OSSKU"]] = None, + max_count: Optional[int] = None, + min_count: Optional[int] = None, + enable_auto_scaling: Optional[bool] = None, + scale_down_mode: Optional[Union[str, "_models.ScaleDownMode"]] = None, + type_properties_type: Optional[Union[str, "_models.AgentPoolType"]] = None, + mode: Optional[Union[str, "_models.AgentPoolMode"]] = None, + orchestrator_version: Optional[str] = None, + upgrade_settings: Optional["_models.AgentPoolUpgradeSettings"] = None, + power_state: Optional["_models.PowerState"] = None, + availability_zones: Optional[list[str]] = None, + enable_node_public_ip: Optional[bool] = None, + node_public_ip_prefix_id: Optional[str] = None, + scale_set_priority: Union[str, "_models.ScaleSetPriority"] = "Regular", + scale_set_eviction_policy: Union[str, "_models.ScaleSetEvictionPolicy"] = "Delete", + spot_max_price: float = -1, + tags: Optional[dict[str, str]] = None, + node_labels: Optional[dict[str, str]] = None, + node_taints: Optional[list[str]] = None, + proximity_placement_group_id: Optional[str] = None, + kubelet_config: Optional["_models.KubeletConfig"] = None, + linux_os_config: Optional["_models.LinuxOSConfig"] = None, + enable_encryption_at_host: Optional[bool] = None, + enable_ultra_ssd: Optional[bool] = None, + enable_fips: Optional[bool] = None, + gpu_instance_profile: Optional[Union[str, "_models.GPUInstanceProfile"]] = None, + creation_data: Optional["_models.CreationData"] = None, + capacity_reservation_group_id: Optional[str] = None, + host_group_id: Optional[str] = None, + network_profile: Optional["_models.AgentPoolNetworkProfile"] = None, + windows_profile: Optional["_models.AgentPoolWindowsProfile"] = None, + security_profile: Optional["_models.AgentPoolSecurityProfile"] = None, + gpu_profile: Optional["_models.GPUProfile"] = None, + gateway_profile: Optional["_models.AgentPoolGatewayProfile"] = None, + virtual_machines_profile: Optional["_models.VirtualMachinesProfile"] = None, + virtual_machine_nodes_status: Optional[list["_models.VirtualMachineNodes"]] = None, + status: Optional["_models.AgentPoolStatus"] = None, + local_dns_profile: Optional["_models.LocalDNSProfile"] = None, + **kwargs: Any + ) -> None: + """ + :keyword count: Number of agents (VMs) to host docker containers. Allowed values must be in the + range of 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for + system pools. The default value is 1. + :paramtype count: int + :keyword vm_size: The size of the agent pool VMs. VM size availability varies by region. If a + node contains insufficient compute resources (memory, cpu, etc) pods might fail to run + correctly. For more details on restricted VM sizes, see: + https://docs.microsoft.com/azure/aks/quotas-skus-regions. + :paramtype vm_size: str + :keyword os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every + machine in the master/agent pool. If you specify 0, it will apply the default osDisk size + according to the vmSize specified. + :paramtype os_disk_size_gb: int + :keyword os_disk_type: The OS disk type to be used for machines in the agent pool. The default + is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested + OSDiskSizeGB. Otherwise, defaults to 'Managed'. May not be changed after creation. For more + information see `Ephemeral OS + `_. Known values are: + "Managed" and "Ephemeral". + :paramtype os_disk_type: str or ~azure.mgmt.containerservice.models.OSDiskType + :keyword kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime + data root, and Kubelet ephemeral storage. Known values are: "OS" and "Temporary". + :paramtype kubelet_disk_type: str or ~azure.mgmt.containerservice.models.KubeletDiskType + :keyword workload_runtime: Determines the type of workload a node can run. Known values are: + "OCIContainer", "WasmWasi", and "KataVmIsolation". + :paramtype workload_runtime: str or ~azure.mgmt.containerservice.models.WorkloadRuntime + :keyword message_of_the_day: Message of the day for Linux nodes, base64-encoded. A + base64-encoded string which will be written to /etc/motd after decoding. This allows + customization of the message of the day for Linux nodes. It must not be specified for Windows + nodes. It must be a static string (i.e., will be printed raw and not be executed as a script). + :paramtype message_of_the_day: str + :keyword vnet_subnet_id: The ID of the subnet which agent pool nodes and optionally pods will + join on startup. If this is not specified, a VNET and subnet will be generated and used. If no + podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :paramtype vnet_subnet_id: str + :keyword pod_subnet_id: The ID of the subnet which pods will join when launched. If omitted, + pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is + of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :paramtype pod_subnet_id: str + :keyword pod_ip_allocation_mode: Pod IP Allocation Mode. The IP allocation mode for pods in the + agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'. Known values + are: "DynamicIndividual" and "StaticBlock". + :paramtype pod_ip_allocation_mode: str or + ~azure.mgmt.containerservice.models.PodIPAllocationMode + :keyword max_pods: The maximum number of pods that can run on a node. + :paramtype max_pods: int + :keyword os_type: The operating system type. The default is Linux. Known values are: "Linux" + and "Windows". + :paramtype os_type: str or ~azure.mgmt.containerservice.models.OSType + :keyword os_sku: Specifies the OS SKU used by the agent pool. The default is Ubuntu if OSType + is Linux. The default is Windows2019 when Kubernetes <= 1.24 or Windows2022 when Kubernetes >= + 1.25 if OSType is Windows. Known values are: "Ubuntu", "AzureLinux", "AzureLinux3", + "CBLMariner", "Windows2019", "Windows2022", "Ubuntu2204", and "Ubuntu2404". + :paramtype os_sku: str or ~azure.mgmt.containerservice.models.OSSKU + :keyword max_count: The maximum number of nodes for auto-scaling. + :paramtype max_count: int + :keyword min_count: The minimum number of nodes for auto-scaling. + :paramtype min_count: int + :keyword enable_auto_scaling: Whether to enable auto-scaler. + :paramtype enable_auto_scaling: bool + :keyword scale_down_mode: The scale down mode to use when scaling the Agent Pool. This also + effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Known values + are: "Delete" and "Deallocate". + :paramtype scale_down_mode: str or ~azure.mgmt.containerservice.models.ScaleDownMode + :keyword type_properties_type: The type of Agent Pool. Known values are: + "VirtualMachineScaleSets", "AvailabilitySet", and "VirtualMachines". + :paramtype type_properties_type: str or ~azure.mgmt.containerservice.models.AgentPoolType + :keyword mode: The mode of an agent pool. A cluster must have at least one 'System' Agent Pool + at all times. For additional information on agent pool restrictions and best practices, see: + https://docs.microsoft.com/azure/aks/use-system-pools. Known values are: "System", "User", and + "Gateway". + :paramtype mode: str or ~azure.mgmt.containerservice.models.AgentPoolMode + :keyword orchestrator_version: The version of Kubernetes specified by the user. Both patch + version (e.g. 1.20.13) and (e.g. 1.20) are supported. When + is specified, the latest supported GA patch version is chosen automatically. + Updating the cluster with the same once it has been created (e.g. 1.14.x -> 1.14) + will not trigger an upgrade, even if a newer patch version is available. As a best practice, + you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node + pool version must have the same major version as the control plane. The node pool minor version + must be within two minor versions of the control plane version. The node pool version cannot be + greater than the control plane version. For more information see `upgrading a node pool + `_. + :paramtype orchestrator_version: str + :keyword upgrade_settings: Settings for upgrading the agentpool. + :paramtype upgrade_settings: ~azure.mgmt.containerservice.models.AgentPoolUpgradeSettings + :keyword power_state: Whether the Agent Pool is running or stopped. When an Agent Pool is first + created it is initially Running. The Agent Pool can be stopped by setting this field to + Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An + Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. + :paramtype power_state: ~azure.mgmt.containerservice.models.PowerState + :keyword availability_zones: The list of Availability zones to use for nodes. This can only be + specified if the AgentPoolType property is 'VirtualMachineScaleSets'. + :paramtype availability_zones: list[str] + :keyword enable_node_public_ip: Whether each node is allocated its own public IP. Some + scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. + A common scenario is for gaming workloads, where a console needs to make a direct connection to + a cloud virtual machine to minimize hops. For more information see `assigning a public IP per + node + `_. + The default is false. + :paramtype enable_node_public_ip: bool + :keyword node_public_ip_prefix_id: The public IP prefix ID which VM nodes should use IPs from. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. + :paramtype node_public_ip_prefix_id: str + :keyword scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the + default is 'Regular'. Known values are: "Spot" and "Regular". + :paramtype scale_set_priority: str or ~azure.mgmt.containerservice.models.ScaleSetPriority + :keyword scale_set_eviction_policy: The Virtual Machine Scale Set eviction policy to use. This + cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is + 'Delete'. Known values are: "Delete" and "Deallocate". + :paramtype scale_set_eviction_policy: str or + ~azure.mgmt.containerservice.models.ScaleSetEvictionPolicy + :keyword spot_max_price: The max price (in US Dollars) you are willing to pay for spot + instances. Possible values are any decimal value greater than zero or -1 which indicates + default price to be up-to on-demand. Possible values are any decimal value greater than zero or + -1 which indicates the willingness to pay any on-demand price. For more details on spot + pricing, see `spot VMs pricing + `_. + :paramtype spot_max_price: float + :keyword tags: The tags to be persisted on the agent pool virtual machine scale set. + :paramtype tags: dict[str, str] + :keyword node_labels: The node labels to be persisted across all nodes in agent pool. + :paramtype node_labels: dict[str, str] + :keyword node_taints: The taints added to new nodes during node pool create and scale. For + example, key=value:NoSchedule. + :paramtype node_taints: list[str] + :keyword proximity_placement_group_id: The ID for Proximity Placement Group. + :paramtype proximity_placement_group_id: str + :keyword kubelet_config: The Kubelet configuration on the agent pool nodes. + :paramtype kubelet_config: ~azure.mgmt.containerservice.models.KubeletConfig + :keyword linux_os_config: The OS configuration of Linux agent nodes. + :paramtype linux_os_config: ~azure.mgmt.containerservice.models.LinuxOSConfig + :keyword enable_encryption_at_host: Whether to enable host based OS and data drive encryption. + This is only supported on certain VM sizes and in certain Azure regions. For more information, + see: https://docs.microsoft.com/azure/aks/enable-host-encryption. + :paramtype enable_encryption_at_host: bool + :keyword enable_ultra_ssd: Whether to enable UltraSSD. + :paramtype enable_ultra_ssd: bool + :keyword enable_fips: Whether to use a FIPS-enabled OS. See `Add a FIPS-enabled node pool + `_ + for more details. + :paramtype enable_fips: bool + :keyword gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance + profile for supported GPU VM SKU. Known values are: "MIG1g", "MIG2g", "MIG3g", "MIG4g", and + "MIG7g". + :paramtype gpu_instance_profile: str or ~azure.mgmt.containerservice.models.GPUInstanceProfile + :keyword creation_data: CreationData to be used to specify the source Snapshot ID if the node + pool will be created/upgraded using a snapshot. + :paramtype creation_data: ~azure.mgmt.containerservice.models.CreationData + :keyword capacity_reservation_group_id: AKS will associate the specified agent pool with the + Capacity Reservation Group. + :paramtype capacity_reservation_group_id: str + :keyword host_group_id: The fully qualified resource ID of the Dedicated Host Group to + provision virtual machines from, used only in creation scenario and not allowed to changed once + set. This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + For more information see `Azure dedicated hosts + `_. + :paramtype host_group_id: str + :keyword network_profile: Network-related settings of an agent pool. + :paramtype network_profile: ~azure.mgmt.containerservice.models.AgentPoolNetworkProfile + :keyword windows_profile: The Windows agent pool's specific profile. + :paramtype windows_profile: ~azure.mgmt.containerservice.models.AgentPoolWindowsProfile + :keyword security_profile: The security settings of an agent pool. + :paramtype security_profile: ~azure.mgmt.containerservice.models.AgentPoolSecurityProfile + :keyword gpu_profile: GPU settings for the Agent Pool. + :paramtype gpu_profile: ~azure.mgmt.containerservice.models.GPUProfile + :keyword gateway_profile: Profile specific to a managed agent pool in Gateway mode. This field + cannot be set if agent pool mode is not Gateway. + :paramtype gateway_profile: ~azure.mgmt.containerservice.models.AgentPoolGatewayProfile + :keyword virtual_machines_profile: Specifications on VirtualMachines agent pool. + :paramtype virtual_machines_profile: ~azure.mgmt.containerservice.models.VirtualMachinesProfile + :keyword virtual_machine_nodes_status: The status of nodes in a VirtualMachines agent pool. + :paramtype virtual_machine_nodes_status: + list[~azure.mgmt.containerservice.models.VirtualMachineNodes] + :keyword status: Contains read-only information about the Agent Pool. + :paramtype status: ~azure.mgmt.containerservice.models.AgentPoolStatus + :keyword local_dns_profile: Configures the per-node local DNS, with VnetDNS and KubeDNS + overrides. LocalDNS helps improve performance and reliability of DNS resolution in an AKS + cluster. For more details see aka.ms/aks/localdns. + :paramtype local_dns_profile: ~azure.mgmt.containerservice.models.LocalDNSProfile + """ + super().__init__(**kwargs) + self.e_tag: Optional[str] = None + self.count = count + self.vm_size = vm_size + self.os_disk_size_gb = os_disk_size_gb + self.os_disk_type = os_disk_type + self.kubelet_disk_type = kubelet_disk_type + self.workload_runtime = workload_runtime + self.message_of_the_day = message_of_the_day + self.vnet_subnet_id = vnet_subnet_id + self.pod_subnet_id = pod_subnet_id + self.pod_ip_allocation_mode = pod_ip_allocation_mode + self.max_pods = max_pods + self.os_type = os_type + self.os_sku = os_sku + self.max_count = max_count + self.min_count = min_count + self.enable_auto_scaling = enable_auto_scaling + self.scale_down_mode = scale_down_mode + self.type_properties_type = type_properties_type + self.mode = mode + self.orchestrator_version = orchestrator_version + self.current_orchestrator_version: Optional[str] = None + self.node_image_version: Optional[str] = None + self.upgrade_settings = upgrade_settings + self.provisioning_state: Optional[str] = None + self.power_state = power_state + self.availability_zones = availability_zones + self.enable_node_public_ip = enable_node_public_ip + self.node_public_ip_prefix_id = node_public_ip_prefix_id + self.scale_set_priority = scale_set_priority + self.scale_set_eviction_policy = scale_set_eviction_policy + self.spot_max_price = spot_max_price + self.tags = tags + self.node_labels = node_labels + self.node_taints = node_taints + self.proximity_placement_group_id = proximity_placement_group_id + self.kubelet_config = kubelet_config + self.linux_os_config = linux_os_config + self.enable_encryption_at_host = enable_encryption_at_host + self.enable_ultra_ssd = enable_ultra_ssd + self.enable_fips = enable_fips + self.gpu_instance_profile = gpu_instance_profile + self.creation_data = creation_data + self.capacity_reservation_group_id = capacity_reservation_group_id + self.host_group_id = host_group_id + self.network_profile = network_profile + self.windows_profile = windows_profile + self.security_profile = security_profile + self.gpu_profile = gpu_profile + self.gateway_profile = gateway_profile + self.virtual_machines_profile = virtual_machines_profile + self.virtual_machine_nodes_status = virtual_machine_nodes_status + self.status = status + self.local_dns_profile = local_dns_profile + + +class AgentPoolAvailableVersions(_serialization.Model): + """The list of available versions for an agent pool. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The ID of the agent pool version list. + :vartype id: str + :ivar name: The name of the agent pool version list. + :vartype name: str + :ivar type: Type of the agent pool version list. + :vartype type: str + :ivar agent_pool_versions: List of versions available for agent pool. + :vartype agent_pool_versions: + list[~azure.mgmt.containerservice.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem] + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "agent_pool_versions": { + "key": "properties.agentPoolVersions", + "type": "[AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem]", + }, + } + + def __init__( + self, + *, + agent_pool_versions: Optional[list["_models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword agent_pool_versions: List of versions available for agent pool. + :paramtype agent_pool_versions: + list[~azure.mgmt.containerservice.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem] + """ + super().__init__(**kwargs) + self.id: Optional[str] = None + self.name: Optional[str] = None + self.type: Optional[str] = None + self.agent_pool_versions = agent_pool_versions + + +class AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem(_serialization.Model): # pylint: disable=name-too-long + """AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem. + + :ivar default: Whether this version is the default agent pool version. + :vartype default: bool + :ivar kubernetes_version: The Kubernetes version (major.minor.patch). + :vartype kubernetes_version: str + :ivar is_preview: Whether Kubernetes version is currently in preview. + :vartype is_preview: bool + """ + + _attribute_map = { + "default": {"key": "default", "type": "bool"}, + "kubernetes_version": {"key": "kubernetesVersion", "type": "str"}, + "is_preview": {"key": "isPreview", "type": "bool"}, + } + + def __init__( + self, + *, + default: Optional[bool] = None, + kubernetes_version: Optional[str] = None, + is_preview: Optional[bool] = None, + **kwargs: Any + ) -> None: + """ + :keyword default: Whether this version is the default agent pool version. + :paramtype default: bool + :keyword kubernetes_version: The Kubernetes version (major.minor.patch). + :paramtype kubernetes_version: str + :keyword is_preview: Whether Kubernetes version is currently in preview. + :paramtype is_preview: bool + """ + super().__init__(**kwargs) + self.default = default + self.kubernetes_version = kubernetes_version + self.is_preview = is_preview + + +class AgentPoolDeleteMachinesParameter(_serialization.Model): + """Specifies a list of machine names from the agent pool to be deleted. + + All required parameters must be populated in order to send to server. + + :ivar machine_names: The agent pool machine names. Required. + :vartype machine_names: list[str] + """ + + _validation = { + "machine_names": {"required": True}, + } + + _attribute_map = { + "machine_names": {"key": "machineNames", "type": "[str]"}, + } + + def __init__(self, *, machine_names: list[str], **kwargs: Any) -> None: + """ + :keyword machine_names: The agent pool machine names. Required. + :paramtype machine_names: list[str] + """ + super().__init__(**kwargs) + self.machine_names = machine_names + + +class AgentPoolGatewayProfile(_serialization.Model): + """Profile of the managed cluster gateway agent pool. + + :ivar public_ip_prefix_size: The Gateway agent pool associates one public IPPrefix for each + static egress gateway to provide public egress. The size of Public IPPrefix should be selected + by the user. Each node in the agent pool is assigned with one IP from the IPPrefix. The + IPPrefix size thus serves as a cap on the size of the Gateway agent pool. Due to Azure public + IPPrefix size limitation, the valid value range is [28, 31] (/31 = 2 nodes/IPs, /30 = 4 + nodes/IPs, /29 = 8 nodes/IPs, /28 = 16 nodes/IPs). The default value is 31. + :vartype public_ip_prefix_size: int + """ + + _validation = { + "public_ip_prefix_size": {"maximum": 31, "minimum": 28}, + } + + _attribute_map = { + "public_ip_prefix_size": {"key": "publicIPPrefixSize", "type": "int"}, + } + + def __init__(self, *, public_ip_prefix_size: int = 31, **kwargs: Any) -> None: + """ + :keyword public_ip_prefix_size: The Gateway agent pool associates one public IPPrefix for each + static egress gateway to provide public egress. The size of Public IPPrefix should be selected + by the user. Each node in the agent pool is assigned with one IP from the IPPrefix. The + IPPrefix size thus serves as a cap on the size of the Gateway agent pool. Due to Azure public + IPPrefix size limitation, the valid value range is [28, 31] (/31 = 2 nodes/IPs, /30 = 4 + nodes/IPs, /29 = 8 nodes/IPs, /28 = 16 nodes/IPs). The default value is 31. + :paramtype public_ip_prefix_size: int + """ + super().__init__(**kwargs) + self.public_ip_prefix_size = public_ip_prefix_size + + +class AgentPoolListResult(_serialization.Model): + """The response from the List Agent Pools operation. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: The list of agent pools. + :vartype value: list[~azure.mgmt.containerservice.models.AgentPool] + :ivar next_link: The URL to get the next set of agent pool results. + :vartype next_link: str + """ + + _validation = { + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[AgentPool]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, *, value: Optional[list["_models.AgentPool"]] = None, **kwargs: Any) -> None: + """ + :keyword value: The list of agent pools. + :paramtype value: list[~azure.mgmt.containerservice.models.AgentPool] + """ + super().__init__(**kwargs) + self.value = value + self.next_link: Optional[str] = None + + +class AgentPoolNetworkProfile(_serialization.Model): + """Network settings of an agent pool. + + :ivar node_public_ip_tags: IPTags of instance-level public IPs. + :vartype node_public_ip_tags: list[~azure.mgmt.containerservice.models.IPTag] + :ivar allowed_host_ports: The port ranges that are allowed to access. The specified ranges are + allowed to overlap. + :vartype allowed_host_ports: list[~azure.mgmt.containerservice.models.PortRange] + :ivar application_security_groups: The IDs of the application security groups which agent pool + will associate when created. + :vartype application_security_groups: list[str] + """ + + _attribute_map = { + "node_public_ip_tags": {"key": "nodePublicIPTags", "type": "[IPTag]"}, + "allowed_host_ports": {"key": "allowedHostPorts", "type": "[PortRange]"}, + "application_security_groups": {"key": "applicationSecurityGroups", "type": "[str]"}, + } + + def __init__( + self, + *, + node_public_ip_tags: Optional[list["_models.IPTag"]] = None, + allowed_host_ports: Optional[list["_models.PortRange"]] = None, + application_security_groups: Optional[list[str]] = None, + **kwargs: Any + ) -> None: + """ + :keyword node_public_ip_tags: IPTags of instance-level public IPs. + :paramtype node_public_ip_tags: list[~azure.mgmt.containerservice.models.IPTag] + :keyword allowed_host_ports: The port ranges that are allowed to access. The specified ranges + are allowed to overlap. + :paramtype allowed_host_ports: list[~azure.mgmt.containerservice.models.PortRange] + :keyword application_security_groups: The IDs of the application security groups which agent + pool will associate when created. + :paramtype application_security_groups: list[str] + """ + super().__init__(**kwargs) + self.node_public_ip_tags = node_public_ip_tags + self.allowed_host_ports = allowed_host_ports + self.application_security_groups = application_security_groups + + +class AgentPoolSecurityProfile(_serialization.Model): + """The security settings of an agent pool. + + :ivar enable_vtpm: vTPM is a Trusted Launch feature for configuring a dedicated secure vault + for keys and measurements held locally on the node. For more details, see + aka.ms/aks/trustedlaunch. If not specified, the default is false. + :vartype enable_vtpm: bool + :ivar enable_secure_boot: Secure Boot is a feature of Trusted Launch which ensures that only + signed operating systems and drivers can boot. For more details, see aka.ms/aks/trustedlaunch. + If not specified, the default is false. + :vartype enable_secure_boot: bool + :ivar ssh_access: SSH access method of an agent pool. Known values are: "LocalUser" and + "Disabled". + :vartype ssh_access: str or ~azure.mgmt.containerservice.models.AgentPoolSSHAccess + """ + + _attribute_map = { + "enable_vtpm": {"key": "enableVTPM", "type": "bool"}, + "enable_secure_boot": {"key": "enableSecureBoot", "type": "bool"}, + "ssh_access": {"key": "sshAccess", "type": "str"}, + } + + def __init__( + self, + *, + enable_vtpm: Optional[bool] = None, + enable_secure_boot: Optional[bool] = None, + ssh_access: Optional[Union[str, "_models.AgentPoolSSHAccess"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword enable_vtpm: vTPM is a Trusted Launch feature for configuring a dedicated secure vault + for keys and measurements held locally on the node. For more details, see + aka.ms/aks/trustedlaunch. If not specified, the default is false. + :paramtype enable_vtpm: bool + :keyword enable_secure_boot: Secure Boot is a feature of Trusted Launch which ensures that only + signed operating systems and drivers can boot. For more details, see aka.ms/aks/trustedlaunch. + If not specified, the default is false. + :paramtype enable_secure_boot: bool + :keyword ssh_access: SSH access method of an agent pool. Known values are: "LocalUser" and + "Disabled". + :paramtype ssh_access: str or ~azure.mgmt.containerservice.models.AgentPoolSSHAccess + """ + super().__init__(**kwargs) + self.enable_vtpm = enable_vtpm + self.enable_secure_boot = enable_secure_boot + self.ssh_access = ssh_access + + +class AgentPoolStatus(_serialization.Model): + """Contains read-only information about the Agent Pool. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar provisioning_error: The error detail information of the agent pool. Preserves the + detailed info of failure. If there was no error, this field is omitted. + :vartype provisioning_error: ~azure.mgmt.containerservice.models.ErrorDetail + """ + + _validation = { + "provisioning_error": {"readonly": True}, + } + + _attribute_map = { + "provisioning_error": {"key": "provisioningError", "type": "ErrorDetail"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.provisioning_error: Optional["_models.ErrorDetail"] = None + + +class AgentPoolUpgradeProfile(_serialization.Model): + """The list of available upgrades for an agent pool. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar id: The ID of the agent pool upgrade profile. + :vartype id: str + :ivar name: The name of the agent pool upgrade profile. + :vartype name: str + :ivar type: The type of the agent pool upgrade profile. + :vartype type: str + :ivar kubernetes_version: The Kubernetes version (major.minor.patch). Required. + :vartype kubernetes_version: str + :ivar os_type: The operating system type. The default is Linux. Known values are: "Linux" and + "Windows". + :vartype os_type: str or ~azure.mgmt.containerservice.models.OSType + :ivar upgrades: List of orchestrator types and versions available for upgrade. + :vartype upgrades: + list[~azure.mgmt.containerservice.models.AgentPoolUpgradeProfilePropertiesUpgradesItem] + :ivar latest_node_image_version: The latest AKS supported node image version. + :vartype latest_node_image_version: str + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "kubernetes_version": {"required": True}, + "os_type": {"required": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "kubernetes_version": {"key": "properties.kubernetesVersion", "type": "str"}, + "os_type": {"key": "properties.osType", "type": "str"}, + "upgrades": {"key": "properties.upgrades", "type": "[AgentPoolUpgradeProfilePropertiesUpgradesItem]"}, + "latest_node_image_version": {"key": "properties.latestNodeImageVersion", "type": "str"}, + } + + def __init__( + self, + *, + kubernetes_version: str, + os_type: Union[str, "_models.OSType"] = "Linux", + upgrades: Optional[list["_models.AgentPoolUpgradeProfilePropertiesUpgradesItem"]] = None, + latest_node_image_version: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword kubernetes_version: The Kubernetes version (major.minor.patch). Required. + :paramtype kubernetes_version: str + :keyword os_type: The operating system type. The default is Linux. Known values are: "Linux" + and "Windows". + :paramtype os_type: str or ~azure.mgmt.containerservice.models.OSType + :keyword upgrades: List of orchestrator types and versions available for upgrade. + :paramtype upgrades: + list[~azure.mgmt.containerservice.models.AgentPoolUpgradeProfilePropertiesUpgradesItem] + :keyword latest_node_image_version: The latest AKS supported node image version. + :paramtype latest_node_image_version: str + """ + super().__init__(**kwargs) + self.id: Optional[str] = None + self.name: Optional[str] = None + self.type: Optional[str] = None + self.kubernetes_version = kubernetes_version + self.os_type = os_type + self.upgrades = upgrades + self.latest_node_image_version = latest_node_image_version + + +class AgentPoolUpgradeProfilePropertiesUpgradesItem(_serialization.Model): # pylint: disable=name-too-long + """AgentPoolUpgradeProfilePropertiesUpgradesItem. + + :ivar kubernetes_version: The Kubernetes version (major.minor.patch). + :vartype kubernetes_version: str + :ivar is_preview: Whether the Kubernetes version is currently in preview. + :vartype is_preview: bool + """ + + _attribute_map = { + "kubernetes_version": {"key": "kubernetesVersion", "type": "str"}, + "is_preview": {"key": "isPreview", "type": "bool"}, + } + + def __init__( + self, *, kubernetes_version: Optional[str] = None, is_preview: Optional[bool] = None, **kwargs: Any + ) -> None: + """ + :keyword kubernetes_version: The Kubernetes version (major.minor.patch). + :paramtype kubernetes_version: str + :keyword is_preview: Whether the Kubernetes version is currently in preview. + :paramtype is_preview: bool + """ + super().__init__(**kwargs) + self.kubernetes_version = kubernetes_version + self.is_preview = is_preview + + +class AgentPoolUpgradeSettings(_serialization.Model): + """Settings for upgrading an agentpool. + + :ivar max_surge: The maximum number or percentage of nodes that are surged during upgrade. This + can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is + specified, it is the percentage of the total agent pool size at the time of the upgrade. For + percentages, fractional nodes are rounded up. If not specified, the default is 10%. For more + information, including best practices, see: + https://learn.microsoft.com/en-us/azure/aks/upgrade-cluster. + :vartype max_surge: str + :ivar max_unavailable: The maximum number or percentage of nodes that can be simultaneously + unavailable during upgrade. This can either be set to an integer (e.g. '1') or a percentage + (e.g. '5%'). If a percentage is specified, it is the percentage of the total agent pool size at + the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, + the default is 0. For more information, including best practices, see: + https://learn.microsoft.com/en-us/azure/aks/upgrade-cluster. + :vartype max_unavailable: str + :ivar drain_timeout_in_minutes: The drain timeout for a node. The amount of time (in minutes) + to wait on eviction of pods and graceful termination per node. This eviction wait time honors + waiting on pod disruption budgets. If this time is exceeded, the upgrade fails. If not + specified, the default is 30 minutes. + :vartype drain_timeout_in_minutes: int + :ivar node_soak_duration_in_minutes: The soak duration for a node. The amount of time (in + minutes) to wait after draining a node and before reimaging it and moving on to next node. If + not specified, the default is 0 minutes. + :vartype node_soak_duration_in_minutes: int + :ivar undrainable_node_behavior: Defines the behavior for undrainable nodes during upgrade. The + most common cause of undrainable nodes is Pod Disruption Budgets (PDBs), but other issues, such + as pod termination grace period is exceeding the remaining per-node drain timeout or pod is + still being in a running state, can also cause undrainable nodes. Known values are: "Cordon" + and "Schedule". + :vartype undrainable_node_behavior: str or + ~azure.mgmt.containerservice.models.UndrainableNodeBehavior + """ + + _validation = { + "drain_timeout_in_minutes": {"maximum": 1440, "minimum": 1}, + "node_soak_duration_in_minutes": {"maximum": 30, "minimum": 0}, + } + + _attribute_map = { + "max_surge": {"key": "maxSurge", "type": "str"}, + "max_unavailable": {"key": "maxUnavailable", "type": "str"}, + "drain_timeout_in_minutes": {"key": "drainTimeoutInMinutes", "type": "int"}, + "node_soak_duration_in_minutes": {"key": "nodeSoakDurationInMinutes", "type": "int"}, + "undrainable_node_behavior": {"key": "undrainableNodeBehavior", "type": "str"}, + } + + def __init__( + self, + *, + max_surge: Optional[str] = None, + max_unavailable: Optional[str] = None, + drain_timeout_in_minutes: Optional[int] = None, + node_soak_duration_in_minutes: Optional[int] = None, + undrainable_node_behavior: Optional[Union[str, "_models.UndrainableNodeBehavior"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword max_surge: The maximum number or percentage of nodes that are surged during upgrade. + This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage + is specified, it is the percentage of the total agent pool size at the time of the upgrade. For + percentages, fractional nodes are rounded up. If not specified, the default is 10%. For more + information, including best practices, see: + https://learn.microsoft.com/en-us/azure/aks/upgrade-cluster. + :paramtype max_surge: str + :keyword max_unavailable: The maximum number or percentage of nodes that can be simultaneously + unavailable during upgrade. This can either be set to an integer (e.g. '1') or a percentage + (e.g. '5%'). If a percentage is specified, it is the percentage of the total agent pool size at + the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, + the default is 0. For more information, including best practices, see: + https://learn.microsoft.com/en-us/azure/aks/upgrade-cluster. + :paramtype max_unavailable: str + :keyword drain_timeout_in_minutes: The drain timeout for a node. The amount of time (in + minutes) to wait on eviction of pods and graceful termination per node. This eviction wait time + honors waiting on pod disruption budgets. If this time is exceeded, the upgrade fails. If not + specified, the default is 30 minutes. + :paramtype drain_timeout_in_minutes: int + :keyword node_soak_duration_in_minutes: The soak duration for a node. The amount of time (in + minutes) to wait after draining a node and before reimaging it and moving on to next node. If + not specified, the default is 0 minutes. + :paramtype node_soak_duration_in_minutes: int + :keyword undrainable_node_behavior: Defines the behavior for undrainable nodes during upgrade. + The most common cause of undrainable nodes is Pod Disruption Budgets (PDBs), but other issues, + such as pod termination grace period is exceeding the remaining per-node drain timeout or pod + is still being in a running state, can also cause undrainable nodes. Known values are: "Cordon" + and "Schedule". + :paramtype undrainable_node_behavior: str or + ~azure.mgmt.containerservice.models.UndrainableNodeBehavior + """ + super().__init__(**kwargs) + self.max_surge = max_surge + self.max_unavailable = max_unavailable + self.drain_timeout_in_minutes = drain_timeout_in_minutes + self.node_soak_duration_in_minutes = node_soak_duration_in_minutes + self.undrainable_node_behavior = undrainable_node_behavior + + +class AgentPoolWindowsProfile(_serialization.Model): + """The Windows agent pool's specific profile. + + :ivar disable_outbound_nat: Whether to disable OutboundNAT in windows nodes. The default value + is false. Outbound NAT can only be disabled if the cluster outboundType is NAT Gateway and the + Windows agent pool does not have node public IP enabled. + :vartype disable_outbound_nat: bool + """ + + _attribute_map = { + "disable_outbound_nat": {"key": "disableOutboundNat", "type": "bool"}, + } + + def __init__(self, *, disable_outbound_nat: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword disable_outbound_nat: Whether to disable OutboundNAT in windows nodes. The default + value is false. Outbound NAT can only be disabled if the cluster outboundType is NAT Gateway + and the Windows agent pool does not have node public IP enabled. + :paramtype disable_outbound_nat: bool + """ + super().__init__(**kwargs) + self.disable_outbound_nat = disable_outbound_nat + + +class AzureKeyVaultKms(_serialization.Model): + """Azure Key Vault key management service settings for the security profile. + + :ivar enabled: Whether to enable Azure Key Vault key management service. The default is false. + :vartype enabled: bool + :ivar key_id: Identifier of Azure Key Vault key. See `key identifier format + `_ + for more details. When Azure Key Vault key management service is enabled, this field is + required and must be a valid key identifier. When Azure Key Vault key management service is + disabled, leave the field empty. + :vartype key_id: str + :ivar key_vault_network_access: Network access of the key vault. Network access of key vault. + The possible values are ``Public`` and ``Private``. ``Public`` means the key vault allows + public access from all networks. ``Private`` means the key vault disables public access and + enables private link. The default value is ``Public``. Known values are: "Public" and + "Private". + :vartype key_vault_network_access: str or + ~azure.mgmt.containerservice.models.KeyVaultNetworkAccessTypes + :ivar key_vault_resource_id: Resource ID of key vault. When keyVaultNetworkAccess is + ``Private``\\ , this field is required and must be a valid resource ID. When + keyVaultNetworkAccess is ``Public``\\ , leave the field empty. + :vartype key_vault_resource_id: str + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + "key_id": {"key": "keyId", "type": "str"}, + "key_vault_network_access": {"key": "keyVaultNetworkAccess", "type": "str"}, + "key_vault_resource_id": {"key": "keyVaultResourceId", "type": "str"}, + } + + def __init__( + self, + *, + enabled: Optional[bool] = None, + key_id: Optional[str] = None, + key_vault_network_access: Union[str, "_models.KeyVaultNetworkAccessTypes"] = "Public", + key_vault_resource_id: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword enabled: Whether to enable Azure Key Vault key management service. The default is + false. + :paramtype enabled: bool + :keyword key_id: Identifier of Azure Key Vault key. See `key identifier format + `_ + for more details. When Azure Key Vault key management service is enabled, this field is + required and must be a valid key identifier. When Azure Key Vault key management service is + disabled, leave the field empty. + :paramtype key_id: str + :keyword key_vault_network_access: Network access of the key vault. Network access of key + vault. The possible values are ``Public`` and ``Private``. ``Public`` means the key vault + allows public access from all networks. ``Private`` means the key vault disables public access + and enables private link. The default value is ``Public``. Known values are: "Public" and + "Private". + :paramtype key_vault_network_access: str or + ~azure.mgmt.containerservice.models.KeyVaultNetworkAccessTypes + :keyword key_vault_resource_id: Resource ID of key vault. When keyVaultNetworkAccess is + ``Private``\\ , this field is required and must be a valid resource ID. When + keyVaultNetworkAccess is ``Public``\\ , leave the field empty. + :paramtype key_vault_resource_id: str + """ + super().__init__(**kwargs) + self.enabled = enabled + self.key_id = key_id + self.key_vault_network_access = key_vault_network_access + self.key_vault_resource_id = key_vault_resource_id + + +class ClusterUpgradeSettings(_serialization.Model): + """Settings for upgrading a cluster. + + :ivar override_settings: Settings for overrides. + :vartype override_settings: ~azure.mgmt.containerservice.models.UpgradeOverrideSettings + """ + + _attribute_map = { + "override_settings": {"key": "overrideSettings", "type": "UpgradeOverrideSettings"}, + } + + def __init__(self, *, override_settings: Optional["_models.UpgradeOverrideSettings"] = None, **kwargs: Any) -> None: + """ + :keyword override_settings: Settings for overrides. + :paramtype override_settings: ~azure.mgmt.containerservice.models.UpgradeOverrideSettings + """ + super().__init__(**kwargs) + self.override_settings = override_settings + + +class CompatibleVersions(_serialization.Model): + """Version information about a product/service that is compatible with a service mesh revision. + + :ivar name: The product/service name. + :vartype name: str + :ivar versions: Product/service versions compatible with a service mesh add-on revision. + :vartype versions: list[str] + """ + + _attribute_map = { + "name": {"key": "name", "type": "str"}, + "versions": {"key": "versions", "type": "[str]"}, + } + + def __init__(self, *, name: Optional[str] = None, versions: Optional[list[str]] = None, **kwargs: Any) -> None: + """ + :keyword name: The product/service name. + :paramtype name: str + :keyword versions: Product/service versions compatible with a service mesh add-on revision. + :paramtype versions: list[str] + """ + super().__init__(**kwargs) + self.name = name + self.versions = versions + + +class ContainerServiceLinuxProfile(_serialization.Model): + """Profile for Linux VMs in the container service cluster. + + All required parameters must be populated in order to send to server. + + :ivar admin_username: The administrator username to use for Linux VMs. Required. + :vartype admin_username: str + :ivar ssh: The SSH configuration for Linux-based VMs running on Azure. Required. + :vartype ssh: ~azure.mgmt.containerservice.models.ContainerServiceSshConfiguration + """ + + _validation = { + "admin_username": {"required": True, "pattern": r"^[A-Za-z][-A-Za-z0-9_]*$"}, + "ssh": {"required": True}, + } + + _attribute_map = { + "admin_username": {"key": "adminUsername", "type": "str"}, + "ssh": {"key": "ssh", "type": "ContainerServiceSshConfiguration"}, + } + + def __init__(self, *, admin_username: str, ssh: "_models.ContainerServiceSshConfiguration", **kwargs: Any) -> None: + """ + :keyword admin_username: The administrator username to use for Linux VMs. Required. + :paramtype admin_username: str + :keyword ssh: The SSH configuration for Linux-based VMs running on Azure. Required. + :paramtype ssh: ~azure.mgmt.containerservice.models.ContainerServiceSshConfiguration + """ + super().__init__(**kwargs) + self.admin_username = admin_username + self.ssh = ssh + + +class ContainerServiceNetworkProfile(_serialization.Model): + """Profile of network configuration. + + :ivar network_plugin: Network plugin used for building the Kubernetes network. Known values + are: "azure", "kubenet", and "none". + :vartype network_plugin: str or ~azure.mgmt.containerservice.models.NetworkPlugin + :ivar network_plugin_mode: The mode the network plugin should use. "overlay" + :vartype network_plugin_mode: str or ~azure.mgmt.containerservice.models.NetworkPluginMode + :ivar network_policy: Network policy used for building the Kubernetes network. Known values + are: "none", "calico", "azure", and "cilium". + :vartype network_policy: str or ~azure.mgmt.containerservice.models.NetworkPolicy + :ivar network_mode: The network mode Azure CNI is configured with. This cannot be specified if + networkPlugin is anything other than 'azure'. Known values are: "transparent" and "bridge". + :vartype network_mode: str or ~azure.mgmt.containerservice.models.NetworkMode + :ivar network_dataplane: Network dataplane used in the Kubernetes cluster. Known values are: + "azure" and "cilium". + :vartype network_dataplane: str or ~azure.mgmt.containerservice.models.NetworkDataplane + :ivar advanced_networking: Advanced Networking profile for enabling observability and security + feature suite on a cluster. For more information see aka.ms/aksadvancednetworking. + :vartype advanced_networking: ~azure.mgmt.containerservice.models.AdvancedNetworking + :ivar pod_cidr: A CIDR notation IP range from which to assign pod IPs when kubenet is used. + :vartype pod_cidr: str + :ivar service_cidr: A CIDR notation IP range from which to assign service cluster IPs. It must + not overlap with any Subnet IP ranges. + :vartype service_cidr: str + :ivar dns_service_ip: An IP address assigned to the Kubernetes DNS service. It must be within + the Kubernetes service address range specified in serviceCidr. + :vartype dns_service_ip: str + :ivar outbound_type: The outbound (egress) routing method. This can only be set at cluster + creation time and cannot be changed later. For more information see `egress outbound type + `_. Known values are: "loadBalancer", + "userDefinedRouting", "managedNATGateway", "userAssignedNATGateway", and "none". + :vartype outbound_type: str or ~azure.mgmt.containerservice.models.OutboundType + :ivar load_balancer_sku: The load balancer sku for the managed cluster. The default is + 'standard'. See `Azure Load Balancer SKUs + `_ for more information about the + differences between load balancer SKUs. Known values are: "standard" and "basic". + :vartype load_balancer_sku: str or ~azure.mgmt.containerservice.models.LoadBalancerSku + :ivar load_balancer_profile: Profile of the cluster load balancer. + :vartype load_balancer_profile: + ~azure.mgmt.containerservice.models.ManagedClusterLoadBalancerProfile + :ivar nat_gateway_profile: Profile of the cluster NAT gateway. + :vartype nat_gateway_profile: + ~azure.mgmt.containerservice.models.ManagedClusterNATGatewayProfile + :ivar static_egress_gateway_profile: The profile for Static Egress Gateway addon. For more + details about Static Egress Gateway, see https://aka.ms/aks/static-egress-gateway. + :vartype static_egress_gateway_profile: + ~azure.mgmt.containerservice.models.ManagedClusterStaticEgressGatewayProfile + :ivar pod_cidrs: The CIDR notation IP ranges from which to assign pod IPs. One IPv4 CIDR is + expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is + expected for dual-stack networking. + :vartype pod_cidrs: list[str] + :ivar service_cidrs: The CIDR notation IP ranges from which to assign service cluster IPs. One + IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for each IP family + (IPv4/IPv6), is expected for dual-stack networking. They must not overlap with any Subnet IP + ranges. + :vartype service_cidrs: list[str] + :ivar ip_families: The IP families used to specify IP versions available to the cluster. IP + families are used to determine single-stack or dual-stack clusters. For single-stack, the + expected value is IPv4. For dual-stack, the expected values are IPv4 and IPv6. + :vartype ip_families: list[str or ~azure.mgmt.containerservice.models.IpFamily] + """ + + _validation = { + "pod_cidr": {"pattern": r"^([0-9]{1,3}\.){3}[0-9]{1,3}(\/([0-9]|[1-2][0-9]|3[0-2]))?$"}, + "service_cidr": {"pattern": r"^([0-9]{1,3}\.){3}[0-9]{1,3}(\/([0-9]|[1-2][0-9]|3[0-2]))?$"}, + "dns_service_ip": { + "pattern": r"^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$" + }, + } + + _attribute_map = { + "network_plugin": {"key": "networkPlugin", "type": "str"}, + "network_plugin_mode": {"key": "networkPluginMode", "type": "str"}, + "network_policy": {"key": "networkPolicy", "type": "str"}, + "network_mode": {"key": "networkMode", "type": "str"}, + "network_dataplane": {"key": "networkDataplane", "type": "str"}, + "advanced_networking": {"key": "advancedNetworking", "type": "AdvancedNetworking"}, + "pod_cidr": {"key": "podCidr", "type": "str"}, + "service_cidr": {"key": "serviceCidr", "type": "str"}, + "dns_service_ip": {"key": "dnsServiceIP", "type": "str"}, + "outbound_type": {"key": "outboundType", "type": "str"}, + "load_balancer_sku": {"key": "loadBalancerSku", "type": "str"}, + "load_balancer_profile": {"key": "loadBalancerProfile", "type": "ManagedClusterLoadBalancerProfile"}, + "nat_gateway_profile": {"key": "natGatewayProfile", "type": "ManagedClusterNATGatewayProfile"}, + "static_egress_gateway_profile": { + "key": "staticEgressGatewayProfile", + "type": "ManagedClusterStaticEgressGatewayProfile", + }, + "pod_cidrs": {"key": "podCidrs", "type": "[str]"}, + "service_cidrs": {"key": "serviceCidrs", "type": "[str]"}, + "ip_families": {"key": "ipFamilies", "type": "[str]"}, + } + + def __init__( + self, + *, + network_plugin: Optional[Union[str, "_models.NetworkPlugin"]] = None, + network_plugin_mode: Optional[Union[str, "_models.NetworkPluginMode"]] = None, + network_policy: Optional[Union[str, "_models.NetworkPolicy"]] = None, + network_mode: Optional[Union[str, "_models.NetworkMode"]] = None, + network_dataplane: Optional[Union[str, "_models.NetworkDataplane"]] = None, + advanced_networking: Optional["_models.AdvancedNetworking"] = None, + pod_cidr: str = "10.244.0.0/16", + service_cidr: str = "10.0.0.0/16", + dns_service_ip: str = "10.0.0.10", + outbound_type: Union[str, "_models.OutboundType"] = "loadBalancer", + load_balancer_sku: Optional[Union[str, "_models.LoadBalancerSku"]] = None, + load_balancer_profile: Optional["_models.ManagedClusterLoadBalancerProfile"] = None, + nat_gateway_profile: Optional["_models.ManagedClusterNATGatewayProfile"] = None, + static_egress_gateway_profile: Optional["_models.ManagedClusterStaticEgressGatewayProfile"] = None, + pod_cidrs: Optional[list[str]] = None, + service_cidrs: Optional[list[str]] = None, + ip_families: Optional[list[Union[str, "_models.IpFamily"]]] = None, + **kwargs: Any + ) -> None: + """ + :keyword network_plugin: Network plugin used for building the Kubernetes network. Known values + are: "azure", "kubenet", and "none". + :paramtype network_plugin: str or ~azure.mgmt.containerservice.models.NetworkPlugin + :keyword network_plugin_mode: The mode the network plugin should use. "overlay" + :paramtype network_plugin_mode: str or ~azure.mgmt.containerservice.models.NetworkPluginMode + :keyword network_policy: Network policy used for building the Kubernetes network. Known values + are: "none", "calico", "azure", and "cilium". + :paramtype network_policy: str or ~azure.mgmt.containerservice.models.NetworkPolicy + :keyword network_mode: The network mode Azure CNI is configured with. This cannot be specified + if networkPlugin is anything other than 'azure'. Known values are: "transparent" and "bridge". + :paramtype network_mode: str or ~azure.mgmt.containerservice.models.NetworkMode + :keyword network_dataplane: Network dataplane used in the Kubernetes cluster. Known values are: + "azure" and "cilium". + :paramtype network_dataplane: str or ~azure.mgmt.containerservice.models.NetworkDataplane + :keyword advanced_networking: Advanced Networking profile for enabling observability and + security feature suite on a cluster. For more information see aka.ms/aksadvancednetworking. + :paramtype advanced_networking: ~azure.mgmt.containerservice.models.AdvancedNetworking + :keyword pod_cidr: A CIDR notation IP range from which to assign pod IPs when kubenet is used. + :paramtype pod_cidr: str + :keyword service_cidr: A CIDR notation IP range from which to assign service cluster IPs. It + must not overlap with any Subnet IP ranges. + :paramtype service_cidr: str + :keyword dns_service_ip: An IP address assigned to the Kubernetes DNS service. It must be + within the Kubernetes service address range specified in serviceCidr. + :paramtype dns_service_ip: str + :keyword outbound_type: The outbound (egress) routing method. This can only be set at cluster + creation time and cannot be changed later. For more information see `egress outbound type + `_. Known values are: "loadBalancer", + "userDefinedRouting", "managedNATGateway", "userAssignedNATGateway", and "none". + :paramtype outbound_type: str or ~azure.mgmt.containerservice.models.OutboundType + :keyword load_balancer_sku: The load balancer sku for the managed cluster. The default is + 'standard'. See `Azure Load Balancer SKUs + `_ for more information about the + differences between load balancer SKUs. Known values are: "standard" and "basic". + :paramtype load_balancer_sku: str or ~azure.mgmt.containerservice.models.LoadBalancerSku + :keyword load_balancer_profile: Profile of the cluster load balancer. + :paramtype load_balancer_profile: + ~azure.mgmt.containerservice.models.ManagedClusterLoadBalancerProfile + :keyword nat_gateway_profile: Profile of the cluster NAT gateway. + :paramtype nat_gateway_profile: + ~azure.mgmt.containerservice.models.ManagedClusterNATGatewayProfile + :keyword static_egress_gateway_profile: The profile for Static Egress Gateway addon. For more + details about Static Egress Gateway, see https://aka.ms/aks/static-egress-gateway. + :paramtype static_egress_gateway_profile: + ~azure.mgmt.containerservice.models.ManagedClusterStaticEgressGatewayProfile + :keyword pod_cidrs: The CIDR notation IP ranges from which to assign pod IPs. One IPv4 CIDR is + expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is + expected for dual-stack networking. + :paramtype pod_cidrs: list[str] + :keyword service_cidrs: The CIDR notation IP ranges from which to assign service cluster IPs. + One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for each IP family + (IPv4/IPv6), is expected for dual-stack networking. They must not overlap with any Subnet IP + ranges. + :paramtype service_cidrs: list[str] + :keyword ip_families: The IP families used to specify IP versions available to the cluster. IP + families are used to determine single-stack or dual-stack clusters. For single-stack, the + expected value is IPv4. For dual-stack, the expected values are IPv4 and IPv6. + :paramtype ip_families: list[str or ~azure.mgmt.containerservice.models.IpFamily] + """ + super().__init__(**kwargs) + self.network_plugin = network_plugin + self.network_plugin_mode = network_plugin_mode + self.network_policy = network_policy + self.network_mode = network_mode + self.network_dataplane = network_dataplane + self.advanced_networking = advanced_networking + self.pod_cidr = pod_cidr + self.service_cidr = service_cidr + self.dns_service_ip = dns_service_ip + self.outbound_type = outbound_type + self.load_balancer_sku = load_balancer_sku + self.load_balancer_profile = load_balancer_profile + self.nat_gateway_profile = nat_gateway_profile + self.static_egress_gateway_profile = static_egress_gateway_profile + self.pod_cidrs = pod_cidrs + self.service_cidrs = service_cidrs + self.ip_families = ip_families + + +class ContainerServiceSshConfiguration(_serialization.Model): + """SSH configuration for Linux-based VMs running on Azure. + + All required parameters must be populated in order to send to server. + + :ivar public_keys: The list of SSH public keys used to authenticate with Linux-based VMs. A + maximum of 1 key may be specified. Required. + :vartype public_keys: list[~azure.mgmt.containerservice.models.ContainerServiceSshPublicKey] + """ + + _validation = { + "public_keys": {"required": True}, + } + + _attribute_map = { + "public_keys": {"key": "publicKeys", "type": "[ContainerServiceSshPublicKey]"}, + } + + def __init__(self, *, public_keys: list["_models.ContainerServiceSshPublicKey"], **kwargs: Any) -> None: + """ + :keyword public_keys: The list of SSH public keys used to authenticate with Linux-based VMs. A + maximum of 1 key may be specified. Required. + :paramtype public_keys: list[~azure.mgmt.containerservice.models.ContainerServiceSshPublicKey] + """ + super().__init__(**kwargs) + self.public_keys = public_keys + + +class ContainerServiceSshPublicKey(_serialization.Model): + """Contains information about SSH certificate public key data. + + All required parameters must be populated in order to send to server. + + :ivar key_data: Certificate public key used to authenticate with VMs through SSH. The + certificate must be in PEM format with or without headers. Required. + :vartype key_data: str + """ + + _validation = { + "key_data": {"required": True}, + } + + _attribute_map = { + "key_data": {"key": "keyData", "type": "str"}, + } + + def __init__(self, *, key_data: str, **kwargs: Any) -> None: + """ + :keyword key_data: Certificate public key used to authenticate with VMs through SSH. The + certificate must be in PEM format with or without headers. Required. + :paramtype key_data: str + """ + super().__init__(**kwargs) + self.key_data = key_data + + +class CreationData(_serialization.Model): + """Data used when creating a target resource from a source resource. + + :ivar source_resource_id: This is the ARM ID of the source object to be used to create the + target object. + :vartype source_resource_id: str + """ + + _attribute_map = { + "source_resource_id": {"key": "sourceResourceId", "type": "str"}, + } + + def __init__(self, *, source_resource_id: Optional[str] = None, **kwargs: Any) -> None: + """ + :keyword source_resource_id: This is the ARM ID of the source object to be used to create the + target object. + :paramtype source_resource_id: str + """ + super().__init__(**kwargs) + self.source_resource_id = source_resource_id + + +class CredentialResult(_serialization.Model): + """The credential result response. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: The name of the credential. + :vartype name: str + :ivar value: Base64-encoded Kubernetes configuration file. + :vartype value: bytes + """ + + _validation = { + "name": {"readonly": True}, + "value": {"readonly": True}, + } + + _attribute_map = { + "name": {"key": "name", "type": "str"}, + "value": {"key": "value", "type": "bytearray"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.name: Optional[str] = None + self.value: Optional[bytes] = None + + +class CredentialResults(_serialization.Model): + """The list credential result response. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar kubeconfigs: Base64-encoded Kubernetes configuration file. + :vartype kubeconfigs: list[~azure.mgmt.containerservice.models.CredentialResult] + """ + + _validation = { + "kubeconfigs": {"readonly": True}, + } + + _attribute_map = { + "kubeconfigs": {"key": "kubeconfigs", "type": "[CredentialResult]"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.kubeconfigs: Optional[list["_models.CredentialResult"]] = None + + +class DailySchedule(_serialization.Model): + """For schedules like: 'recur every day' or 'recur every 3 days'. + + All required parameters must be populated in order to send to server. + + :ivar interval_days: Specifies the number of days between each set of occurrences. Required. + :vartype interval_days: int + """ + + _validation = { + "interval_days": {"required": True, "maximum": 7, "minimum": 1}, + } + + _attribute_map = { + "interval_days": {"key": "intervalDays", "type": "int"}, + } + + def __init__(self, *, interval_days: int, **kwargs: Any) -> None: + """ + :keyword interval_days: Specifies the number of days between each set of occurrences. Required. + :paramtype interval_days: int + """ + super().__init__(**kwargs) + self.interval_days = interval_days + + +class DateSpan(_serialization.Model): + """A date range. For example, between '2022-12-23' and '2023-01-05'. + + All required parameters must be populated in order to send to server. + + :ivar start: The start date of the date span. Required. + :vartype start: ~datetime.date + :ivar end: The end date of the date span. Required. + :vartype end: ~datetime.date + """ + + _validation = { + "start": {"required": True}, + "end": {"required": True}, + } + + _attribute_map = { + "start": {"key": "start", "type": "date"}, + "end": {"key": "end", "type": "date"}, + } + + def __init__(self, *, start: datetime.date, end: datetime.date, **kwargs: Any) -> None: + """ + :keyword start: The start date of the date span. Required. + :paramtype start: ~datetime.date + :keyword end: The end date of the date span. Required. + :paramtype end: ~datetime.date + """ + super().__init__(**kwargs) + self.start = start + self.end = end + + +class DelegatedResource(_serialization.Model): + """Delegated resource properties - internal use only. + + :ivar resource_id: The ARM resource id of the delegated resource - internal use only. + :vartype resource_id: str + :ivar tenant_id: The tenant id of the delegated resource - internal use only. + :vartype tenant_id: str + :ivar referral_resource: The delegation id of the referral delegation (optional) - internal use + only. + :vartype referral_resource: str + :ivar location: The source resource location - internal use only. + :vartype location: str + """ + + _attribute_map = { + "resource_id": {"key": "resourceId", "type": "str"}, + "tenant_id": {"key": "tenantId", "type": "str"}, + "referral_resource": {"key": "referralResource", "type": "str"}, + "location": {"key": "location", "type": "str"}, + } + + def __init__( + self, + *, + resource_id: Optional[str] = None, + tenant_id: Optional[str] = None, + referral_resource: Optional[str] = None, + location: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword resource_id: The ARM resource id of the delegated resource - internal use only. + :paramtype resource_id: str + :keyword tenant_id: The tenant id of the delegated resource - internal use only. + :paramtype tenant_id: str + :keyword referral_resource: The delegation id of the referral delegation (optional) - internal + use only. + :paramtype referral_resource: str + :keyword location: The source resource location - internal use only. + :paramtype location: str + """ + super().__init__(**kwargs) + self.resource_id = resource_id + self.tenant_id = tenant_id + self.referral_resource = referral_resource + self.location = location + + +class EndpointDependency(_serialization.Model): + """A domain name that AKS agent nodes are reaching at. + + :ivar domain_name: The domain name of the dependency. + :vartype domain_name: str + :ivar endpoint_details: The Ports and Protocols used when connecting to domainName. + :vartype endpoint_details: list[~azure.mgmt.containerservice.models.EndpointDetail] + """ + + _attribute_map = { + "domain_name": {"key": "domainName", "type": "str"}, + "endpoint_details": {"key": "endpointDetails", "type": "[EndpointDetail]"}, + } + + def __init__( + self, + *, + domain_name: Optional[str] = None, + endpoint_details: Optional[list["_models.EndpointDetail"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword domain_name: The domain name of the dependency. + :paramtype domain_name: str + :keyword endpoint_details: The Ports and Protocols used when connecting to domainName. + :paramtype endpoint_details: list[~azure.mgmt.containerservice.models.EndpointDetail] + """ + super().__init__(**kwargs) + self.domain_name = domain_name + self.endpoint_details = endpoint_details + + +class EndpointDetail(_serialization.Model): + """connect information from the AKS agent nodes to a single endpoint. + + :ivar ip_address: An IP Address that Domain Name currently resolves to. + :vartype ip_address: str + :ivar port: The port an endpoint is connected to. + :vartype port: int + :ivar protocol: The protocol used for connection. + :vartype protocol: str + :ivar description: Description of the detail. + :vartype description: str + """ + + _attribute_map = { + "ip_address": {"key": "ipAddress", "type": "str"}, + "port": {"key": "port", "type": "int"}, + "protocol": {"key": "protocol", "type": "str"}, + "description": {"key": "description", "type": "str"}, + } + + def __init__( + self, + *, + ip_address: Optional[str] = None, + port: Optional[int] = None, + protocol: Optional[str] = None, + description: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword ip_address: An IP Address that Domain Name currently resolves to. + :paramtype ip_address: str + :keyword port: The port an endpoint is connected to. + :paramtype port: int + :keyword protocol: The protocol used for connection. + :paramtype protocol: str + :keyword description: Description of the detail. + :paramtype description: str + """ + super().__init__(**kwargs) + self.ip_address = ip_address + self.port = port + self.protocol = protocol + self.description = description + + +class ErrorAdditionalInfo(_serialization.Model): + """The resource management error additional info. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar type: The additional info type. + :vartype type: str + :ivar info: The additional info. + :vartype info: JSON + """ + + _validation = { + "type": {"readonly": True}, + "info": {"readonly": True}, + } + + _attribute_map = { + "type": {"key": "type", "type": "str"}, + "info": {"key": "info", "type": "object"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.type: Optional[str] = None + self.info: Optional[JSON] = None + + +class ErrorDetail(_serialization.Model): + """The error detail. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar code: The error code. + :vartype code: str + :ivar message: The error message. + :vartype message: str + :ivar target: The error target. + :vartype target: str + :ivar details: The error details. + :vartype details: list[~azure.mgmt.containerservice.models.ErrorDetail] + :ivar additional_info: The error additional info. + :vartype additional_info: list[~azure.mgmt.containerservice.models.ErrorAdditionalInfo] + """ + + _validation = { + "code": {"readonly": True}, + "message": {"readonly": True}, + "target": {"readonly": True}, + "details": {"readonly": True}, + "additional_info": {"readonly": True}, + } + + _attribute_map = { + "code": {"key": "code", "type": "str"}, + "message": {"key": "message", "type": "str"}, + "target": {"key": "target", "type": "str"}, + "details": {"key": "details", "type": "[ErrorDetail]"}, + "additional_info": {"key": "additionalInfo", "type": "[ErrorAdditionalInfo]"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.code: Optional[str] = None + self.message: Optional[str] = None + self.target: Optional[str] = None + self.details: Optional[list["_models.ErrorDetail"]] = None + self.additional_info: Optional[list["_models.ErrorAdditionalInfo"]] = None + + +class ErrorResponse(_serialization.Model): + """Common error response for all Azure Resource Manager APIs to return error details for failed + operations. (This also follows the OData error response format.). + + :ivar error: The error object. + :vartype error: ~azure.mgmt.containerservice.models.ErrorDetail + """ + + _attribute_map = { + "error": {"key": "error", "type": "ErrorDetail"}, + } + + def __init__(self, *, error: Optional["_models.ErrorDetail"] = None, **kwargs: Any) -> None: + """ + :keyword error: The error object. + :paramtype error: ~azure.mgmt.containerservice.models.ErrorDetail + """ + super().__init__(**kwargs) + self.error = error + + +class ExtendedLocation(_serialization.Model): + """The complex type of the extended location. + + :ivar name: The name of the extended location. + :vartype name: str + :ivar type: The type of the extended location. "EdgeZone" + :vartype type: str or ~azure.mgmt.containerservice.models.ExtendedLocationTypes + """ + + _attribute_map = { + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + type: Optional[Union[str, "_models.ExtendedLocationTypes"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword name: The name of the extended location. + :paramtype name: str + :keyword type: The type of the extended location. "EdgeZone" + :paramtype type: str or ~azure.mgmt.containerservice.models.ExtendedLocationTypes + """ + super().__init__(**kwargs) + self.name = name + self.type = type + + +class GPUProfile(_serialization.Model): + """GPU settings for the Agent Pool. + + :ivar driver: Whether to install GPU drivers. When it's not specified, default is Install. + Known values are: "Install" and "None". + :vartype driver: str or ~azure.mgmt.containerservice.models.GPUDriver + """ + + _attribute_map = { + "driver": {"key": "driver", "type": "str"}, + } + + def __init__(self, *, driver: Optional[Union[str, "_models.GPUDriver"]] = None, **kwargs: Any) -> None: + """ + :keyword driver: Whether to install GPU drivers. When it's not specified, default is Install. + Known values are: "Install" and "None". + :paramtype driver: str or ~azure.mgmt.containerservice.models.GPUDriver + """ + super().__init__(**kwargs) + self.driver = driver + + +class IPTag(_serialization.Model): + """Contains the IPTag associated with the object. + + :ivar ip_tag_type: The IP tag type. Example: RoutingPreference. + :vartype ip_tag_type: str + :ivar tag: The value of the IP tag associated with the public IP. Example: Internet. + :vartype tag: str + """ + + _attribute_map = { + "ip_tag_type": {"key": "ipTagType", "type": "str"}, + "tag": {"key": "tag", "type": "str"}, + } + + def __init__(self, *, ip_tag_type: Optional[str] = None, tag: Optional[str] = None, **kwargs: Any) -> None: + """ + :keyword ip_tag_type: The IP tag type. Example: RoutingPreference. + :paramtype ip_tag_type: str + :keyword tag: The value of the IP tag associated with the public IP. Example: Internet. + :paramtype tag: str + """ + super().__init__(**kwargs) + self.ip_tag_type = ip_tag_type + self.tag = tag + + +class IstioCertificateAuthority(_serialization.Model): + """Istio Service Mesh Certificate Authority (CA) configuration. For now, we only support plugin + certificates as described here https://aka.ms/asm-plugin-ca. + + :ivar plugin: Plugin certificates information for Service Mesh. + :vartype plugin: ~azure.mgmt.containerservice.models.IstioPluginCertificateAuthority + """ + + _attribute_map = { + "plugin": {"key": "plugin", "type": "IstioPluginCertificateAuthority"}, + } + + def __init__(self, *, plugin: Optional["_models.IstioPluginCertificateAuthority"] = None, **kwargs: Any) -> None: + """ + :keyword plugin: Plugin certificates information for Service Mesh. + :paramtype plugin: ~azure.mgmt.containerservice.models.IstioPluginCertificateAuthority + """ + super().__init__(**kwargs) + self.plugin = plugin + + +class IstioComponents(_serialization.Model): + """Istio components configuration. + + :ivar ingress_gateways: Istio ingress gateways. + :vartype ingress_gateways: list[~azure.mgmt.containerservice.models.IstioIngressGateway] + :ivar egress_gateways: Istio egress gateways. + :vartype egress_gateways: list[~azure.mgmt.containerservice.models.IstioEgressGateway] + """ + + _attribute_map = { + "ingress_gateways": {"key": "ingressGateways", "type": "[IstioIngressGateway]"}, + "egress_gateways": {"key": "egressGateways", "type": "[IstioEgressGateway]"}, + } + + def __init__( + self, + *, + ingress_gateways: Optional[list["_models.IstioIngressGateway"]] = None, + egress_gateways: Optional[list["_models.IstioEgressGateway"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword ingress_gateways: Istio ingress gateways. + :paramtype ingress_gateways: list[~azure.mgmt.containerservice.models.IstioIngressGateway] + :keyword egress_gateways: Istio egress gateways. + :paramtype egress_gateways: list[~azure.mgmt.containerservice.models.IstioEgressGateway] + """ + super().__init__(**kwargs) + self.ingress_gateways = ingress_gateways + self.egress_gateways = egress_gateways + + +class IstioEgressGateway(_serialization.Model): + """Istio egress gateway configuration. + + All required parameters must be populated in order to send to server. + + :ivar enabled: Whether to enable the egress gateway. Required. + :vartype enabled: bool + :ivar name: Name of the Istio add-on egress gateway. Required. + :vartype name: str + :ivar namespace: Namespace that the Istio add-on egress gateway should be deployed in. If + unspecified, the default is aks-istio-egress. + :vartype namespace: str + :ivar gateway_configuration_name: Name of the gateway configuration custom resource for the + Istio add-on egress gateway. Must be specified when enabling the Istio egress gateway. Must be + deployed in the same namespace that the Istio egress gateway will be deployed in. + :vartype gateway_configuration_name: str + """ + + _validation = { + "enabled": {"required": True}, + "name": {"required": True, "pattern": r"[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*"}, + } + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + "name": {"key": "name", "type": "str"}, + "namespace": {"key": "namespace", "type": "str"}, + "gateway_configuration_name": {"key": "gatewayConfigurationName", "type": "str"}, + } + + def __init__( + self, + *, + enabled: bool, + name: str, + namespace: Optional[str] = None, + gateway_configuration_name: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword enabled: Whether to enable the egress gateway. Required. + :paramtype enabled: bool + :keyword name: Name of the Istio add-on egress gateway. Required. + :paramtype name: str + :keyword namespace: Namespace that the Istio add-on egress gateway should be deployed in. If + unspecified, the default is aks-istio-egress. + :paramtype namespace: str + :keyword gateway_configuration_name: Name of the gateway configuration custom resource for the + Istio add-on egress gateway. Must be specified when enabling the Istio egress gateway. Must be + deployed in the same namespace that the Istio egress gateway will be deployed in. + :paramtype gateway_configuration_name: str + """ + super().__init__(**kwargs) + self.enabled = enabled + self.name = name + self.namespace = namespace + self.gateway_configuration_name = gateway_configuration_name + + +class IstioIngressGateway(_serialization.Model): + """Istio ingress gateway configuration. For now, we support up to one external ingress gateway + named ``aks-istio-ingressgateway-external`` and one internal ingress gateway named + ``aks-istio-ingressgateway-internal``. + + All required parameters must be populated in order to send to server. + + :ivar mode: Mode of an ingress gateway. Required. Known values are: "External" and "Internal". + :vartype mode: str or ~azure.mgmt.containerservice.models.IstioIngressGatewayMode + :ivar enabled: Whether to enable the ingress gateway. Required. + :vartype enabled: bool + """ + + _validation = { + "mode": {"required": True}, + "enabled": {"required": True}, + } + + _attribute_map = { + "mode": {"key": "mode", "type": "str"}, + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, mode: Union[str, "_models.IstioIngressGatewayMode"], enabled: bool, **kwargs: Any) -> None: + """ + :keyword mode: Mode of an ingress gateway. Required. Known values are: "External" and + "Internal". + :paramtype mode: str or ~azure.mgmt.containerservice.models.IstioIngressGatewayMode + :keyword enabled: Whether to enable the ingress gateway. Required. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.mode = mode + self.enabled = enabled + + +class IstioPluginCertificateAuthority(_serialization.Model): + """Plugin certificates information for Service Mesh. + + :ivar key_vault_id: The resource ID of the Key Vault. + :vartype key_vault_id: str + :ivar cert_object_name: Intermediate certificate object name in Azure Key Vault. + :vartype cert_object_name: str + :ivar key_object_name: Intermediate certificate private key object name in Azure Key Vault. + :vartype key_object_name: str + :ivar root_cert_object_name: Root certificate object name in Azure Key Vault. + :vartype root_cert_object_name: str + :ivar cert_chain_object_name: Certificate chain object name in Azure Key Vault. + :vartype cert_chain_object_name: str + """ + + _attribute_map = { + "key_vault_id": {"key": "keyVaultId", "type": "str"}, + "cert_object_name": {"key": "certObjectName", "type": "str"}, + "key_object_name": {"key": "keyObjectName", "type": "str"}, + "root_cert_object_name": {"key": "rootCertObjectName", "type": "str"}, + "cert_chain_object_name": {"key": "certChainObjectName", "type": "str"}, + } + + def __init__( + self, + *, + key_vault_id: Optional[str] = None, + cert_object_name: Optional[str] = None, + key_object_name: Optional[str] = None, + root_cert_object_name: Optional[str] = None, + cert_chain_object_name: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword key_vault_id: The resource ID of the Key Vault. + :paramtype key_vault_id: str + :keyword cert_object_name: Intermediate certificate object name in Azure Key Vault. + :paramtype cert_object_name: str + :keyword key_object_name: Intermediate certificate private key object name in Azure Key Vault. + :paramtype key_object_name: str + :keyword root_cert_object_name: Root certificate object name in Azure Key Vault. + :paramtype root_cert_object_name: str + :keyword cert_chain_object_name: Certificate chain object name in Azure Key Vault. + :paramtype cert_chain_object_name: str + """ + super().__init__(**kwargs) + self.key_vault_id = key_vault_id + self.cert_object_name = cert_object_name + self.key_object_name = key_object_name + self.root_cert_object_name = root_cert_object_name + self.cert_chain_object_name = cert_chain_object_name + + +class IstioServiceMesh(_serialization.Model): + """Istio service mesh configuration. + + :ivar components: Istio components configuration. + :vartype components: ~azure.mgmt.containerservice.models.IstioComponents + :ivar certificate_authority: Istio Service Mesh Certificate Authority (CA) configuration. For + now, we only support plugin certificates as described here https://aka.ms/asm-plugin-ca. + :vartype certificate_authority: ~azure.mgmt.containerservice.models.IstioCertificateAuthority + :ivar revisions: The list of revisions of the Istio control plane. When an upgrade is not in + progress, this holds one value. When canary upgrade is in progress, this can only hold two + consecutive values. For more information, see: + https://learn.microsoft.com/en-us/azure/aks/istio-upgrade. + :vartype revisions: list[str] + """ + + _validation = { + "revisions": {"max_items": 2, "min_items": 0, "unique": True}, + } + + _attribute_map = { + "components": {"key": "components", "type": "IstioComponents"}, + "certificate_authority": {"key": "certificateAuthority", "type": "IstioCertificateAuthority"}, + "revisions": {"key": "revisions", "type": "[str]"}, + } + + def __init__( + self, + *, + components: Optional["_models.IstioComponents"] = None, + certificate_authority: Optional["_models.IstioCertificateAuthority"] = None, + revisions: Optional[list[str]] = None, + **kwargs: Any + ) -> None: + """ + :keyword components: Istio components configuration. + :paramtype components: ~azure.mgmt.containerservice.models.IstioComponents + :keyword certificate_authority: Istio Service Mesh Certificate Authority (CA) configuration. + For now, we only support plugin certificates as described here https://aka.ms/asm-plugin-ca. + :paramtype certificate_authority: ~azure.mgmt.containerservice.models.IstioCertificateAuthority + :keyword revisions: The list of revisions of the Istio control plane. When an upgrade is not in + progress, this holds one value. When canary upgrade is in progress, this can only hold two + consecutive values. For more information, see: + https://learn.microsoft.com/en-us/azure/aks/istio-upgrade. + :paramtype revisions: list[str] + """ + super().__init__(**kwargs) + self.components = components + self.certificate_authority = certificate_authority + self.revisions = revisions + + +class KubeletConfig(_serialization.Model): + """Kubelet configurations of agent nodes. See `AKS custom node configuration + `_ for more details. + + :ivar cpu_manager_policy: The CPU Manager policy to use. The default is 'none'. See `Kubernetes + CPU management policies + `_ + for more information. Allowed values are 'none' and 'static'. + :vartype cpu_manager_policy: str + :ivar cpu_cfs_quota: If CPU CFS quota enforcement is enabled for containers that specify CPU + limits. The default is true. + :vartype cpu_cfs_quota: bool + :ivar cpu_cfs_quota_period: The CPU CFS quota period value. The default is '100ms.' Valid + values are a sequence of decimal numbers with an optional fraction and a unit suffix. For + example: '300ms', '2h45m'. Supported units are 'ns', 'us', 'ms', 's', 'm', and 'h'. + :vartype cpu_cfs_quota_period: str + :ivar image_gc_high_threshold: The percent of disk usage after which image garbage collection + is always run. To disable image garbage collection, set to 100. The default is 85%. + :vartype image_gc_high_threshold: int + :ivar image_gc_low_threshold: The percent of disk usage before which image garbage collection + is never run. This cannot be set higher than imageGcHighThreshold. The default is 80%. + :vartype image_gc_low_threshold: int + :ivar topology_manager_policy: The Topology Manager policy to use. For more information see + `Kubernetes Topology Manager + `_. The default is + 'none'. Allowed values are 'none', 'best-effort', 'restricted', and 'single-numa-node'. + :vartype topology_manager_policy: str + :ivar allowed_unsafe_sysctls: Allowed list of unsafe sysctls or unsafe sysctl patterns (ending + in ``*``\\ ). + :vartype allowed_unsafe_sysctls: list[str] + :ivar fail_swap_on: If set to true it will make the Kubelet fail to start if swap is enabled on + the node. + :vartype fail_swap_on: bool + :ivar container_log_max_size_mb: The maximum size (e.g. 10Mi) of container log file before it + is rotated. + :vartype container_log_max_size_mb: int + :ivar container_log_max_files: The maximum number of container log files that can be present + for a container. The number must be ≥ 2. + :vartype container_log_max_files: int + :ivar pod_max_pids: The maximum number of processes per pod. + :vartype pod_max_pids: int + """ + + _validation = { + "container_log_max_files": {"minimum": 2}, + } + + _attribute_map = { + "cpu_manager_policy": {"key": "cpuManagerPolicy", "type": "str"}, + "cpu_cfs_quota": {"key": "cpuCfsQuota", "type": "bool"}, + "cpu_cfs_quota_period": {"key": "cpuCfsQuotaPeriod", "type": "str"}, + "image_gc_high_threshold": {"key": "imageGcHighThreshold", "type": "int"}, + "image_gc_low_threshold": {"key": "imageGcLowThreshold", "type": "int"}, + "topology_manager_policy": {"key": "topologyManagerPolicy", "type": "str"}, + "allowed_unsafe_sysctls": {"key": "allowedUnsafeSysctls", "type": "[str]"}, + "fail_swap_on": {"key": "failSwapOn", "type": "bool"}, + "container_log_max_size_mb": {"key": "containerLogMaxSizeMB", "type": "int"}, + "container_log_max_files": {"key": "containerLogMaxFiles", "type": "int"}, + "pod_max_pids": {"key": "podMaxPids", "type": "int"}, + } + + def __init__( + self, + *, + cpu_manager_policy: Optional[str] = None, + cpu_cfs_quota: Optional[bool] = None, + cpu_cfs_quota_period: Optional[str] = None, + image_gc_high_threshold: Optional[int] = None, + image_gc_low_threshold: Optional[int] = None, + topology_manager_policy: Optional[str] = None, + allowed_unsafe_sysctls: Optional[list[str]] = None, + fail_swap_on: Optional[bool] = None, + container_log_max_size_mb: Optional[int] = None, + container_log_max_files: Optional[int] = None, + pod_max_pids: Optional[int] = None, + **kwargs: Any + ) -> None: + """ + :keyword cpu_manager_policy: The CPU Manager policy to use. The default is 'none'. See + `Kubernetes CPU management policies + `_ + for more information. Allowed values are 'none' and 'static'. + :paramtype cpu_manager_policy: str + :keyword cpu_cfs_quota: If CPU CFS quota enforcement is enabled for containers that specify CPU + limits. The default is true. + :paramtype cpu_cfs_quota: bool + :keyword cpu_cfs_quota_period: The CPU CFS quota period value. The default is '100ms.' Valid + values are a sequence of decimal numbers with an optional fraction and a unit suffix. For + example: '300ms', '2h45m'. Supported units are 'ns', 'us', 'ms', 's', 'm', and 'h'. + :paramtype cpu_cfs_quota_period: str + :keyword image_gc_high_threshold: The percent of disk usage after which image garbage + collection is always run. To disable image garbage collection, set to 100. The default is 85%. + :paramtype image_gc_high_threshold: int + :keyword image_gc_low_threshold: The percent of disk usage before which image garbage + collection is never run. This cannot be set higher than imageGcHighThreshold. The default is + 80%. + :paramtype image_gc_low_threshold: int + :keyword topology_manager_policy: The Topology Manager policy to use. For more information see + `Kubernetes Topology Manager + `_. The default is + 'none'. Allowed values are 'none', 'best-effort', 'restricted', and 'single-numa-node'. + :paramtype topology_manager_policy: str + :keyword allowed_unsafe_sysctls: Allowed list of unsafe sysctls or unsafe sysctl patterns + (ending in ``*``\\ ). + :paramtype allowed_unsafe_sysctls: list[str] + :keyword fail_swap_on: If set to true it will make the Kubelet fail to start if swap is enabled + on the node. + :paramtype fail_swap_on: bool + :keyword container_log_max_size_mb: The maximum size (e.g. 10Mi) of container log file before + it is rotated. + :paramtype container_log_max_size_mb: int + :keyword container_log_max_files: The maximum number of container log files that can be present + for a container. The number must be ≥ 2. + :paramtype container_log_max_files: int + :keyword pod_max_pids: The maximum number of processes per pod. + :paramtype pod_max_pids: int + """ + super().__init__(**kwargs) + self.cpu_manager_policy = cpu_manager_policy + self.cpu_cfs_quota = cpu_cfs_quota + self.cpu_cfs_quota_period = cpu_cfs_quota_period + self.image_gc_high_threshold = image_gc_high_threshold + self.image_gc_low_threshold = image_gc_low_threshold + self.topology_manager_policy = topology_manager_policy + self.allowed_unsafe_sysctls = allowed_unsafe_sysctls + self.fail_swap_on = fail_swap_on + self.container_log_max_size_mb = container_log_max_size_mb + self.container_log_max_files = container_log_max_files + self.pod_max_pids = pod_max_pids + + +class KubernetesPatchVersion(_serialization.Model): + """Kubernetes patch version profile. + + :ivar upgrades: Possible upgrade path for given patch version. + :vartype upgrades: list[str] + """ + + _attribute_map = { + "upgrades": {"key": "upgrades", "type": "[str]"}, + } + + def __init__(self, *, upgrades: Optional[list[str]] = None, **kwargs: Any) -> None: + """ + :keyword upgrades: Possible upgrade path for given patch version. + :paramtype upgrades: list[str] + """ + super().__init__(**kwargs) + self.upgrades = upgrades + + +class KubernetesVersion(_serialization.Model): + """Kubernetes version profile for given major.minor release. + + :ivar version: major.minor version of Kubernetes release. + :vartype version: str + :ivar capabilities: Capabilities on this Kubernetes version. + :vartype capabilities: ~azure.mgmt.containerservice.models.KubernetesVersionCapabilities + :ivar is_default: Whether this version is default. + :vartype is_default: bool + :ivar is_preview: Whether this version is in preview mode. + :vartype is_preview: bool + :ivar patch_versions: Patch versions of Kubernetes release. + :vartype patch_versions: dict[str, ~azure.mgmt.containerservice.models.KubernetesPatchVersion] + """ + + _attribute_map = { + "version": {"key": "version", "type": "str"}, + "capabilities": {"key": "capabilities", "type": "KubernetesVersionCapabilities"}, + "is_default": {"key": "isDefault", "type": "bool"}, + "is_preview": {"key": "isPreview", "type": "bool"}, + "patch_versions": {"key": "patchVersions", "type": "{KubernetesPatchVersion}"}, + } + + def __init__( + self, + *, + version: Optional[str] = None, + capabilities: Optional["_models.KubernetesVersionCapabilities"] = None, + is_default: Optional[bool] = None, + is_preview: Optional[bool] = None, + patch_versions: Optional[dict[str, "_models.KubernetesPatchVersion"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword version: major.minor version of Kubernetes release. + :paramtype version: str + :keyword capabilities: Capabilities on this Kubernetes version. + :paramtype capabilities: ~azure.mgmt.containerservice.models.KubernetesVersionCapabilities + :keyword is_default: Whether this version is default. + :paramtype is_default: bool + :keyword is_preview: Whether this version is in preview mode. + :paramtype is_preview: bool + :keyword patch_versions: Patch versions of Kubernetes release. + :paramtype patch_versions: dict[str, + ~azure.mgmt.containerservice.models.KubernetesPatchVersion] + """ + super().__init__(**kwargs) + self.version = version + self.capabilities = capabilities + self.is_default = is_default + self.is_preview = is_preview + self.patch_versions = patch_versions + + +class KubernetesVersionCapabilities(_serialization.Model): + """Capabilities on this Kubernetes version. + + :ivar support_plan: + :vartype support_plan: list[str or ~azure.mgmt.containerservice.models.KubernetesSupportPlan] + """ + + _attribute_map = { + "support_plan": {"key": "supportPlan", "type": "[str]"}, + } + + def __init__( + self, *, support_plan: Optional[list[Union[str, "_models.KubernetesSupportPlan"]]] = None, **kwargs: Any + ) -> None: + """ + :keyword support_plan: + :paramtype support_plan: list[str or ~azure.mgmt.containerservice.models.KubernetesSupportPlan] + """ + super().__init__(**kwargs) + self.support_plan = support_plan + + +class KubernetesVersionListResult(_serialization.Model): + """Hold values properties, which is array of KubernetesVersion. + + :ivar values: Array of AKS supported Kubernetes versions. + :vartype values: list[~azure.mgmt.containerservice.models.KubernetesVersion] + """ + + _attribute_map = { + "values": {"key": "values", "type": "[KubernetesVersion]"}, + } + + def __init__(self, *, values: Optional[list["_models.KubernetesVersion"]] = None, **kwargs: Any) -> None: + """ + :keyword values: Array of AKS supported Kubernetes versions. + :paramtype values: list[~azure.mgmt.containerservice.models.KubernetesVersion] + """ + super().__init__(**kwargs) + self.values = values + + +class LinuxOSConfig(_serialization.Model): + """OS configurations of Linux agent nodes. See `AKS custom node configuration + `_ for more details. + + :ivar sysctls: Sysctl settings for Linux agent nodes. + :vartype sysctls: ~azure.mgmt.containerservice.models.SysctlConfig + :ivar transparent_huge_page_enabled: Whether transparent hugepages are enabled. Valid values + are 'always', 'madvise', and 'never'. The default is 'always'. For more information see + `Transparent Hugepages + `_. + :vartype transparent_huge_page_enabled: str + :ivar transparent_huge_page_defrag: Whether the kernel should make aggressive use of memory + compaction to make more hugepages available. Valid values are 'always', 'defer', + 'defer+madvise', 'madvise' and 'never'. The default is 'madvise'. For more information see + `Transparent Hugepages + `_. + :vartype transparent_huge_page_defrag: str + :ivar swap_file_size_mb: The size in MB of a swap file that will be created on each node. + :vartype swap_file_size_mb: int + """ + + _attribute_map = { + "sysctls": {"key": "sysctls", "type": "SysctlConfig"}, + "transparent_huge_page_enabled": {"key": "transparentHugePageEnabled", "type": "str"}, + "transparent_huge_page_defrag": {"key": "transparentHugePageDefrag", "type": "str"}, + "swap_file_size_mb": {"key": "swapFileSizeMB", "type": "int"}, + } + + def __init__( + self, + *, + sysctls: Optional["_models.SysctlConfig"] = None, + transparent_huge_page_enabled: Optional[str] = None, + transparent_huge_page_defrag: Optional[str] = None, + swap_file_size_mb: Optional[int] = None, + **kwargs: Any + ) -> None: + """ + :keyword sysctls: Sysctl settings for Linux agent nodes. + :paramtype sysctls: ~azure.mgmt.containerservice.models.SysctlConfig + :keyword transparent_huge_page_enabled: Whether transparent hugepages are enabled. Valid values + are 'always', 'madvise', and 'never'. The default is 'always'. For more information see + `Transparent Hugepages + `_. + :paramtype transparent_huge_page_enabled: str + :keyword transparent_huge_page_defrag: Whether the kernel should make aggressive use of memory + compaction to make more hugepages available. Valid values are 'always', 'defer', + 'defer+madvise', 'madvise' and 'never'. The default is 'madvise'. For more information see + `Transparent Hugepages + `_. + :paramtype transparent_huge_page_defrag: str + :keyword swap_file_size_mb: The size in MB of a swap file that will be created on each node. + :paramtype swap_file_size_mb: int + """ + super().__init__(**kwargs) + self.sysctls = sysctls + self.transparent_huge_page_enabled = transparent_huge_page_enabled + self.transparent_huge_page_defrag = transparent_huge_page_defrag + self.swap_file_size_mb = swap_file_size_mb + + +class LocalDNSOverride(_serialization.Model): + """Overrides for localDNS profile. + + :ivar query_logging: Log level for DNS queries in localDNS. Known values are: "Error" and + "Log". + :vartype query_logging: str or ~azure.mgmt.containerservice.models.LocalDNSQueryLogging + :ivar protocol: Enforce TCP or prefer UDP protocol for connections from localDNS to upstream + DNS server. Known values are: "PreferUDP" and "ForceTCP". + :vartype protocol: str or ~azure.mgmt.containerservice.models.LocalDNSProtocol + :ivar forward_destination: Destination server for DNS queries to be forwarded from localDNS. + Known values are: "ClusterCoreDNS" and "VnetDNS". + :vartype forward_destination: str or + ~azure.mgmt.containerservice.models.LocalDNSForwardDestination + :ivar forward_policy: Forward policy for selecting upstream DNS server. See `forward plugin + `_ for more information. Known values are: "Sequential", + "RoundRobin", and "Random". + :vartype forward_policy: str or ~azure.mgmt.containerservice.models.LocalDNSForwardPolicy + :ivar max_concurrent: Maximum number of concurrent queries. See `forward plugin + `_ for more information. + :vartype max_concurrent: int + :ivar cache_duration_in_seconds: Cache max TTL in seconds. See `cache plugin + `_ for more information. + :vartype cache_duration_in_seconds: int + :ivar serve_stale_duration_in_seconds: Serve stale duration in seconds. See `cache plugin + `_ for more information. + :vartype serve_stale_duration_in_seconds: int + :ivar serve_stale: Policy for serving stale data. See `cache plugin + `_ for more information. Known values are: "Verify", + "Immediate", and "Disable". + :vartype serve_stale: str or ~azure.mgmt.containerservice.models.LocalDNSServeStale + """ + + _attribute_map = { + "query_logging": {"key": "queryLogging", "type": "str"}, + "protocol": {"key": "protocol", "type": "str"}, + "forward_destination": {"key": "forwardDestination", "type": "str"}, + "forward_policy": {"key": "forwardPolicy", "type": "str"}, + "max_concurrent": {"key": "maxConcurrent", "type": "int"}, + "cache_duration_in_seconds": {"key": "cacheDurationInSeconds", "type": "int"}, + "serve_stale_duration_in_seconds": {"key": "serveStaleDurationInSeconds", "type": "int"}, + "serve_stale": {"key": "serveStale", "type": "str"}, + } + + def __init__( + self, + *, + query_logging: Union[str, "_models.LocalDNSQueryLogging"] = "Error", + protocol: Union[str, "_models.LocalDNSProtocol"] = "PreferUDP", + forward_destination: Union[str, "_models.LocalDNSForwardDestination"] = "ClusterCoreDNS", + forward_policy: Union[str, "_models.LocalDNSForwardPolicy"] = "Sequential", + max_concurrent: int = 1000, + cache_duration_in_seconds: int = 3600, + serve_stale_duration_in_seconds: int = 3600, + serve_stale: Union[str, "_models.LocalDNSServeStale"] = "Immediate", + **kwargs: Any + ) -> None: + """ + :keyword query_logging: Log level for DNS queries in localDNS. Known values are: "Error" and + "Log". + :paramtype query_logging: str or ~azure.mgmt.containerservice.models.LocalDNSQueryLogging + :keyword protocol: Enforce TCP or prefer UDP protocol for connections from localDNS to upstream + DNS server. Known values are: "PreferUDP" and "ForceTCP". + :paramtype protocol: str or ~azure.mgmt.containerservice.models.LocalDNSProtocol + :keyword forward_destination: Destination server for DNS queries to be forwarded from localDNS. + Known values are: "ClusterCoreDNS" and "VnetDNS". + :paramtype forward_destination: str or + ~azure.mgmt.containerservice.models.LocalDNSForwardDestination + :keyword forward_policy: Forward policy for selecting upstream DNS server. See `forward plugin + `_ for more information. Known values are: "Sequential", + "RoundRobin", and "Random". + :paramtype forward_policy: str or ~azure.mgmt.containerservice.models.LocalDNSForwardPolicy + :keyword max_concurrent: Maximum number of concurrent queries. See `forward plugin + `_ for more information. + :paramtype max_concurrent: int + :keyword cache_duration_in_seconds: Cache max TTL in seconds. See `cache plugin + `_ for more information. + :paramtype cache_duration_in_seconds: int + :keyword serve_stale_duration_in_seconds: Serve stale duration in seconds. See `cache plugin + `_ for more information. + :paramtype serve_stale_duration_in_seconds: int + :keyword serve_stale: Policy for serving stale data. See `cache plugin + `_ for more information. Known values are: "Verify", + "Immediate", and "Disable". + :paramtype serve_stale: str or ~azure.mgmt.containerservice.models.LocalDNSServeStale + """ + super().__init__(**kwargs) + self.query_logging = query_logging + self.protocol = protocol + self.forward_destination = forward_destination + self.forward_policy = forward_policy + self.max_concurrent = max_concurrent + self.cache_duration_in_seconds = cache_duration_in_seconds + self.serve_stale_duration_in_seconds = serve_stale_duration_in_seconds + self.serve_stale = serve_stale + + +class LocalDNSProfile(_serialization.Model): + """Configures the per-node local DNS, with VnetDNS and KubeDNS overrides. LocalDNS helps improve + performance and reliability of DNS resolution in an AKS cluster. For more details see + aka.ms/aks/localdns. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar mode: Mode of enablement for localDNS. Known values are: "Preferred", "Required", and + "Disabled". + :vartype mode: str or ~azure.mgmt.containerservice.models.LocalDNSMode + :ivar state: System-generated state of localDNS. Known values are: "Enabled" and "Disabled". + :vartype state: str or ~azure.mgmt.containerservice.models.LocalDNSState + :ivar vnet_dns_overrides: VnetDNS overrides apply to DNS traffic from pods with + dnsPolicy:default or kubelet (referred to as VnetDNS traffic). + :vartype vnet_dns_overrides: dict[str, ~azure.mgmt.containerservice.models.LocalDNSOverride] + :ivar kube_dns_overrides: KubeDNS overrides apply to DNS traffic from pods with + dnsPolicy:ClusterFirst (referred to as KubeDNS traffic). + :vartype kube_dns_overrides: dict[str, ~azure.mgmt.containerservice.models.LocalDNSOverride] + """ + + _validation = { + "state": {"readonly": True}, + } + + _attribute_map = { + "mode": {"key": "mode", "type": "str"}, + "state": {"key": "state", "type": "str"}, + "vnet_dns_overrides": {"key": "vnetDNSOverrides", "type": "{LocalDNSOverride}"}, + "kube_dns_overrides": {"key": "kubeDNSOverrides", "type": "{LocalDNSOverride}"}, + } + + def __init__( + self, + *, + mode: Union[str, "_models.LocalDNSMode"] = "Preferred", + vnet_dns_overrides: Optional[dict[str, "_models.LocalDNSOverride"]] = None, + kube_dns_overrides: Optional[dict[str, "_models.LocalDNSOverride"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword mode: Mode of enablement for localDNS. Known values are: "Preferred", "Required", and + "Disabled". + :paramtype mode: str or ~azure.mgmt.containerservice.models.LocalDNSMode + :keyword vnet_dns_overrides: VnetDNS overrides apply to DNS traffic from pods with + dnsPolicy:default or kubelet (referred to as VnetDNS traffic). + :paramtype vnet_dns_overrides: dict[str, ~azure.mgmt.containerservice.models.LocalDNSOverride] + :keyword kube_dns_overrides: KubeDNS overrides apply to DNS traffic from pods with + dnsPolicy:ClusterFirst (referred to as KubeDNS traffic). + :paramtype kube_dns_overrides: dict[str, ~azure.mgmt.containerservice.models.LocalDNSOverride] + """ + super().__init__(**kwargs) + self.mode = mode + self.state: Optional[Union[str, "_models.LocalDNSState"]] = None + self.vnet_dns_overrides = vnet_dns_overrides + self.kube_dns_overrides = kube_dns_overrides + + +class Machine(SubResource): + """A machine. Contains details about the underlying virtual machine. A machine may be visible here + but not in kubectl get nodes; if so it may be because the machine has not been registered with + the Kubernetes API Server yet. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar zones: The Availability zone in which machine is located. + :vartype zones: list[str] + :ivar properties: The properties of the machine. + :vartype properties: ~azure.mgmt.containerservice.models.MachineProperties + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "zones": {"readonly": True}, + "properties": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "zones": {"key": "zones", "type": "[str]"}, + "properties": {"key": "properties", "type": "MachineProperties"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.zones: Optional[list[str]] = None + self.properties: Optional["_models.MachineProperties"] = None + + +class MachineIpAddress(_serialization.Model): + """The machine IP address details. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar family: To determine if address belongs IPv4 or IPv6 family. Known values are: "IPv4" and + "IPv6". + :vartype family: str or ~azure.mgmt.containerservice.models.IpFamily + :ivar ip: IPv4 or IPv6 address of the machine. + :vartype ip: str + """ + + _validation = { + "family": {"readonly": True}, + "ip": {"readonly": True}, + } + + _attribute_map = { + "family": {"key": "family", "type": "str"}, + "ip": {"key": "ip", "type": "str"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.family: Optional[Union[str, "_models.IpFamily"]] = None + self.ip: Optional[str] = None + + +class MachineListResult(_serialization.Model): + """The response from the List Machines operation. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar next_link: The URL to get the next set of machine results. + :vartype next_link: str + :ivar value: The list of Machines in cluster. + :vartype value: list[~azure.mgmt.containerservice.models.Machine] + """ + + _validation = { + "next_link": {"readonly": True}, + } + + _attribute_map = { + "next_link": {"key": "nextLink", "type": "str"}, + "value": {"key": "value", "type": "[Machine]"}, + } + + def __init__(self, *, value: Optional[list["_models.Machine"]] = None, **kwargs: Any) -> None: + """ + :keyword value: The list of Machines in cluster. + :paramtype value: list[~azure.mgmt.containerservice.models.Machine] + """ + super().__init__(**kwargs) + self.next_link: Optional[str] = None + self.value = value + + +class MachineNetworkProperties(_serialization.Model): + """network properties of the machine. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar ip_addresses: IPv4, IPv6 addresses of the machine. + :vartype ip_addresses: list[~azure.mgmt.containerservice.models.MachineIpAddress] + """ + + _validation = { + "ip_addresses": {"readonly": True}, + } + + _attribute_map = { + "ip_addresses": {"key": "ipAddresses", "type": "[MachineIpAddress]"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.ip_addresses: Optional[list["_models.MachineIpAddress"]] = None + + +class MachineProperties(_serialization.Model): + """The properties of the machine. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar network: network properties of the machine. + :vartype network: ~azure.mgmt.containerservice.models.MachineNetworkProperties + :ivar resource_id: Azure resource id of the machine. It can be used to GET underlying VM + Instance. + :vartype resource_id: str + """ + + _validation = { + "network": {"readonly": True}, + "resource_id": {"readonly": True}, + } + + _attribute_map = { + "network": {"key": "network", "type": "MachineNetworkProperties"}, + "resource_id": {"key": "resourceId", "type": "str"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.network: Optional["_models.MachineNetworkProperties"] = None + self.resource_id: Optional[str] = None + + +class MaintenanceConfiguration(SubResource): + """Planned maintenance configuration, used to configure when updates can be deployed to a Managed + Cluster. See `planned maintenance `_ + for more information about planned maintenance. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar system_data: The system metadata relating to this resource. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + :ivar time_in_week: Time slots during the week when planned maintenance is allowed to proceed. + If two array entries specify the same day of the week, the applied configuration is the union + of times in both entries. + :vartype time_in_week: list[~azure.mgmt.containerservice.models.TimeInWeek] + :ivar not_allowed_time: Time slots on which upgrade is not allowed. + :vartype not_allowed_time: list[~azure.mgmt.containerservice.models.TimeSpan] + :ivar maintenance_window: Maintenance window for the maintenance configuration. + :vartype maintenance_window: ~azure.mgmt.containerservice.models.MaintenanceWindow + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "time_in_week": {"key": "properties.timeInWeek", "type": "[TimeInWeek]"}, + "not_allowed_time": {"key": "properties.notAllowedTime", "type": "[TimeSpan]"}, + "maintenance_window": {"key": "properties.maintenanceWindow", "type": "MaintenanceWindow"}, + } + + def __init__( + self, + *, + time_in_week: Optional[list["_models.TimeInWeek"]] = None, + not_allowed_time: Optional[list["_models.TimeSpan"]] = None, + maintenance_window: Optional["_models.MaintenanceWindow"] = None, + **kwargs: Any + ) -> None: + """ + :keyword time_in_week: Time slots during the week when planned maintenance is allowed to + proceed. If two array entries specify the same day of the week, the applied configuration is + the union of times in both entries. + :paramtype time_in_week: list[~azure.mgmt.containerservice.models.TimeInWeek] + :keyword not_allowed_time: Time slots on which upgrade is not allowed. + :paramtype not_allowed_time: list[~azure.mgmt.containerservice.models.TimeSpan] + :keyword maintenance_window: Maintenance window for the maintenance configuration. + :paramtype maintenance_window: ~azure.mgmt.containerservice.models.MaintenanceWindow + """ + super().__init__(**kwargs) + self.system_data: Optional["_models.SystemData"] = None + self.time_in_week = time_in_week + self.not_allowed_time = not_allowed_time + self.maintenance_window = maintenance_window + + +class MaintenanceConfigurationListResult(_serialization.Model): + """The response from the List maintenance configurations operation. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: The list of maintenance configurations. + :vartype value: list[~azure.mgmt.containerservice.models.MaintenanceConfiguration] + :ivar next_link: The URL to get the next set of maintenance configuration results. + :vartype next_link: str + """ + + _validation = { + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[MaintenanceConfiguration]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, *, value: Optional[list["_models.MaintenanceConfiguration"]] = None, **kwargs: Any) -> None: + """ + :keyword value: The list of maintenance configurations. + :paramtype value: list[~azure.mgmt.containerservice.models.MaintenanceConfiguration] + """ + super().__init__(**kwargs) + self.value = value + self.next_link: Optional[str] = None + + +class MaintenanceWindow(_serialization.Model): + """Maintenance window used to configure scheduled auto-upgrade for a Managed Cluster. + + All required parameters must be populated in order to send to server. + + :ivar schedule: Recurrence schedule for the maintenance window. Required. + :vartype schedule: ~azure.mgmt.containerservice.models.Schedule + :ivar duration_hours: Length of maintenance window range from 4 to 24 hours. + :vartype duration_hours: int + :ivar utc_offset: The UTC offset in format +/-HH:mm. For example, '+05:30' for IST and '-07:00' + for PST. If not specified, the default is '+00:00'. + :vartype utc_offset: str + :ivar start_date: The date the maintenance window activates. If the current date is before this + date, the maintenance window is inactive and will not be used for upgrades. If not specified, + the maintenance window will be active right away. + :vartype start_date: ~datetime.date + :ivar start_time: The start time of the maintenance window. Accepted values are from '00:00' to + '23:59'. 'utcOffset' applies to this field. For example: '02:00' with 'utcOffset: +02:00' means + UTC time '00:00'. Required. + :vartype start_time: str + :ivar not_allowed_dates: Date ranges on which upgrade is not allowed. 'utcOffset' applies to + this field. For example, with 'utcOffset: +02:00' and 'dateSpan' being '2022-12-23' to + '2023-01-03', maintenance will be blocked from '2022-12-22 22:00' to '2023-01-03 22:00' in UTC + time. + :vartype not_allowed_dates: list[~azure.mgmt.containerservice.models.DateSpan] + """ + + _validation = { + "schedule": {"required": True}, + "duration_hours": {"required": True, "maximum": 24, "minimum": 4}, + "utc_offset": {"pattern": r"^(-|\+)[0-9]{2}:[0-9]{2}$"}, + "start_time": {"required": True, "pattern": r"^\d{2}:\d{2}$"}, + } + + _attribute_map = { + "schedule": {"key": "schedule", "type": "Schedule"}, + "duration_hours": {"key": "durationHours", "type": "int"}, + "utc_offset": {"key": "utcOffset", "type": "str"}, + "start_date": {"key": "startDate", "type": "date"}, + "start_time": {"key": "startTime", "type": "str"}, + "not_allowed_dates": {"key": "notAllowedDates", "type": "[DateSpan]"}, + } + + def __init__( + self, + *, + schedule: "_models.Schedule", + duration_hours: int = 24, + start_time: str, + utc_offset: Optional[str] = None, + start_date: Optional[datetime.date] = None, + not_allowed_dates: Optional[list["_models.DateSpan"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword schedule: Recurrence schedule for the maintenance window. Required. + :paramtype schedule: ~azure.mgmt.containerservice.models.Schedule + :keyword duration_hours: Length of maintenance window range from 4 to 24 hours. + :paramtype duration_hours: int + :keyword utc_offset: The UTC offset in format +/-HH:mm. For example, '+05:30' for IST and + '-07:00' for PST. If not specified, the default is '+00:00'. + :paramtype utc_offset: str + :keyword start_date: The date the maintenance window activates. If the current date is before + this date, the maintenance window is inactive and will not be used for upgrades. If not + specified, the maintenance window will be active right away. + :paramtype start_date: ~datetime.date + :keyword start_time: The start time of the maintenance window. Accepted values are from '00:00' + to '23:59'. 'utcOffset' applies to this field. For example: '02:00' with 'utcOffset: +02:00' + means UTC time '00:00'. Required. + :paramtype start_time: str + :keyword not_allowed_dates: Date ranges on which upgrade is not allowed. 'utcOffset' applies to + this field. For example, with 'utcOffset: +02:00' and 'dateSpan' being '2022-12-23' to + '2023-01-03', maintenance will be blocked from '2022-12-22 22:00' to '2023-01-03 22:00' in UTC + time. + :paramtype not_allowed_dates: list[~azure.mgmt.containerservice.models.DateSpan] + """ + super().__init__(**kwargs) + self.schedule = schedule + self.duration_hours = duration_hours + self.utc_offset = utc_offset + self.start_date = start_date + self.start_time = start_time + self.not_allowed_dates = not_allowed_dates + + +class Resource(_serialization.Model): + """Common fields that are returned in the response for all Azure Resource Manager resources. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.id: Optional[str] = None + self.name: Optional[str] = None + self.type: Optional[str] = None + self.system_data: Optional["_models.SystemData"] = None + + +class TrackedResource(Resource): + """The resource model definition for an Azure Resource Manager tracked top level resource which + has 'tags' and a 'location'. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + :ivar tags: Resource tags. + :vartype tags: dict[str, str] + :ivar location: The geo-location where the resource lives. Required. + :vartype location: str + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + "location": {"required": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "tags": {"key": "tags", "type": "{str}"}, + "location": {"key": "location", "type": "str"}, + } + + def __init__(self, *, location: str, tags: Optional[dict[str, str]] = None, **kwargs: Any) -> None: + """ + :keyword tags: Resource tags. + :paramtype tags: dict[str, str] + :keyword location: The geo-location where the resource lives. Required. + :paramtype location: str + """ + super().__init__(**kwargs) + self.tags = tags + self.location = location + + +class ManagedCluster(TrackedResource): + """Managed cluster. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + :ivar tags: Resource tags. + :vartype tags: dict[str, str] + :ivar location: The geo-location where the resource lives. Required. + :vartype location: str + :ivar e_tag: Unique read-only string used to implement optimistic concurrency. The eTag value + will change when the resource is updated. Specify an if-match or if-none-match header with the + eTag value for a subsequent request to enable optimistic concurrency per the normal eTag + convention. + :vartype e_tag: str + :ivar sku: The managed cluster SKU. + :vartype sku: ~azure.mgmt.containerservice.models.ManagedClusterSKU + :ivar extended_location: The extended location of the Virtual Machine. + :vartype extended_location: ~azure.mgmt.containerservice.models.ExtendedLocation + :ivar identity: The identity of the managed cluster, if configured. + :vartype identity: ~azure.mgmt.containerservice.models.ManagedClusterIdentity + :ivar kind: This is primarily used to expose different UI experiences in the portal for + different kinds. + :vartype kind: str + :ivar provisioning_state: The current provisioning state. + :vartype provisioning_state: str + :ivar power_state: The Power State of the cluster. + :vartype power_state: ~azure.mgmt.containerservice.models.PowerState + :ivar max_agent_pools: The max number of agent pools for the managed cluster. + :vartype max_agent_pools: int + :ivar kubernetes_version: The version of Kubernetes specified by the user. Both patch version + (e.g. 1.20.13) and (e.g. 1.20) are supported. When + is specified, the latest supported GA patch version is chosen automatically. + Updating the cluster with the same once it has been created (e.g. 1.14.x -> 1.14) + will not trigger an upgrade, even if a newer patch version is available. When you upgrade a + supported AKS cluster, Kubernetes minor versions cannot be skipped. All upgrades must be + performed sequentially by major version number. For example, upgrades between 1.14.x -> 1.15.x + or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is not allowed. See `upgrading an AKS + cluster `_ for more details. + :vartype kubernetes_version: str + :ivar current_kubernetes_version: The version of Kubernetes the Managed Cluster is running. If + kubernetesVersion was a fully specified version , this field will be exactly + equal to it. If kubernetesVersion was , this field will contain the full + version being used. + :vartype current_kubernetes_version: str + :ivar dns_prefix: The DNS prefix of the Managed Cluster. This cannot be updated once the + Managed Cluster has been created. + :vartype dns_prefix: str + :ivar fqdn_subdomain: The FQDN subdomain of the private cluster with custom private dns zone. + This cannot be updated once the Managed Cluster has been created. + :vartype fqdn_subdomain: str + :ivar fqdn: The FQDN of the master pool. + :vartype fqdn: str + :ivar private_fqdn: The FQDN of private cluster. + :vartype private_fqdn: str + :ivar azure_portal_fqdn: The special FQDN used by the Azure Portal to access the Managed + Cluster. This FQDN is for use only by the Azure Portal and should not be used by other clients. + The Azure Portal requires certain Cross-Origin Resource Sharing (CORS) headers to be sent in + some responses, which Kubernetes APIServer doesn't handle by default. This special FQDN + supports CORS, allowing the Azure Portal to function properly. + :vartype azure_portal_fqdn: str + :ivar agent_pool_profiles: The agent pool properties. + :vartype agent_pool_profiles: + list[~azure.mgmt.containerservice.models.ManagedClusterAgentPoolProfile] + :ivar linux_profile: The profile for Linux VMs in the Managed Cluster. + :vartype linux_profile: ~azure.mgmt.containerservice.models.ContainerServiceLinuxProfile + :ivar windows_profile: The profile for Windows VMs in the Managed Cluster. + :vartype windows_profile: ~azure.mgmt.containerservice.models.ManagedClusterWindowsProfile + :ivar service_principal_profile: Information about a service principal identity for the cluster + to use for manipulating Azure APIs. + :vartype service_principal_profile: + ~azure.mgmt.containerservice.models.ManagedClusterServicePrincipalProfile + :ivar addon_profiles: The profile of managed cluster add-on. + :vartype addon_profiles: dict[str, + ~azure.mgmt.containerservice.models.ManagedClusterAddonProfile] + :ivar pod_identity_profile: The pod identity profile of the Managed Cluster. See `use AAD pod + identity `_ for more details on + AAD pod identity integration. + :vartype pod_identity_profile: + ~azure.mgmt.containerservice.models.ManagedClusterPodIdentityProfile + :ivar oidc_issuer_profile: The OIDC issuer profile of the Managed Cluster. + :vartype oidc_issuer_profile: + ~azure.mgmt.containerservice.models.ManagedClusterOIDCIssuerProfile + :ivar node_resource_group: The name of the resource group containing agent pool nodes. + :vartype node_resource_group: str + :ivar node_resource_group_profile: Profile of the node resource group configuration. + :vartype node_resource_group_profile: + ~azure.mgmt.containerservice.models.ManagedClusterNodeResourceGroupProfile + :ivar enable_rbac: Whether to enable Kubernetes Role-Based Access Control. + :vartype enable_rbac: bool + :ivar support_plan: The support plan for the Managed Cluster. If unspecified, the default is + 'KubernetesOfficial'. Known values are: "KubernetesOfficial" and "AKSLongTermSupport". + :vartype support_plan: str or ~azure.mgmt.containerservice.models.KubernetesSupportPlan + :ivar network_profile: The network configuration profile. + :vartype network_profile: ~azure.mgmt.containerservice.models.ContainerServiceNetworkProfile + :ivar aad_profile: The Azure Active Directory configuration. + :vartype aad_profile: ~azure.mgmt.containerservice.models.ManagedClusterAADProfile + :ivar auto_upgrade_profile: The auto upgrade configuration. + :vartype auto_upgrade_profile: + ~azure.mgmt.containerservice.models.ManagedClusterAutoUpgradeProfile + :ivar upgrade_settings: Settings for upgrading a cluster. + :vartype upgrade_settings: ~azure.mgmt.containerservice.models.ClusterUpgradeSettings + :ivar auto_scaler_profile: Parameters to be applied to the cluster-autoscaler when enabled. + :vartype auto_scaler_profile: + ~azure.mgmt.containerservice.models.ManagedClusterPropertiesAutoScalerProfile + :ivar api_server_access_profile: The access profile for managed cluster API server. + :vartype api_server_access_profile: + ~azure.mgmt.containerservice.models.ManagedClusterAPIServerAccessProfile + :ivar disk_encryption_set_id: The Resource ID of the disk encryption set to use for enabling + encryption at rest. This is of the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}'. + :vartype disk_encryption_set_id: str + :ivar identity_profile: The user identity associated with the managed cluster. This identity + will be used by the kubelet. Only one user assigned identity is allowed. The only accepted key + is "kubeletidentity", with value of "resourceId": + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}". + :vartype identity_profile: dict[str, ~azure.mgmt.containerservice.models.UserAssignedIdentity] + :ivar private_link_resources: Private link resources associated with the cluster. + :vartype private_link_resources: list[~azure.mgmt.containerservice.models.PrivateLinkResource] + :ivar disable_local_accounts: If local accounts should be disabled on the Managed Cluster. If + set to true, getting static credentials will be disabled for this cluster. This must only be + used on Managed Clusters that are AAD enabled. For more details see `disable local accounts + `_. + :vartype disable_local_accounts: bool + :ivar http_proxy_config: Configurations for provisioning the cluster with HTTP proxy servers. + :vartype http_proxy_config: ~azure.mgmt.containerservice.models.ManagedClusterHTTPProxyConfig + :ivar security_profile: Security profile for the managed cluster. + :vartype security_profile: ~azure.mgmt.containerservice.models.ManagedClusterSecurityProfile + :ivar storage_profile: Storage profile for the managed cluster. + :vartype storage_profile: ~azure.mgmt.containerservice.models.ManagedClusterStorageProfile + :ivar ingress_profile: Ingress profile for the managed cluster. + :vartype ingress_profile: ~azure.mgmt.containerservice.models.ManagedClusterIngressProfile + :ivar public_network_access: PublicNetworkAccess of the managedCluster. Allow or deny public + network access for AKS. Known values are: "Enabled" and "Disabled". + :vartype public_network_access: str or ~azure.mgmt.containerservice.models.PublicNetworkAccess + :ivar workload_auto_scaler_profile: Workload Auto-scaler profile for the managed cluster. + :vartype workload_auto_scaler_profile: + ~azure.mgmt.containerservice.models.ManagedClusterWorkloadAutoScalerProfile + :ivar azure_monitor_profile: Azure Monitor addon profiles for monitoring the managed cluster. + :vartype azure_monitor_profile: + ~azure.mgmt.containerservice.models.ManagedClusterAzureMonitorProfile + :ivar service_mesh_profile: Service mesh profile for a managed cluster. + :vartype service_mesh_profile: ~azure.mgmt.containerservice.models.ServiceMeshProfile + :ivar resource_uid: The resourceUID uniquely identifies ManagedClusters that reuse ARM + ResourceIds (i.e: create, delete, create sequence). + :vartype resource_uid: str + :ivar metrics_profile: Optional cluster metrics configuration. + :vartype metrics_profile: ~azure.mgmt.containerservice.models.ManagedClusterMetricsProfile + :ivar node_provisioning_profile: Node provisioning settings that apply to the whole cluster. + :vartype node_provisioning_profile: + ~azure.mgmt.containerservice.models.ManagedClusterNodeProvisioningProfile + :ivar bootstrap_profile: Profile of the cluster bootstrap configuration. + :vartype bootstrap_profile: ~azure.mgmt.containerservice.models.ManagedClusterBootstrapProfile + :ivar ai_toolchain_operator_profile: AI toolchain operator settings that apply to the whole + cluster. + :vartype ai_toolchain_operator_profile: + ~azure.mgmt.containerservice.models.ManagedClusterAIToolchainOperatorProfile + :ivar status: Contains read-only information about the Managed Cluster. + :vartype status: ~azure.mgmt.containerservice.models.ManagedClusterStatus + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + "location": {"required": True}, + "e_tag": {"readonly": True}, + "provisioning_state": {"readonly": True}, + "power_state": {"readonly": True}, + "max_agent_pools": {"readonly": True}, + "current_kubernetes_version": {"readonly": True}, + "fqdn": {"readonly": True}, + "private_fqdn": {"readonly": True}, + "azure_portal_fqdn": {"readonly": True}, + "resource_uid": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "tags": {"key": "tags", "type": "{str}"}, + "location": {"key": "location", "type": "str"}, + "e_tag": {"key": "eTag", "type": "str"}, + "sku": {"key": "sku", "type": "ManagedClusterSKU"}, + "extended_location": {"key": "extendedLocation", "type": "ExtendedLocation"}, + "identity": {"key": "identity", "type": "ManagedClusterIdentity"}, + "kind": {"key": "kind", "type": "str"}, + "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, + "power_state": {"key": "properties.powerState", "type": "PowerState"}, + "max_agent_pools": {"key": "properties.maxAgentPools", "type": "int"}, + "kubernetes_version": {"key": "properties.kubernetesVersion", "type": "str"}, + "current_kubernetes_version": {"key": "properties.currentKubernetesVersion", "type": "str"}, + "dns_prefix": {"key": "properties.dnsPrefix", "type": "str"}, + "fqdn_subdomain": {"key": "properties.fqdnSubdomain", "type": "str"}, + "fqdn": {"key": "properties.fqdn", "type": "str"}, + "private_fqdn": {"key": "properties.privateFQDN", "type": "str"}, + "azure_portal_fqdn": {"key": "properties.azurePortalFQDN", "type": "str"}, + "agent_pool_profiles": {"key": "properties.agentPoolProfiles", "type": "[ManagedClusterAgentPoolProfile]"}, + "linux_profile": {"key": "properties.linuxProfile", "type": "ContainerServiceLinuxProfile"}, + "windows_profile": {"key": "properties.windowsProfile", "type": "ManagedClusterWindowsProfile"}, + "service_principal_profile": { + "key": "properties.servicePrincipalProfile", + "type": "ManagedClusterServicePrincipalProfile", + }, + "addon_profiles": {"key": "properties.addonProfiles", "type": "{ManagedClusterAddonProfile}"}, + "pod_identity_profile": {"key": "properties.podIdentityProfile", "type": "ManagedClusterPodIdentityProfile"}, + "oidc_issuer_profile": {"key": "properties.oidcIssuerProfile", "type": "ManagedClusterOIDCIssuerProfile"}, + "node_resource_group": {"key": "properties.nodeResourceGroup", "type": "str"}, + "node_resource_group_profile": { + "key": "properties.nodeResourceGroupProfile", + "type": "ManagedClusterNodeResourceGroupProfile", + }, + "enable_rbac": {"key": "properties.enableRBAC", "type": "bool"}, + "support_plan": {"key": "properties.supportPlan", "type": "str"}, + "network_profile": {"key": "properties.networkProfile", "type": "ContainerServiceNetworkProfile"}, + "aad_profile": {"key": "properties.aadProfile", "type": "ManagedClusterAADProfile"}, + "auto_upgrade_profile": {"key": "properties.autoUpgradeProfile", "type": "ManagedClusterAutoUpgradeProfile"}, + "upgrade_settings": {"key": "properties.upgradeSettings", "type": "ClusterUpgradeSettings"}, + "auto_scaler_profile": { + "key": "properties.autoScalerProfile", + "type": "ManagedClusterPropertiesAutoScalerProfile", + }, + "api_server_access_profile": { + "key": "properties.apiServerAccessProfile", + "type": "ManagedClusterAPIServerAccessProfile", + }, + "disk_encryption_set_id": {"key": "properties.diskEncryptionSetID", "type": "str"}, + "identity_profile": {"key": "properties.identityProfile", "type": "{UserAssignedIdentity}"}, + "private_link_resources": {"key": "properties.privateLinkResources", "type": "[PrivateLinkResource]"}, + "disable_local_accounts": {"key": "properties.disableLocalAccounts", "type": "bool"}, + "http_proxy_config": {"key": "properties.httpProxyConfig", "type": "ManagedClusterHTTPProxyConfig"}, + "security_profile": {"key": "properties.securityProfile", "type": "ManagedClusterSecurityProfile"}, + "storage_profile": {"key": "properties.storageProfile", "type": "ManagedClusterStorageProfile"}, + "ingress_profile": {"key": "properties.ingressProfile", "type": "ManagedClusterIngressProfile"}, + "public_network_access": {"key": "properties.publicNetworkAccess", "type": "str"}, + "workload_auto_scaler_profile": { + "key": "properties.workloadAutoScalerProfile", + "type": "ManagedClusterWorkloadAutoScalerProfile", + }, + "azure_monitor_profile": {"key": "properties.azureMonitorProfile", "type": "ManagedClusterAzureMonitorProfile"}, + "service_mesh_profile": {"key": "properties.serviceMeshProfile", "type": "ServiceMeshProfile"}, + "resource_uid": {"key": "properties.resourceUID", "type": "str"}, + "metrics_profile": {"key": "properties.metricsProfile", "type": "ManagedClusterMetricsProfile"}, + "node_provisioning_profile": { + "key": "properties.nodeProvisioningProfile", + "type": "ManagedClusterNodeProvisioningProfile", + }, + "bootstrap_profile": {"key": "properties.bootstrapProfile", "type": "ManagedClusterBootstrapProfile"}, + "ai_toolchain_operator_profile": { + "key": "properties.aiToolchainOperatorProfile", + "type": "ManagedClusterAIToolchainOperatorProfile", + }, + "status": {"key": "properties.status", "type": "ManagedClusterStatus"}, + } + + def __init__( # pylint: disable=too-many-locals + self, + *, + location: str, + tags: Optional[dict[str, str]] = None, + sku: Optional["_models.ManagedClusterSKU"] = None, + extended_location: Optional["_models.ExtendedLocation"] = None, + identity: Optional["_models.ManagedClusterIdentity"] = None, + kind: Optional[str] = None, + kubernetes_version: Optional[str] = None, + dns_prefix: Optional[str] = None, + fqdn_subdomain: Optional[str] = None, + agent_pool_profiles: Optional[list["_models.ManagedClusterAgentPoolProfile"]] = None, + linux_profile: Optional["_models.ContainerServiceLinuxProfile"] = None, + windows_profile: Optional["_models.ManagedClusterWindowsProfile"] = None, + service_principal_profile: Optional["_models.ManagedClusterServicePrincipalProfile"] = None, + addon_profiles: Optional[dict[str, "_models.ManagedClusterAddonProfile"]] = None, + pod_identity_profile: Optional["_models.ManagedClusterPodIdentityProfile"] = None, + oidc_issuer_profile: Optional["_models.ManagedClusterOIDCIssuerProfile"] = None, + node_resource_group: Optional[str] = None, + node_resource_group_profile: Optional["_models.ManagedClusterNodeResourceGroupProfile"] = None, + enable_rbac: Optional[bool] = None, + support_plan: Optional[Union[str, "_models.KubernetesSupportPlan"]] = None, + network_profile: Optional["_models.ContainerServiceNetworkProfile"] = None, + aad_profile: Optional["_models.ManagedClusterAADProfile"] = None, + auto_upgrade_profile: Optional["_models.ManagedClusterAutoUpgradeProfile"] = None, + upgrade_settings: Optional["_models.ClusterUpgradeSettings"] = None, + auto_scaler_profile: Optional["_models.ManagedClusterPropertiesAutoScalerProfile"] = None, + api_server_access_profile: Optional["_models.ManagedClusterAPIServerAccessProfile"] = None, + disk_encryption_set_id: Optional[str] = None, + identity_profile: Optional[dict[str, "_models.UserAssignedIdentity"]] = None, + private_link_resources: Optional[list["_models.PrivateLinkResource"]] = None, + disable_local_accounts: Optional[bool] = None, + http_proxy_config: Optional["_models.ManagedClusterHTTPProxyConfig"] = None, + security_profile: Optional["_models.ManagedClusterSecurityProfile"] = None, + storage_profile: Optional["_models.ManagedClusterStorageProfile"] = None, + ingress_profile: Optional["_models.ManagedClusterIngressProfile"] = None, + public_network_access: Optional[Union[str, "_models.PublicNetworkAccess"]] = None, + workload_auto_scaler_profile: Optional["_models.ManagedClusterWorkloadAutoScalerProfile"] = None, + azure_monitor_profile: Optional["_models.ManagedClusterAzureMonitorProfile"] = None, + service_mesh_profile: Optional["_models.ServiceMeshProfile"] = None, + metrics_profile: Optional["_models.ManagedClusterMetricsProfile"] = None, + node_provisioning_profile: Optional["_models.ManagedClusterNodeProvisioningProfile"] = None, + bootstrap_profile: Optional["_models.ManagedClusterBootstrapProfile"] = None, + ai_toolchain_operator_profile: Optional["_models.ManagedClusterAIToolchainOperatorProfile"] = None, + status: Optional["_models.ManagedClusterStatus"] = None, + **kwargs: Any + ) -> None: + """ + :keyword tags: Resource tags. + :paramtype tags: dict[str, str] + :keyword location: The geo-location where the resource lives. Required. + :paramtype location: str + :keyword sku: The managed cluster SKU. + :paramtype sku: ~azure.mgmt.containerservice.models.ManagedClusterSKU + :keyword extended_location: The extended location of the Virtual Machine. + :paramtype extended_location: ~azure.mgmt.containerservice.models.ExtendedLocation + :keyword identity: The identity of the managed cluster, if configured. + :paramtype identity: ~azure.mgmt.containerservice.models.ManagedClusterIdentity + :keyword kind: This is primarily used to expose different UI experiences in the portal for + different kinds. + :paramtype kind: str + :keyword kubernetes_version: The version of Kubernetes specified by the user. Both patch + version (e.g. 1.20.13) and (e.g. 1.20) are supported. When + is specified, the latest supported GA patch version is chosen automatically. + Updating the cluster with the same once it has been created (e.g. 1.14.x -> 1.14) + will not trigger an upgrade, even if a newer patch version is available. When you upgrade a + supported AKS cluster, Kubernetes minor versions cannot be skipped. All upgrades must be + performed sequentially by major version number. For example, upgrades between 1.14.x -> 1.15.x + or 1.15.x -> 1.16.x are allowed, however 1.14.x -> 1.16.x is not allowed. See `upgrading an AKS + cluster `_ for more details. + :paramtype kubernetes_version: str + :keyword dns_prefix: The DNS prefix of the Managed Cluster. This cannot be updated once the + Managed Cluster has been created. + :paramtype dns_prefix: str + :keyword fqdn_subdomain: The FQDN subdomain of the private cluster with custom private dns + zone. This cannot be updated once the Managed Cluster has been created. + :paramtype fqdn_subdomain: str + :keyword agent_pool_profiles: The agent pool properties. + :paramtype agent_pool_profiles: + list[~azure.mgmt.containerservice.models.ManagedClusterAgentPoolProfile] + :keyword linux_profile: The profile for Linux VMs in the Managed Cluster. + :paramtype linux_profile: ~azure.mgmt.containerservice.models.ContainerServiceLinuxProfile + :keyword windows_profile: The profile for Windows VMs in the Managed Cluster. + :paramtype windows_profile: ~azure.mgmt.containerservice.models.ManagedClusterWindowsProfile + :keyword service_principal_profile: Information about a service principal identity for the + cluster to use for manipulating Azure APIs. + :paramtype service_principal_profile: + ~azure.mgmt.containerservice.models.ManagedClusterServicePrincipalProfile + :keyword addon_profiles: The profile of managed cluster add-on. + :paramtype addon_profiles: dict[str, + ~azure.mgmt.containerservice.models.ManagedClusterAddonProfile] + :keyword pod_identity_profile: The pod identity profile of the Managed Cluster. See `use AAD + pod identity `_ for more + details on AAD pod identity integration. + :paramtype pod_identity_profile: + ~azure.mgmt.containerservice.models.ManagedClusterPodIdentityProfile + :keyword oidc_issuer_profile: The OIDC issuer profile of the Managed Cluster. + :paramtype oidc_issuer_profile: + ~azure.mgmt.containerservice.models.ManagedClusterOIDCIssuerProfile + :keyword node_resource_group: The name of the resource group containing agent pool nodes. + :paramtype node_resource_group: str + :keyword node_resource_group_profile: Profile of the node resource group configuration. + :paramtype node_resource_group_profile: + ~azure.mgmt.containerservice.models.ManagedClusterNodeResourceGroupProfile + :keyword enable_rbac: Whether to enable Kubernetes Role-Based Access Control. + :paramtype enable_rbac: bool + :keyword support_plan: The support plan for the Managed Cluster. If unspecified, the default is + 'KubernetesOfficial'. Known values are: "KubernetesOfficial" and "AKSLongTermSupport". + :paramtype support_plan: str or ~azure.mgmt.containerservice.models.KubernetesSupportPlan + :keyword network_profile: The network configuration profile. + :paramtype network_profile: ~azure.mgmt.containerservice.models.ContainerServiceNetworkProfile + :keyword aad_profile: The Azure Active Directory configuration. + :paramtype aad_profile: ~azure.mgmt.containerservice.models.ManagedClusterAADProfile + :keyword auto_upgrade_profile: The auto upgrade configuration. + :paramtype auto_upgrade_profile: + ~azure.mgmt.containerservice.models.ManagedClusterAutoUpgradeProfile + :keyword upgrade_settings: Settings for upgrading a cluster. + :paramtype upgrade_settings: ~azure.mgmt.containerservice.models.ClusterUpgradeSettings + :keyword auto_scaler_profile: Parameters to be applied to the cluster-autoscaler when enabled. + :paramtype auto_scaler_profile: + ~azure.mgmt.containerservice.models.ManagedClusterPropertiesAutoScalerProfile + :keyword api_server_access_profile: The access profile for managed cluster API server. + :paramtype api_server_access_profile: + ~azure.mgmt.containerservice.models.ManagedClusterAPIServerAccessProfile + :keyword disk_encryption_set_id: The Resource ID of the disk encryption set to use for enabling + encryption at rest. This is of the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}'. + :paramtype disk_encryption_set_id: str + :keyword identity_profile: The user identity associated with the managed cluster. This identity + will be used by the kubelet. Only one user assigned identity is allowed. The only accepted key + is "kubeletidentity", with value of "resourceId": + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}". + :paramtype identity_profile: dict[str, + ~azure.mgmt.containerservice.models.UserAssignedIdentity] + :keyword private_link_resources: Private link resources associated with the cluster. + :paramtype private_link_resources: + list[~azure.mgmt.containerservice.models.PrivateLinkResource] + :keyword disable_local_accounts: If local accounts should be disabled on the Managed Cluster. + If set to true, getting static credentials will be disabled for this cluster. This must only be + used on Managed Clusters that are AAD enabled. For more details see `disable local accounts + `_. + :paramtype disable_local_accounts: bool + :keyword http_proxy_config: Configurations for provisioning the cluster with HTTP proxy + servers. + :paramtype http_proxy_config: ~azure.mgmt.containerservice.models.ManagedClusterHTTPProxyConfig + :keyword security_profile: Security profile for the managed cluster. + :paramtype security_profile: ~azure.mgmt.containerservice.models.ManagedClusterSecurityProfile + :keyword storage_profile: Storage profile for the managed cluster. + :paramtype storage_profile: ~azure.mgmt.containerservice.models.ManagedClusterStorageProfile + :keyword ingress_profile: Ingress profile for the managed cluster. + :paramtype ingress_profile: ~azure.mgmt.containerservice.models.ManagedClusterIngressProfile + :keyword public_network_access: PublicNetworkAccess of the managedCluster. Allow or deny public + network access for AKS. Known values are: "Enabled" and "Disabled". + :paramtype public_network_access: str or + ~azure.mgmt.containerservice.models.PublicNetworkAccess + :keyword workload_auto_scaler_profile: Workload Auto-scaler profile for the managed cluster. + :paramtype workload_auto_scaler_profile: + ~azure.mgmt.containerservice.models.ManagedClusterWorkloadAutoScalerProfile + :keyword azure_monitor_profile: Azure Monitor addon profiles for monitoring the managed + cluster. + :paramtype azure_monitor_profile: + ~azure.mgmt.containerservice.models.ManagedClusterAzureMonitorProfile + :keyword service_mesh_profile: Service mesh profile for a managed cluster. + :paramtype service_mesh_profile: ~azure.mgmt.containerservice.models.ServiceMeshProfile + :keyword metrics_profile: Optional cluster metrics configuration. + :paramtype metrics_profile: ~azure.mgmt.containerservice.models.ManagedClusterMetricsProfile + :keyword node_provisioning_profile: Node provisioning settings that apply to the whole cluster. + :paramtype node_provisioning_profile: + ~azure.mgmt.containerservice.models.ManagedClusterNodeProvisioningProfile + :keyword bootstrap_profile: Profile of the cluster bootstrap configuration. + :paramtype bootstrap_profile: + ~azure.mgmt.containerservice.models.ManagedClusterBootstrapProfile + :keyword ai_toolchain_operator_profile: AI toolchain operator settings that apply to the whole + cluster. + :paramtype ai_toolchain_operator_profile: + ~azure.mgmt.containerservice.models.ManagedClusterAIToolchainOperatorProfile + :keyword status: Contains read-only information about the Managed Cluster. + :paramtype status: ~azure.mgmt.containerservice.models.ManagedClusterStatus + """ + super().__init__(tags=tags, location=location, **kwargs) + self.e_tag: Optional[str] = None + self.sku = sku + self.extended_location = extended_location + self.identity = identity + self.kind = kind + self.provisioning_state: Optional[str] = None + self.power_state: Optional["_models.PowerState"] = None + self.max_agent_pools: Optional[int] = None + self.kubernetes_version = kubernetes_version + self.current_kubernetes_version: Optional[str] = None + self.dns_prefix = dns_prefix + self.fqdn_subdomain = fqdn_subdomain + self.fqdn: Optional[str] = None + self.private_fqdn: Optional[str] = None + self.azure_portal_fqdn: Optional[str] = None + self.agent_pool_profiles = agent_pool_profiles + self.linux_profile = linux_profile + self.windows_profile = windows_profile + self.service_principal_profile = service_principal_profile + self.addon_profiles = addon_profiles + self.pod_identity_profile = pod_identity_profile + self.oidc_issuer_profile = oidc_issuer_profile + self.node_resource_group = node_resource_group + self.node_resource_group_profile = node_resource_group_profile + self.enable_rbac = enable_rbac + self.support_plan = support_plan + self.network_profile = network_profile + self.aad_profile = aad_profile + self.auto_upgrade_profile = auto_upgrade_profile + self.upgrade_settings = upgrade_settings + self.auto_scaler_profile = auto_scaler_profile + self.api_server_access_profile = api_server_access_profile + self.disk_encryption_set_id = disk_encryption_set_id + self.identity_profile = identity_profile + self.private_link_resources = private_link_resources + self.disable_local_accounts = disable_local_accounts + self.http_proxy_config = http_proxy_config + self.security_profile = security_profile + self.storage_profile = storage_profile + self.ingress_profile = ingress_profile + self.public_network_access = public_network_access + self.workload_auto_scaler_profile = workload_auto_scaler_profile + self.azure_monitor_profile = azure_monitor_profile + self.service_mesh_profile = service_mesh_profile + self.resource_uid: Optional[str] = None + self.metrics_profile = metrics_profile + self.node_provisioning_profile = node_provisioning_profile + self.bootstrap_profile = bootstrap_profile + self.ai_toolchain_operator_profile = ai_toolchain_operator_profile + self.status = status + + +class ManagedClusterAADProfile(_serialization.Model): + """AADProfile specifies attributes for Azure Active Directory integration. For more details see + `managed AAD on AKS `_. + + :ivar managed: Whether to enable managed AAD. + :vartype managed: bool + :ivar enable_azure_rbac: Whether to enable Azure RBAC for Kubernetes authorization. + :vartype enable_azure_rbac: bool + :ivar admin_group_object_i_ds: The list of AAD group object IDs that will have admin role of + the cluster. + :vartype admin_group_object_i_ds: list[str] + :ivar client_app_id: (DEPRECATED) The client AAD application ID. Learn more at + https://aka.ms/aks/aad-legacy. + :vartype client_app_id: str + :ivar server_app_id: (DEPRECATED) The server AAD application ID. Learn more at + https://aka.ms/aks/aad-legacy. + :vartype server_app_id: str + :ivar server_app_secret: (DEPRECATED) The server AAD application secret. Learn more at + https://aka.ms/aks/aad-legacy. + :vartype server_app_secret: str + :ivar tenant_id: The AAD tenant ID to use for authentication. If not specified, will use the + tenant of the deployment subscription. + :vartype tenant_id: str + """ + + _attribute_map = { + "managed": {"key": "managed", "type": "bool"}, + "enable_azure_rbac": {"key": "enableAzureRBAC", "type": "bool"}, + "admin_group_object_i_ds": {"key": "adminGroupObjectIDs", "type": "[str]"}, + "client_app_id": {"key": "clientAppID", "type": "str"}, + "server_app_id": {"key": "serverAppID", "type": "str"}, + "server_app_secret": {"key": "serverAppSecret", "type": "str"}, + "tenant_id": {"key": "tenantID", "type": "str"}, + } + + def __init__( + self, + *, + managed: Optional[bool] = None, + enable_azure_rbac: Optional[bool] = None, + admin_group_object_i_ds: Optional[list[str]] = None, + client_app_id: Optional[str] = None, + server_app_id: Optional[str] = None, + server_app_secret: Optional[str] = None, + tenant_id: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword managed: Whether to enable managed AAD. + :paramtype managed: bool + :keyword enable_azure_rbac: Whether to enable Azure RBAC for Kubernetes authorization. + :paramtype enable_azure_rbac: bool + :keyword admin_group_object_i_ds: The list of AAD group object IDs that will have admin role of + the cluster. + :paramtype admin_group_object_i_ds: list[str] + :keyword client_app_id: (DEPRECATED) The client AAD application ID. Learn more at + https://aka.ms/aks/aad-legacy. + :paramtype client_app_id: str + :keyword server_app_id: (DEPRECATED) The server AAD application ID. Learn more at + https://aka.ms/aks/aad-legacy. + :paramtype server_app_id: str + :keyword server_app_secret: (DEPRECATED) The server AAD application secret. Learn more at + https://aka.ms/aks/aad-legacy. + :paramtype server_app_secret: str + :keyword tenant_id: The AAD tenant ID to use for authentication. If not specified, will use the + tenant of the deployment subscription. + :paramtype tenant_id: str + """ + super().__init__(**kwargs) + self.managed = managed + self.enable_azure_rbac = enable_azure_rbac + self.admin_group_object_i_ds = admin_group_object_i_ds + self.client_app_id = client_app_id + self.server_app_id = server_app_id + self.server_app_secret = server_app_secret + self.tenant_id = tenant_id + + +class ManagedClusterAccessProfile(TrackedResource): + """Managed cluster Access Profile. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + :ivar tags: Resource tags. + :vartype tags: dict[str, str] + :ivar location: The geo-location where the resource lives. Required. + :vartype location: str + :ivar kube_config: Base64-encoded Kubernetes configuration file. + :vartype kube_config: bytes + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + "location": {"required": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "tags": {"key": "tags", "type": "{str}"}, + "location": {"key": "location", "type": "str"}, + "kube_config": {"key": "properties.kubeConfig", "type": "bytearray"}, + } + + def __init__( + self, + *, + location: str, + tags: Optional[dict[str, str]] = None, + kube_config: Optional[bytes] = None, + **kwargs: Any + ) -> None: + """ + :keyword tags: Resource tags. + :paramtype tags: dict[str, str] + :keyword location: The geo-location where the resource lives. Required. + :paramtype location: str + :keyword kube_config: Base64-encoded Kubernetes configuration file. + :paramtype kube_config: bytes + """ + super().__init__(tags=tags, location=location, **kwargs) + self.kube_config = kube_config + + +class ManagedClusterAddonProfile(_serialization.Model): + """A Kubernetes add-on profile for a managed cluster. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar enabled: Whether the add-on is enabled or not. Required. + :vartype enabled: bool + :ivar config: Key-value pairs for configuring an add-on. + :vartype config: dict[str, str] + :ivar identity: Information of user assigned identity used by this add-on. + :vartype identity: ~azure.mgmt.containerservice.models.ManagedClusterAddonProfileIdentity + """ + + _validation = { + "enabled": {"required": True}, + "identity": {"readonly": True}, + } + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + "config": {"key": "config", "type": "{str}"}, + "identity": {"key": "identity", "type": "ManagedClusterAddonProfileIdentity"}, + } + + def __init__(self, *, enabled: bool, config: Optional[dict[str, str]] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether the add-on is enabled or not. Required. + :paramtype enabled: bool + :keyword config: Key-value pairs for configuring an add-on. + :paramtype config: dict[str, str] + """ + super().__init__(**kwargs) + self.enabled = enabled + self.config = config + self.identity: Optional["_models.ManagedClusterAddonProfileIdentity"] = None + + +class UserAssignedIdentity(_serialization.Model): + """Details about a user assigned identity. + + :ivar resource_id: The resource ID of the user assigned identity. + :vartype resource_id: str + :ivar client_id: The client ID of the user assigned identity. + :vartype client_id: str + :ivar object_id: The object ID of the user assigned identity. + :vartype object_id: str + """ + + _attribute_map = { + "resource_id": {"key": "resourceId", "type": "str"}, + "client_id": {"key": "clientId", "type": "str"}, + "object_id": {"key": "objectId", "type": "str"}, + } + + def __init__( + self, + *, + resource_id: Optional[str] = None, + client_id: Optional[str] = None, + object_id: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword resource_id: The resource ID of the user assigned identity. + :paramtype resource_id: str + :keyword client_id: The client ID of the user assigned identity. + :paramtype client_id: str + :keyword object_id: The object ID of the user assigned identity. + :paramtype object_id: str + """ + super().__init__(**kwargs) + self.resource_id = resource_id + self.client_id = client_id + self.object_id = object_id + + +class ManagedClusterAddonProfileIdentity(UserAssignedIdentity): + """Information of user assigned identity used by this add-on. + + :ivar resource_id: The resource ID of the user assigned identity. + :vartype resource_id: str + :ivar client_id: The client ID of the user assigned identity. + :vartype client_id: str + :ivar object_id: The object ID of the user assigned identity. + :vartype object_id: str + """ + + +class ManagedClusterAgentPoolProfileProperties(_serialization.Model): + """Properties for the container service agent pool profile. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar e_tag: Unique read-only string used to implement optimistic concurrency. The eTag value + will change when the resource is updated. Specify an if-match or if-none-match header with the + eTag value for a subsequent request to enable optimistic concurrency per the normal eTag + convention. + :vartype e_tag: str + :ivar count: Number of agents (VMs) to host docker containers. Allowed values must be in the + range of 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for + system pools. The default value is 1. + :vartype count: int + :ivar vm_size: The size of the agent pool VMs. VM size availability varies by region. If a node + contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. + For more details on restricted VM sizes, see: + https://docs.microsoft.com/azure/aks/quotas-skus-regions. + :vartype vm_size: str + :ivar os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every machine + in the master/agent pool. If you specify 0, it will apply the default osDisk size according to + the vmSize specified. + :vartype os_disk_size_gb: int + :ivar os_disk_type: The OS disk type to be used for machines in the agent pool. The default is + 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. + Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see + `Ephemeral OS `_. + Known values are: "Managed" and "Ephemeral". + :vartype os_disk_type: str or ~azure.mgmt.containerservice.models.OSDiskType + :ivar kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data + root, and Kubelet ephemeral storage. Known values are: "OS" and "Temporary". + :vartype kubelet_disk_type: str or ~azure.mgmt.containerservice.models.KubeletDiskType + :ivar workload_runtime: Determines the type of workload a node can run. Known values are: + "OCIContainer", "WasmWasi", and "KataVmIsolation". + :vartype workload_runtime: str or ~azure.mgmt.containerservice.models.WorkloadRuntime + :ivar message_of_the_day: Message of the day for Linux nodes, base64-encoded. A base64-encoded + string which will be written to /etc/motd after decoding. This allows customization of the + message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a + static string (i.e., will be printed raw and not be executed as a script). + :vartype message_of_the_day: str + :ivar vnet_subnet_id: The ID of the subnet which agent pool nodes and optionally pods will join + on startup. If this is not specified, a VNET and subnet will be generated and used. If no + podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :vartype vnet_subnet_id: str + :ivar pod_subnet_id: The ID of the subnet which pods will join when launched. If omitted, pod + IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of + the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :vartype pod_subnet_id: str + :ivar pod_ip_allocation_mode: Pod IP Allocation Mode. The IP allocation mode for pods in the + agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'. Known values + are: "DynamicIndividual" and "StaticBlock". + :vartype pod_ip_allocation_mode: str or ~azure.mgmt.containerservice.models.PodIPAllocationMode + :ivar max_pods: The maximum number of pods that can run on a node. + :vartype max_pods: int + :ivar os_type: The operating system type. The default is Linux. Known values are: "Linux" and + "Windows". + :vartype os_type: str or ~azure.mgmt.containerservice.models.OSType + :ivar os_sku: Specifies the OS SKU used by the agent pool. The default is Ubuntu if OSType is + Linux. The default is Windows2019 when Kubernetes <= 1.24 or Windows2022 when Kubernetes >= + 1.25 if OSType is Windows. Known values are: "Ubuntu", "AzureLinux", "AzureLinux3", + "CBLMariner", "Windows2019", "Windows2022", "Ubuntu2204", and "Ubuntu2404". + :vartype os_sku: str or ~azure.mgmt.containerservice.models.OSSKU + :ivar max_count: The maximum number of nodes for auto-scaling. + :vartype max_count: int + :ivar min_count: The minimum number of nodes for auto-scaling. + :vartype min_count: int + :ivar enable_auto_scaling: Whether to enable auto-scaler. + :vartype enable_auto_scaling: bool + :ivar scale_down_mode: The scale down mode to use when scaling the Agent Pool. This also + effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Known values + are: "Delete" and "Deallocate". + :vartype scale_down_mode: str or ~azure.mgmt.containerservice.models.ScaleDownMode + :ivar type: The type of Agent Pool. Known values are: "VirtualMachineScaleSets", + "AvailabilitySet", and "VirtualMachines". + :vartype type: str or ~azure.mgmt.containerservice.models.AgentPoolType + :ivar mode: The mode of an agent pool. A cluster must have at least one 'System' Agent Pool at + all times. For additional information on agent pool restrictions and best practices, see: + https://docs.microsoft.com/azure/aks/use-system-pools. Known values are: "System", "User", and + "Gateway". + :vartype mode: str or ~azure.mgmt.containerservice.models.AgentPoolMode + :ivar orchestrator_version: The version of Kubernetes specified by the user. Both patch version + (e.g. 1.20.13) and (e.g. 1.20) are supported. When + is specified, the latest supported GA patch version is chosen automatically. + Updating the cluster with the same once it has been created (e.g. 1.14.x -> 1.14) + will not trigger an upgrade, even if a newer patch version is available. As a best practice, + you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node + pool version must have the same major version as the control plane. The node pool minor version + must be within two minor versions of the control plane version. The node pool version cannot be + greater than the control plane version. For more information see `upgrading a node pool + `_. + :vartype orchestrator_version: str + :ivar current_orchestrator_version: The version of Kubernetes the Agent Pool is running. If + orchestratorVersion is a fully specified version , this field will be + exactly equal to it. If orchestratorVersion is , this field will contain the full + version being used. + :vartype current_orchestrator_version: str + :ivar node_image_version: The version of node image. + :vartype node_image_version: str + :ivar upgrade_settings: Settings for upgrading the agentpool. + :vartype upgrade_settings: ~azure.mgmt.containerservice.models.AgentPoolUpgradeSettings + :ivar provisioning_state: The current deployment or provisioning state. + :vartype provisioning_state: str + :ivar power_state: Whether the Agent Pool is running or stopped. When an Agent Pool is first + created it is initially Running. The Agent Pool can be stopped by setting this field to + Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An + Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. + :vartype power_state: ~azure.mgmt.containerservice.models.PowerState + :ivar availability_zones: The list of Availability zones to use for nodes. This can only be + specified if the AgentPoolType property is 'VirtualMachineScaleSets'. + :vartype availability_zones: list[str] + :ivar enable_node_public_ip: Whether each node is allocated its own public IP. Some scenarios + may require nodes in a node pool to receive their own dedicated public IP addresses. A common + scenario is for gaming workloads, where a console needs to make a direct connection to a cloud + virtual machine to minimize hops. For more information see `assigning a public IP per node + `_. + The default is false. + :vartype enable_node_public_ip: bool + :ivar node_public_ip_prefix_id: The public IP prefix ID which VM nodes should use IPs from. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. + :vartype node_public_ip_prefix_id: str + :ivar scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default + is 'Regular'. Known values are: "Spot" and "Regular". + :vartype scale_set_priority: str or ~azure.mgmt.containerservice.models.ScaleSetPriority + :ivar scale_set_eviction_policy: The Virtual Machine Scale Set eviction policy to use. This + cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is + 'Delete'. Known values are: "Delete" and "Deallocate". + :vartype scale_set_eviction_policy: str or + ~azure.mgmt.containerservice.models.ScaleSetEvictionPolicy + :ivar spot_max_price: The max price (in US Dollars) you are willing to pay for spot instances. + Possible values are any decimal value greater than zero or -1 which indicates default price to + be up-to on-demand. Possible values are any decimal value greater than zero or -1 which + indicates the willingness to pay any on-demand price. For more details on spot pricing, see + `spot VMs pricing `_. + :vartype spot_max_price: float + :ivar tags: The tags to be persisted on the agent pool virtual machine scale set. + :vartype tags: dict[str, str] + :ivar node_labels: The node labels to be persisted across all nodes in agent pool. + :vartype node_labels: dict[str, str] + :ivar node_taints: The taints added to new nodes during node pool create and scale. For + example, key=value:NoSchedule. + :vartype node_taints: list[str] + :ivar proximity_placement_group_id: The ID for Proximity Placement Group. + :vartype proximity_placement_group_id: str + :ivar kubelet_config: The Kubelet configuration on the agent pool nodes. + :vartype kubelet_config: ~azure.mgmt.containerservice.models.KubeletConfig + :ivar linux_os_config: The OS configuration of Linux agent nodes. + :vartype linux_os_config: ~azure.mgmt.containerservice.models.LinuxOSConfig + :ivar enable_encryption_at_host: Whether to enable host based OS and data drive encryption. + This is only supported on certain VM sizes and in certain Azure regions. For more information, + see: https://docs.microsoft.com/azure/aks/enable-host-encryption. + :vartype enable_encryption_at_host: bool + :ivar enable_ultra_ssd: Whether to enable UltraSSD. + :vartype enable_ultra_ssd: bool + :ivar enable_fips: Whether to use a FIPS-enabled OS. See `Add a FIPS-enabled node pool + `_ + for more details. + :vartype enable_fips: bool + :ivar gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile + for supported GPU VM SKU. Known values are: "MIG1g", "MIG2g", "MIG3g", "MIG4g", and "MIG7g". + :vartype gpu_instance_profile: str or ~azure.mgmt.containerservice.models.GPUInstanceProfile + :ivar creation_data: CreationData to be used to specify the source Snapshot ID if the node pool + will be created/upgraded using a snapshot. + :vartype creation_data: ~azure.mgmt.containerservice.models.CreationData + :ivar capacity_reservation_group_id: AKS will associate the specified agent pool with the + Capacity Reservation Group. + :vartype capacity_reservation_group_id: str + :ivar host_group_id: The fully qualified resource ID of the Dedicated Host Group to provision + virtual machines from, used only in creation scenario and not allowed to changed once set. This + is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + For more information see `Azure dedicated hosts + `_. + :vartype host_group_id: str + :ivar network_profile: Network-related settings of an agent pool. + :vartype network_profile: ~azure.mgmt.containerservice.models.AgentPoolNetworkProfile + :ivar windows_profile: The Windows agent pool's specific profile. + :vartype windows_profile: ~azure.mgmt.containerservice.models.AgentPoolWindowsProfile + :ivar security_profile: The security settings of an agent pool. + :vartype security_profile: ~azure.mgmt.containerservice.models.AgentPoolSecurityProfile + :ivar gpu_profile: GPU settings for the Agent Pool. + :vartype gpu_profile: ~azure.mgmt.containerservice.models.GPUProfile + :ivar gateway_profile: Profile specific to a managed agent pool in Gateway mode. This field + cannot be set if agent pool mode is not Gateway. + :vartype gateway_profile: ~azure.mgmt.containerservice.models.AgentPoolGatewayProfile + :ivar virtual_machines_profile: Specifications on VirtualMachines agent pool. + :vartype virtual_machines_profile: ~azure.mgmt.containerservice.models.VirtualMachinesProfile + :ivar virtual_machine_nodes_status: The status of nodes in a VirtualMachines agent pool. + :vartype virtual_machine_nodes_status: + list[~azure.mgmt.containerservice.models.VirtualMachineNodes] + :ivar status: Contains read-only information about the Agent Pool. + :vartype status: ~azure.mgmt.containerservice.models.AgentPoolStatus + :ivar local_dns_profile: Configures the per-node local DNS, with VnetDNS and KubeDNS overrides. + LocalDNS helps improve performance and reliability of DNS resolution in an AKS cluster. For + more details see aka.ms/aks/localdns. + :vartype local_dns_profile: ~azure.mgmt.containerservice.models.LocalDNSProfile + """ + + _validation = { + "e_tag": {"readonly": True}, + "os_disk_size_gb": {"maximum": 2048, "minimum": 0}, + "current_orchestrator_version": {"readonly": True}, + "node_image_version": {"readonly": True}, + "provisioning_state": {"readonly": True}, + } + + _attribute_map = { + "e_tag": {"key": "eTag", "type": "str"}, + "count": {"key": "count", "type": "int"}, + "vm_size": {"key": "vmSize", "type": "str"}, + "os_disk_size_gb": {"key": "osDiskSizeGB", "type": "int"}, + "os_disk_type": {"key": "osDiskType", "type": "str"}, + "kubelet_disk_type": {"key": "kubeletDiskType", "type": "str"}, + "workload_runtime": {"key": "workloadRuntime", "type": "str"}, + "message_of_the_day": {"key": "messageOfTheDay", "type": "str"}, + "vnet_subnet_id": {"key": "vnetSubnetID", "type": "str"}, + "pod_subnet_id": {"key": "podSubnetID", "type": "str"}, + "pod_ip_allocation_mode": {"key": "podIPAllocationMode", "type": "str"}, + "max_pods": {"key": "maxPods", "type": "int"}, + "os_type": {"key": "osType", "type": "str"}, + "os_sku": {"key": "osSKU", "type": "str"}, + "max_count": {"key": "maxCount", "type": "int"}, + "min_count": {"key": "minCount", "type": "int"}, + "enable_auto_scaling": {"key": "enableAutoScaling", "type": "bool"}, + "scale_down_mode": {"key": "scaleDownMode", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "mode": {"key": "mode", "type": "str"}, + "orchestrator_version": {"key": "orchestratorVersion", "type": "str"}, + "current_orchestrator_version": {"key": "currentOrchestratorVersion", "type": "str"}, + "node_image_version": {"key": "nodeImageVersion", "type": "str"}, + "upgrade_settings": {"key": "upgradeSettings", "type": "AgentPoolUpgradeSettings"}, + "provisioning_state": {"key": "provisioningState", "type": "str"}, + "power_state": {"key": "powerState", "type": "PowerState"}, + "availability_zones": {"key": "availabilityZones", "type": "[str]"}, + "enable_node_public_ip": {"key": "enableNodePublicIP", "type": "bool"}, + "node_public_ip_prefix_id": {"key": "nodePublicIPPrefixID", "type": "str"}, + "scale_set_priority": {"key": "scaleSetPriority", "type": "str"}, + "scale_set_eviction_policy": {"key": "scaleSetEvictionPolicy", "type": "str"}, + "spot_max_price": {"key": "spotMaxPrice", "type": "float"}, + "tags": {"key": "tags", "type": "{str}"}, + "node_labels": {"key": "nodeLabels", "type": "{str}"}, + "node_taints": {"key": "nodeTaints", "type": "[str]"}, + "proximity_placement_group_id": {"key": "proximityPlacementGroupID", "type": "str"}, + "kubelet_config": {"key": "kubeletConfig", "type": "KubeletConfig"}, + "linux_os_config": {"key": "linuxOSConfig", "type": "LinuxOSConfig"}, + "enable_encryption_at_host": {"key": "enableEncryptionAtHost", "type": "bool"}, + "enable_ultra_ssd": {"key": "enableUltraSSD", "type": "bool"}, + "enable_fips": {"key": "enableFIPS", "type": "bool"}, + "gpu_instance_profile": {"key": "gpuInstanceProfile", "type": "str"}, + "creation_data": {"key": "creationData", "type": "CreationData"}, + "capacity_reservation_group_id": {"key": "capacityReservationGroupID", "type": "str"}, + "host_group_id": {"key": "hostGroupID", "type": "str"}, + "network_profile": {"key": "networkProfile", "type": "AgentPoolNetworkProfile"}, + "windows_profile": {"key": "windowsProfile", "type": "AgentPoolWindowsProfile"}, + "security_profile": {"key": "securityProfile", "type": "AgentPoolSecurityProfile"}, + "gpu_profile": {"key": "gpuProfile", "type": "GPUProfile"}, + "gateway_profile": {"key": "gatewayProfile", "type": "AgentPoolGatewayProfile"}, + "virtual_machines_profile": {"key": "virtualMachinesProfile", "type": "VirtualMachinesProfile"}, + "virtual_machine_nodes_status": {"key": "virtualMachineNodesStatus", "type": "[VirtualMachineNodes]"}, + "status": {"key": "status", "type": "AgentPoolStatus"}, + "local_dns_profile": {"key": "localDNSProfile", "type": "LocalDNSProfile"}, + } + + def __init__( # pylint: disable=too-many-locals + self, + *, + count: Optional[int] = None, + vm_size: Optional[str] = None, + os_disk_size_gb: Optional[int] = None, + os_disk_type: Optional[Union[str, "_models.OSDiskType"]] = None, + kubelet_disk_type: Optional[Union[str, "_models.KubeletDiskType"]] = None, + workload_runtime: Optional[Union[str, "_models.WorkloadRuntime"]] = None, + message_of_the_day: Optional[str] = None, + vnet_subnet_id: Optional[str] = None, + pod_subnet_id: Optional[str] = None, + pod_ip_allocation_mode: Optional[Union[str, "_models.PodIPAllocationMode"]] = None, + max_pods: Optional[int] = None, + os_type: Union[str, "_models.OSType"] = "Linux", + os_sku: Optional[Union[str, "_models.OSSKU"]] = None, + max_count: Optional[int] = None, + min_count: Optional[int] = None, + enable_auto_scaling: Optional[bool] = None, + scale_down_mode: Optional[Union[str, "_models.ScaleDownMode"]] = None, + type: Optional[Union[str, "_models.AgentPoolType"]] = None, + mode: Optional[Union[str, "_models.AgentPoolMode"]] = None, + orchestrator_version: Optional[str] = None, + upgrade_settings: Optional["_models.AgentPoolUpgradeSettings"] = None, + power_state: Optional["_models.PowerState"] = None, + availability_zones: Optional[list[str]] = None, + enable_node_public_ip: Optional[bool] = None, + node_public_ip_prefix_id: Optional[str] = None, + scale_set_priority: Union[str, "_models.ScaleSetPriority"] = "Regular", + scale_set_eviction_policy: Union[str, "_models.ScaleSetEvictionPolicy"] = "Delete", + spot_max_price: float = -1, + tags: Optional[dict[str, str]] = None, + node_labels: Optional[dict[str, str]] = None, + node_taints: Optional[list[str]] = None, + proximity_placement_group_id: Optional[str] = None, + kubelet_config: Optional["_models.KubeletConfig"] = None, + linux_os_config: Optional["_models.LinuxOSConfig"] = None, + enable_encryption_at_host: Optional[bool] = None, + enable_ultra_ssd: Optional[bool] = None, + enable_fips: Optional[bool] = None, + gpu_instance_profile: Optional[Union[str, "_models.GPUInstanceProfile"]] = None, + creation_data: Optional["_models.CreationData"] = None, + capacity_reservation_group_id: Optional[str] = None, + host_group_id: Optional[str] = None, + network_profile: Optional["_models.AgentPoolNetworkProfile"] = None, + windows_profile: Optional["_models.AgentPoolWindowsProfile"] = None, + security_profile: Optional["_models.AgentPoolSecurityProfile"] = None, + gpu_profile: Optional["_models.GPUProfile"] = None, + gateway_profile: Optional["_models.AgentPoolGatewayProfile"] = None, + virtual_machines_profile: Optional["_models.VirtualMachinesProfile"] = None, + virtual_machine_nodes_status: Optional[list["_models.VirtualMachineNodes"]] = None, + status: Optional["_models.AgentPoolStatus"] = None, + local_dns_profile: Optional["_models.LocalDNSProfile"] = None, + **kwargs: Any + ) -> None: + """ + :keyword count: Number of agents (VMs) to host docker containers. Allowed values must be in the + range of 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for + system pools. The default value is 1. + :paramtype count: int + :keyword vm_size: The size of the agent pool VMs. VM size availability varies by region. If a + node contains insufficient compute resources (memory, cpu, etc) pods might fail to run + correctly. For more details on restricted VM sizes, see: + https://docs.microsoft.com/azure/aks/quotas-skus-regions. + :paramtype vm_size: str + :keyword os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every + machine in the master/agent pool. If you specify 0, it will apply the default osDisk size + according to the vmSize specified. + :paramtype os_disk_size_gb: int + :keyword os_disk_type: The OS disk type to be used for machines in the agent pool. The default + is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested + OSDiskSizeGB. Otherwise, defaults to 'Managed'. May not be changed after creation. For more + information see `Ephemeral OS + `_. Known values are: + "Managed" and "Ephemeral". + :paramtype os_disk_type: str or ~azure.mgmt.containerservice.models.OSDiskType + :keyword kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime + data root, and Kubelet ephemeral storage. Known values are: "OS" and "Temporary". + :paramtype kubelet_disk_type: str or ~azure.mgmt.containerservice.models.KubeletDiskType + :keyword workload_runtime: Determines the type of workload a node can run. Known values are: + "OCIContainer", "WasmWasi", and "KataVmIsolation". + :paramtype workload_runtime: str or ~azure.mgmt.containerservice.models.WorkloadRuntime + :keyword message_of_the_day: Message of the day for Linux nodes, base64-encoded. A + base64-encoded string which will be written to /etc/motd after decoding. This allows + customization of the message of the day for Linux nodes. It must not be specified for Windows + nodes. It must be a static string (i.e., will be printed raw and not be executed as a script). + :paramtype message_of_the_day: str + :keyword vnet_subnet_id: The ID of the subnet which agent pool nodes and optionally pods will + join on startup. If this is not specified, a VNET and subnet will be generated and used. If no + podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :paramtype vnet_subnet_id: str + :keyword pod_subnet_id: The ID of the subnet which pods will join when launched. If omitted, + pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is + of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :paramtype pod_subnet_id: str + :keyword pod_ip_allocation_mode: Pod IP Allocation Mode. The IP allocation mode for pods in the + agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'. Known values + are: "DynamicIndividual" and "StaticBlock". + :paramtype pod_ip_allocation_mode: str or + ~azure.mgmt.containerservice.models.PodIPAllocationMode + :keyword max_pods: The maximum number of pods that can run on a node. + :paramtype max_pods: int + :keyword os_type: The operating system type. The default is Linux. Known values are: "Linux" + and "Windows". + :paramtype os_type: str or ~azure.mgmt.containerservice.models.OSType + :keyword os_sku: Specifies the OS SKU used by the agent pool. The default is Ubuntu if OSType + is Linux. The default is Windows2019 when Kubernetes <= 1.24 or Windows2022 when Kubernetes >= + 1.25 if OSType is Windows. Known values are: "Ubuntu", "AzureLinux", "AzureLinux3", + "CBLMariner", "Windows2019", "Windows2022", "Ubuntu2204", and "Ubuntu2404". + :paramtype os_sku: str or ~azure.mgmt.containerservice.models.OSSKU + :keyword max_count: The maximum number of nodes for auto-scaling. + :paramtype max_count: int + :keyword min_count: The minimum number of nodes for auto-scaling. + :paramtype min_count: int + :keyword enable_auto_scaling: Whether to enable auto-scaler. + :paramtype enable_auto_scaling: bool + :keyword scale_down_mode: The scale down mode to use when scaling the Agent Pool. This also + effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Known values + are: "Delete" and "Deallocate". + :paramtype scale_down_mode: str or ~azure.mgmt.containerservice.models.ScaleDownMode + :keyword type: The type of Agent Pool. Known values are: "VirtualMachineScaleSets", + "AvailabilitySet", and "VirtualMachines". + :paramtype type: str or ~azure.mgmt.containerservice.models.AgentPoolType + :keyword mode: The mode of an agent pool. A cluster must have at least one 'System' Agent Pool + at all times. For additional information on agent pool restrictions and best practices, see: + https://docs.microsoft.com/azure/aks/use-system-pools. Known values are: "System", "User", and + "Gateway". + :paramtype mode: str or ~azure.mgmt.containerservice.models.AgentPoolMode + :keyword orchestrator_version: The version of Kubernetes specified by the user. Both patch + version (e.g. 1.20.13) and (e.g. 1.20) are supported. When + is specified, the latest supported GA patch version is chosen automatically. + Updating the cluster with the same once it has been created (e.g. 1.14.x -> 1.14) + will not trigger an upgrade, even if a newer patch version is available. As a best practice, + you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node + pool version must have the same major version as the control plane. The node pool minor version + must be within two minor versions of the control plane version. The node pool version cannot be + greater than the control plane version. For more information see `upgrading a node pool + `_. + :paramtype orchestrator_version: str + :keyword upgrade_settings: Settings for upgrading the agentpool. + :paramtype upgrade_settings: ~azure.mgmt.containerservice.models.AgentPoolUpgradeSettings + :keyword power_state: Whether the Agent Pool is running or stopped. When an Agent Pool is first + created it is initially Running. The Agent Pool can be stopped by setting this field to + Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An + Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. + :paramtype power_state: ~azure.mgmt.containerservice.models.PowerState + :keyword availability_zones: The list of Availability zones to use for nodes. This can only be + specified if the AgentPoolType property is 'VirtualMachineScaleSets'. + :paramtype availability_zones: list[str] + :keyword enable_node_public_ip: Whether each node is allocated its own public IP. Some + scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. + A common scenario is for gaming workloads, where a console needs to make a direct connection to + a cloud virtual machine to minimize hops. For more information see `assigning a public IP per + node + `_. + The default is false. + :paramtype enable_node_public_ip: bool + :keyword node_public_ip_prefix_id: The public IP prefix ID which VM nodes should use IPs from. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. + :paramtype node_public_ip_prefix_id: str + :keyword scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the + default is 'Regular'. Known values are: "Spot" and "Regular". + :paramtype scale_set_priority: str or ~azure.mgmt.containerservice.models.ScaleSetPriority + :keyword scale_set_eviction_policy: The Virtual Machine Scale Set eviction policy to use. This + cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is + 'Delete'. Known values are: "Delete" and "Deallocate". + :paramtype scale_set_eviction_policy: str or + ~azure.mgmt.containerservice.models.ScaleSetEvictionPolicy + :keyword spot_max_price: The max price (in US Dollars) you are willing to pay for spot + instances. Possible values are any decimal value greater than zero or -1 which indicates + default price to be up-to on-demand. Possible values are any decimal value greater than zero or + -1 which indicates the willingness to pay any on-demand price. For more details on spot + pricing, see `spot VMs pricing + `_. + :paramtype spot_max_price: float + :keyword tags: The tags to be persisted on the agent pool virtual machine scale set. + :paramtype tags: dict[str, str] + :keyword node_labels: The node labels to be persisted across all nodes in agent pool. + :paramtype node_labels: dict[str, str] + :keyword node_taints: The taints added to new nodes during node pool create and scale. For + example, key=value:NoSchedule. + :paramtype node_taints: list[str] + :keyword proximity_placement_group_id: The ID for Proximity Placement Group. + :paramtype proximity_placement_group_id: str + :keyword kubelet_config: The Kubelet configuration on the agent pool nodes. + :paramtype kubelet_config: ~azure.mgmt.containerservice.models.KubeletConfig + :keyword linux_os_config: The OS configuration of Linux agent nodes. + :paramtype linux_os_config: ~azure.mgmt.containerservice.models.LinuxOSConfig + :keyword enable_encryption_at_host: Whether to enable host based OS and data drive encryption. + This is only supported on certain VM sizes and in certain Azure regions. For more information, + see: https://docs.microsoft.com/azure/aks/enable-host-encryption. + :paramtype enable_encryption_at_host: bool + :keyword enable_ultra_ssd: Whether to enable UltraSSD. + :paramtype enable_ultra_ssd: bool + :keyword enable_fips: Whether to use a FIPS-enabled OS. See `Add a FIPS-enabled node pool + `_ + for more details. + :paramtype enable_fips: bool + :keyword gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance + profile for supported GPU VM SKU. Known values are: "MIG1g", "MIG2g", "MIG3g", "MIG4g", and + "MIG7g". + :paramtype gpu_instance_profile: str or ~azure.mgmt.containerservice.models.GPUInstanceProfile + :keyword creation_data: CreationData to be used to specify the source Snapshot ID if the node + pool will be created/upgraded using a snapshot. + :paramtype creation_data: ~azure.mgmt.containerservice.models.CreationData + :keyword capacity_reservation_group_id: AKS will associate the specified agent pool with the + Capacity Reservation Group. + :paramtype capacity_reservation_group_id: str + :keyword host_group_id: The fully qualified resource ID of the Dedicated Host Group to + provision virtual machines from, used only in creation scenario and not allowed to changed once + set. This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + For more information see `Azure dedicated hosts + `_. + :paramtype host_group_id: str + :keyword network_profile: Network-related settings of an agent pool. + :paramtype network_profile: ~azure.mgmt.containerservice.models.AgentPoolNetworkProfile + :keyword windows_profile: The Windows agent pool's specific profile. + :paramtype windows_profile: ~azure.mgmt.containerservice.models.AgentPoolWindowsProfile + :keyword security_profile: The security settings of an agent pool. + :paramtype security_profile: ~azure.mgmt.containerservice.models.AgentPoolSecurityProfile + :keyword gpu_profile: GPU settings for the Agent Pool. + :paramtype gpu_profile: ~azure.mgmt.containerservice.models.GPUProfile + :keyword gateway_profile: Profile specific to a managed agent pool in Gateway mode. This field + cannot be set if agent pool mode is not Gateway. + :paramtype gateway_profile: ~azure.mgmt.containerservice.models.AgentPoolGatewayProfile + :keyword virtual_machines_profile: Specifications on VirtualMachines agent pool. + :paramtype virtual_machines_profile: ~azure.mgmt.containerservice.models.VirtualMachinesProfile + :keyword virtual_machine_nodes_status: The status of nodes in a VirtualMachines agent pool. + :paramtype virtual_machine_nodes_status: + list[~azure.mgmt.containerservice.models.VirtualMachineNodes] + :keyword status: Contains read-only information about the Agent Pool. + :paramtype status: ~azure.mgmt.containerservice.models.AgentPoolStatus + :keyword local_dns_profile: Configures the per-node local DNS, with VnetDNS and KubeDNS + overrides. LocalDNS helps improve performance and reliability of DNS resolution in an AKS + cluster. For more details see aka.ms/aks/localdns. + :paramtype local_dns_profile: ~azure.mgmt.containerservice.models.LocalDNSProfile + """ + super().__init__(**kwargs) + self.e_tag: Optional[str] = None + self.count = count + self.vm_size = vm_size + self.os_disk_size_gb = os_disk_size_gb + self.os_disk_type = os_disk_type + self.kubelet_disk_type = kubelet_disk_type + self.workload_runtime = workload_runtime + self.message_of_the_day = message_of_the_day + self.vnet_subnet_id = vnet_subnet_id + self.pod_subnet_id = pod_subnet_id + self.pod_ip_allocation_mode = pod_ip_allocation_mode + self.max_pods = max_pods + self.os_type = os_type + self.os_sku = os_sku + self.max_count = max_count + self.min_count = min_count + self.enable_auto_scaling = enable_auto_scaling + self.scale_down_mode = scale_down_mode + self.type = type + self.mode = mode + self.orchestrator_version = orchestrator_version + self.current_orchestrator_version: Optional[str] = None + self.node_image_version: Optional[str] = None + self.upgrade_settings = upgrade_settings + self.provisioning_state: Optional[str] = None + self.power_state = power_state + self.availability_zones = availability_zones + self.enable_node_public_ip = enable_node_public_ip + self.node_public_ip_prefix_id = node_public_ip_prefix_id + self.scale_set_priority = scale_set_priority + self.scale_set_eviction_policy = scale_set_eviction_policy + self.spot_max_price = spot_max_price + self.tags = tags + self.node_labels = node_labels + self.node_taints = node_taints + self.proximity_placement_group_id = proximity_placement_group_id + self.kubelet_config = kubelet_config + self.linux_os_config = linux_os_config + self.enable_encryption_at_host = enable_encryption_at_host + self.enable_ultra_ssd = enable_ultra_ssd + self.enable_fips = enable_fips + self.gpu_instance_profile = gpu_instance_profile + self.creation_data = creation_data + self.capacity_reservation_group_id = capacity_reservation_group_id + self.host_group_id = host_group_id + self.network_profile = network_profile + self.windows_profile = windows_profile + self.security_profile = security_profile + self.gpu_profile = gpu_profile + self.gateway_profile = gateway_profile + self.virtual_machines_profile = virtual_machines_profile + self.virtual_machine_nodes_status = virtual_machine_nodes_status + self.status = status + self.local_dns_profile = local_dns_profile + + +class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): + """Profile for the container service agent pool. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar e_tag: Unique read-only string used to implement optimistic concurrency. The eTag value + will change when the resource is updated. Specify an if-match or if-none-match header with the + eTag value for a subsequent request to enable optimistic concurrency per the normal eTag + convention. + :vartype e_tag: str + :ivar count: Number of agents (VMs) to host docker containers. Allowed values must be in the + range of 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for + system pools. The default value is 1. + :vartype count: int + :ivar vm_size: The size of the agent pool VMs. VM size availability varies by region. If a node + contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. + For more details on restricted VM sizes, see: + https://docs.microsoft.com/azure/aks/quotas-skus-regions. + :vartype vm_size: str + :ivar os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every machine + in the master/agent pool. If you specify 0, it will apply the default osDisk size according to + the vmSize specified. + :vartype os_disk_size_gb: int + :ivar os_disk_type: The OS disk type to be used for machines in the agent pool. The default is + 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. + Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see + `Ephemeral OS `_. + Known values are: "Managed" and "Ephemeral". + :vartype os_disk_type: str or ~azure.mgmt.containerservice.models.OSDiskType + :ivar kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data + root, and Kubelet ephemeral storage. Known values are: "OS" and "Temporary". + :vartype kubelet_disk_type: str or ~azure.mgmt.containerservice.models.KubeletDiskType + :ivar workload_runtime: Determines the type of workload a node can run. Known values are: + "OCIContainer", "WasmWasi", and "KataVmIsolation". + :vartype workload_runtime: str or ~azure.mgmt.containerservice.models.WorkloadRuntime + :ivar message_of_the_day: Message of the day for Linux nodes, base64-encoded. A base64-encoded + string which will be written to /etc/motd after decoding. This allows customization of the + message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a + static string (i.e., will be printed raw and not be executed as a script). + :vartype message_of_the_day: str + :ivar vnet_subnet_id: The ID of the subnet which agent pool nodes and optionally pods will join + on startup. If this is not specified, a VNET and subnet will be generated and used. If no + podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :vartype vnet_subnet_id: str + :ivar pod_subnet_id: The ID of the subnet which pods will join when launched. If omitted, pod + IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of + the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :vartype pod_subnet_id: str + :ivar pod_ip_allocation_mode: Pod IP Allocation Mode. The IP allocation mode for pods in the + agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'. Known values + are: "DynamicIndividual" and "StaticBlock". + :vartype pod_ip_allocation_mode: str or ~azure.mgmt.containerservice.models.PodIPAllocationMode + :ivar max_pods: The maximum number of pods that can run on a node. + :vartype max_pods: int + :ivar os_type: The operating system type. The default is Linux. Known values are: "Linux" and + "Windows". + :vartype os_type: str or ~azure.mgmt.containerservice.models.OSType + :ivar os_sku: Specifies the OS SKU used by the agent pool. The default is Ubuntu if OSType is + Linux. The default is Windows2019 when Kubernetes <= 1.24 or Windows2022 when Kubernetes >= + 1.25 if OSType is Windows. Known values are: "Ubuntu", "AzureLinux", "AzureLinux3", + "CBLMariner", "Windows2019", "Windows2022", "Ubuntu2204", and "Ubuntu2404". + :vartype os_sku: str or ~azure.mgmt.containerservice.models.OSSKU + :ivar max_count: The maximum number of nodes for auto-scaling. + :vartype max_count: int + :ivar min_count: The minimum number of nodes for auto-scaling. + :vartype min_count: int + :ivar enable_auto_scaling: Whether to enable auto-scaler. + :vartype enable_auto_scaling: bool + :ivar scale_down_mode: The scale down mode to use when scaling the Agent Pool. This also + effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Known values + are: "Delete" and "Deallocate". + :vartype scale_down_mode: str or ~azure.mgmt.containerservice.models.ScaleDownMode + :ivar type: The type of Agent Pool. Known values are: "VirtualMachineScaleSets", + "AvailabilitySet", and "VirtualMachines". + :vartype type: str or ~azure.mgmt.containerservice.models.AgentPoolType + :ivar mode: The mode of an agent pool. A cluster must have at least one 'System' Agent Pool at + all times. For additional information on agent pool restrictions and best practices, see: + https://docs.microsoft.com/azure/aks/use-system-pools. Known values are: "System", "User", and + "Gateway". + :vartype mode: str or ~azure.mgmt.containerservice.models.AgentPoolMode + :ivar orchestrator_version: The version of Kubernetes specified by the user. Both patch version + (e.g. 1.20.13) and (e.g. 1.20) are supported. When + is specified, the latest supported GA patch version is chosen automatically. + Updating the cluster with the same once it has been created (e.g. 1.14.x -> 1.14) + will not trigger an upgrade, even if a newer patch version is available. As a best practice, + you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node + pool version must have the same major version as the control plane. The node pool minor version + must be within two minor versions of the control plane version. The node pool version cannot be + greater than the control plane version. For more information see `upgrading a node pool + `_. + :vartype orchestrator_version: str + :ivar current_orchestrator_version: The version of Kubernetes the Agent Pool is running. If + orchestratorVersion is a fully specified version , this field will be + exactly equal to it. If orchestratorVersion is , this field will contain the full + version being used. + :vartype current_orchestrator_version: str + :ivar node_image_version: The version of node image. + :vartype node_image_version: str + :ivar upgrade_settings: Settings for upgrading the agentpool. + :vartype upgrade_settings: ~azure.mgmt.containerservice.models.AgentPoolUpgradeSettings + :ivar provisioning_state: The current deployment or provisioning state. + :vartype provisioning_state: str + :ivar power_state: Whether the Agent Pool is running or stopped. When an Agent Pool is first + created it is initially Running. The Agent Pool can be stopped by setting this field to + Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An + Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. + :vartype power_state: ~azure.mgmt.containerservice.models.PowerState + :ivar availability_zones: The list of Availability zones to use for nodes. This can only be + specified if the AgentPoolType property is 'VirtualMachineScaleSets'. + :vartype availability_zones: list[str] + :ivar enable_node_public_ip: Whether each node is allocated its own public IP. Some scenarios + may require nodes in a node pool to receive their own dedicated public IP addresses. A common + scenario is for gaming workloads, where a console needs to make a direct connection to a cloud + virtual machine to minimize hops. For more information see `assigning a public IP per node + `_. + The default is false. + :vartype enable_node_public_ip: bool + :ivar node_public_ip_prefix_id: The public IP prefix ID which VM nodes should use IPs from. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. + :vartype node_public_ip_prefix_id: str + :ivar scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default + is 'Regular'. Known values are: "Spot" and "Regular". + :vartype scale_set_priority: str or ~azure.mgmt.containerservice.models.ScaleSetPriority + :ivar scale_set_eviction_policy: The Virtual Machine Scale Set eviction policy to use. This + cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is + 'Delete'. Known values are: "Delete" and "Deallocate". + :vartype scale_set_eviction_policy: str or + ~azure.mgmt.containerservice.models.ScaleSetEvictionPolicy + :ivar spot_max_price: The max price (in US Dollars) you are willing to pay for spot instances. + Possible values are any decimal value greater than zero or -1 which indicates default price to + be up-to on-demand. Possible values are any decimal value greater than zero or -1 which + indicates the willingness to pay any on-demand price. For more details on spot pricing, see + `spot VMs pricing `_. + :vartype spot_max_price: float + :ivar tags: The tags to be persisted on the agent pool virtual machine scale set. + :vartype tags: dict[str, str] + :ivar node_labels: The node labels to be persisted across all nodes in agent pool. + :vartype node_labels: dict[str, str] + :ivar node_taints: The taints added to new nodes during node pool create and scale. For + example, key=value:NoSchedule. + :vartype node_taints: list[str] + :ivar proximity_placement_group_id: The ID for Proximity Placement Group. + :vartype proximity_placement_group_id: str + :ivar kubelet_config: The Kubelet configuration on the agent pool nodes. + :vartype kubelet_config: ~azure.mgmt.containerservice.models.KubeletConfig + :ivar linux_os_config: The OS configuration of Linux agent nodes. + :vartype linux_os_config: ~azure.mgmt.containerservice.models.LinuxOSConfig + :ivar enable_encryption_at_host: Whether to enable host based OS and data drive encryption. + This is only supported on certain VM sizes and in certain Azure regions. For more information, + see: https://docs.microsoft.com/azure/aks/enable-host-encryption. + :vartype enable_encryption_at_host: bool + :ivar enable_ultra_ssd: Whether to enable UltraSSD. + :vartype enable_ultra_ssd: bool + :ivar enable_fips: Whether to use a FIPS-enabled OS. See `Add a FIPS-enabled node pool + `_ + for more details. + :vartype enable_fips: bool + :ivar gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile + for supported GPU VM SKU. Known values are: "MIG1g", "MIG2g", "MIG3g", "MIG4g", and "MIG7g". + :vartype gpu_instance_profile: str or ~azure.mgmt.containerservice.models.GPUInstanceProfile + :ivar creation_data: CreationData to be used to specify the source Snapshot ID if the node pool + will be created/upgraded using a snapshot. + :vartype creation_data: ~azure.mgmt.containerservice.models.CreationData + :ivar capacity_reservation_group_id: AKS will associate the specified agent pool with the + Capacity Reservation Group. + :vartype capacity_reservation_group_id: str + :ivar host_group_id: The fully qualified resource ID of the Dedicated Host Group to provision + virtual machines from, used only in creation scenario and not allowed to changed once set. This + is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + For more information see `Azure dedicated hosts + `_. + :vartype host_group_id: str + :ivar network_profile: Network-related settings of an agent pool. + :vartype network_profile: ~azure.mgmt.containerservice.models.AgentPoolNetworkProfile + :ivar windows_profile: The Windows agent pool's specific profile. + :vartype windows_profile: ~azure.mgmt.containerservice.models.AgentPoolWindowsProfile + :ivar security_profile: The security settings of an agent pool. + :vartype security_profile: ~azure.mgmt.containerservice.models.AgentPoolSecurityProfile + :ivar gpu_profile: GPU settings for the Agent Pool. + :vartype gpu_profile: ~azure.mgmt.containerservice.models.GPUProfile + :ivar gateway_profile: Profile specific to a managed agent pool in Gateway mode. This field + cannot be set if agent pool mode is not Gateway. + :vartype gateway_profile: ~azure.mgmt.containerservice.models.AgentPoolGatewayProfile + :ivar virtual_machines_profile: Specifications on VirtualMachines agent pool. + :vartype virtual_machines_profile: ~azure.mgmt.containerservice.models.VirtualMachinesProfile + :ivar virtual_machine_nodes_status: The status of nodes in a VirtualMachines agent pool. + :vartype virtual_machine_nodes_status: + list[~azure.mgmt.containerservice.models.VirtualMachineNodes] + :ivar status: Contains read-only information about the Agent Pool. + :vartype status: ~azure.mgmt.containerservice.models.AgentPoolStatus + :ivar local_dns_profile: Configures the per-node local DNS, with VnetDNS and KubeDNS overrides. + LocalDNS helps improve performance and reliability of DNS resolution in an AKS cluster. For + more details see aka.ms/aks/localdns. + :vartype local_dns_profile: ~azure.mgmt.containerservice.models.LocalDNSProfile + :ivar name: Unique name of the agent pool profile in the context of the subscription and + resource group. Windows agent pool names must be 6 characters or less. Required. + :vartype name: str + """ + + _validation = { + "e_tag": {"readonly": True}, + "os_disk_size_gb": {"maximum": 2048, "minimum": 0}, + "current_orchestrator_version": {"readonly": True}, + "node_image_version": {"readonly": True}, + "provisioning_state": {"readonly": True}, + "name": {"required": True, "pattern": r"^[a-z][a-z0-9]{0,11}$"}, + } + + _attribute_map = { + "e_tag": {"key": "eTag", "type": "str"}, + "count": {"key": "count", "type": "int"}, + "vm_size": {"key": "vmSize", "type": "str"}, + "os_disk_size_gb": {"key": "osDiskSizeGB", "type": "int"}, + "os_disk_type": {"key": "osDiskType", "type": "str"}, + "kubelet_disk_type": {"key": "kubeletDiskType", "type": "str"}, + "workload_runtime": {"key": "workloadRuntime", "type": "str"}, + "message_of_the_day": {"key": "messageOfTheDay", "type": "str"}, + "vnet_subnet_id": {"key": "vnetSubnetID", "type": "str"}, + "pod_subnet_id": {"key": "podSubnetID", "type": "str"}, + "pod_ip_allocation_mode": {"key": "podIPAllocationMode", "type": "str"}, + "max_pods": {"key": "maxPods", "type": "int"}, + "os_type": {"key": "osType", "type": "str"}, + "os_sku": {"key": "osSKU", "type": "str"}, + "max_count": {"key": "maxCount", "type": "int"}, + "min_count": {"key": "minCount", "type": "int"}, + "enable_auto_scaling": {"key": "enableAutoScaling", "type": "bool"}, + "scale_down_mode": {"key": "scaleDownMode", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "mode": {"key": "mode", "type": "str"}, + "orchestrator_version": {"key": "orchestratorVersion", "type": "str"}, + "current_orchestrator_version": {"key": "currentOrchestratorVersion", "type": "str"}, + "node_image_version": {"key": "nodeImageVersion", "type": "str"}, + "upgrade_settings": {"key": "upgradeSettings", "type": "AgentPoolUpgradeSettings"}, + "provisioning_state": {"key": "provisioningState", "type": "str"}, + "power_state": {"key": "powerState", "type": "PowerState"}, + "availability_zones": {"key": "availabilityZones", "type": "[str]"}, + "enable_node_public_ip": {"key": "enableNodePublicIP", "type": "bool"}, + "node_public_ip_prefix_id": {"key": "nodePublicIPPrefixID", "type": "str"}, + "scale_set_priority": {"key": "scaleSetPriority", "type": "str"}, + "scale_set_eviction_policy": {"key": "scaleSetEvictionPolicy", "type": "str"}, + "spot_max_price": {"key": "spotMaxPrice", "type": "float"}, + "tags": {"key": "tags", "type": "{str}"}, + "node_labels": {"key": "nodeLabels", "type": "{str}"}, + "node_taints": {"key": "nodeTaints", "type": "[str]"}, + "proximity_placement_group_id": {"key": "proximityPlacementGroupID", "type": "str"}, + "kubelet_config": {"key": "kubeletConfig", "type": "KubeletConfig"}, + "linux_os_config": {"key": "linuxOSConfig", "type": "LinuxOSConfig"}, + "enable_encryption_at_host": {"key": "enableEncryptionAtHost", "type": "bool"}, + "enable_ultra_ssd": {"key": "enableUltraSSD", "type": "bool"}, + "enable_fips": {"key": "enableFIPS", "type": "bool"}, + "gpu_instance_profile": {"key": "gpuInstanceProfile", "type": "str"}, + "creation_data": {"key": "creationData", "type": "CreationData"}, + "capacity_reservation_group_id": {"key": "capacityReservationGroupID", "type": "str"}, + "host_group_id": {"key": "hostGroupID", "type": "str"}, + "network_profile": {"key": "networkProfile", "type": "AgentPoolNetworkProfile"}, + "windows_profile": {"key": "windowsProfile", "type": "AgentPoolWindowsProfile"}, + "security_profile": {"key": "securityProfile", "type": "AgentPoolSecurityProfile"}, + "gpu_profile": {"key": "gpuProfile", "type": "GPUProfile"}, + "gateway_profile": {"key": "gatewayProfile", "type": "AgentPoolGatewayProfile"}, + "virtual_machines_profile": {"key": "virtualMachinesProfile", "type": "VirtualMachinesProfile"}, + "virtual_machine_nodes_status": {"key": "virtualMachineNodesStatus", "type": "[VirtualMachineNodes]"}, + "status": {"key": "status", "type": "AgentPoolStatus"}, + "local_dns_profile": {"key": "localDNSProfile", "type": "LocalDNSProfile"}, + "name": {"key": "name", "type": "str"}, + } + + def __init__( # pylint: disable=too-many-locals + self, + *, + name: str, + count: Optional[int] = None, + vm_size: Optional[str] = None, + os_disk_size_gb: Optional[int] = None, + os_disk_type: Optional[Union[str, "_models.OSDiskType"]] = None, + kubelet_disk_type: Optional[Union[str, "_models.KubeletDiskType"]] = None, + workload_runtime: Optional[Union[str, "_models.WorkloadRuntime"]] = None, + message_of_the_day: Optional[str] = None, + vnet_subnet_id: Optional[str] = None, + pod_subnet_id: Optional[str] = None, + pod_ip_allocation_mode: Optional[Union[str, "_models.PodIPAllocationMode"]] = None, + max_pods: Optional[int] = None, + os_type: Union[str, "_models.OSType"] = "Linux", + os_sku: Optional[Union[str, "_models.OSSKU"]] = None, + max_count: Optional[int] = None, + min_count: Optional[int] = None, + enable_auto_scaling: Optional[bool] = None, + scale_down_mode: Optional[Union[str, "_models.ScaleDownMode"]] = None, + type: Optional[Union[str, "_models.AgentPoolType"]] = None, + mode: Optional[Union[str, "_models.AgentPoolMode"]] = None, + orchestrator_version: Optional[str] = None, + upgrade_settings: Optional["_models.AgentPoolUpgradeSettings"] = None, + power_state: Optional["_models.PowerState"] = None, + availability_zones: Optional[list[str]] = None, + enable_node_public_ip: Optional[bool] = None, + node_public_ip_prefix_id: Optional[str] = None, + scale_set_priority: Union[str, "_models.ScaleSetPriority"] = "Regular", + scale_set_eviction_policy: Union[str, "_models.ScaleSetEvictionPolicy"] = "Delete", + spot_max_price: float = -1, + tags: Optional[dict[str, str]] = None, + node_labels: Optional[dict[str, str]] = None, + node_taints: Optional[list[str]] = None, + proximity_placement_group_id: Optional[str] = None, + kubelet_config: Optional["_models.KubeletConfig"] = None, + linux_os_config: Optional["_models.LinuxOSConfig"] = None, + enable_encryption_at_host: Optional[bool] = None, + enable_ultra_ssd: Optional[bool] = None, + enable_fips: Optional[bool] = None, + gpu_instance_profile: Optional[Union[str, "_models.GPUInstanceProfile"]] = None, + creation_data: Optional["_models.CreationData"] = None, + capacity_reservation_group_id: Optional[str] = None, + host_group_id: Optional[str] = None, + network_profile: Optional["_models.AgentPoolNetworkProfile"] = None, + windows_profile: Optional["_models.AgentPoolWindowsProfile"] = None, + security_profile: Optional["_models.AgentPoolSecurityProfile"] = None, + gpu_profile: Optional["_models.GPUProfile"] = None, + gateway_profile: Optional["_models.AgentPoolGatewayProfile"] = None, + virtual_machines_profile: Optional["_models.VirtualMachinesProfile"] = None, + virtual_machine_nodes_status: Optional[list["_models.VirtualMachineNodes"]] = None, + status: Optional["_models.AgentPoolStatus"] = None, + local_dns_profile: Optional["_models.LocalDNSProfile"] = None, + **kwargs: Any + ) -> None: + """ + :keyword count: Number of agents (VMs) to host docker containers. Allowed values must be in the + range of 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for + system pools. The default value is 1. + :paramtype count: int + :keyword vm_size: The size of the agent pool VMs. VM size availability varies by region. If a + node contains insufficient compute resources (memory, cpu, etc) pods might fail to run + correctly. For more details on restricted VM sizes, see: + https://docs.microsoft.com/azure/aks/quotas-skus-regions. + :paramtype vm_size: str + :keyword os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every + machine in the master/agent pool. If you specify 0, it will apply the default osDisk size + according to the vmSize specified. + :paramtype os_disk_size_gb: int + :keyword os_disk_type: The OS disk type to be used for machines in the agent pool. The default + is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested + OSDiskSizeGB. Otherwise, defaults to 'Managed'. May not be changed after creation. For more + information see `Ephemeral OS + `_. Known values are: + "Managed" and "Ephemeral". + :paramtype os_disk_type: str or ~azure.mgmt.containerservice.models.OSDiskType + :keyword kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime + data root, and Kubelet ephemeral storage. Known values are: "OS" and "Temporary". + :paramtype kubelet_disk_type: str or ~azure.mgmt.containerservice.models.KubeletDiskType + :keyword workload_runtime: Determines the type of workload a node can run. Known values are: + "OCIContainer", "WasmWasi", and "KataVmIsolation". + :paramtype workload_runtime: str or ~azure.mgmt.containerservice.models.WorkloadRuntime + :keyword message_of_the_day: Message of the day for Linux nodes, base64-encoded. A + base64-encoded string which will be written to /etc/motd after decoding. This allows + customization of the message of the day for Linux nodes. It must not be specified for Windows + nodes. It must be a static string (i.e., will be printed raw and not be executed as a script). + :paramtype message_of_the_day: str + :keyword vnet_subnet_id: The ID of the subnet which agent pool nodes and optionally pods will + join on startup. If this is not specified, a VNET and subnet will be generated and used. If no + podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :paramtype vnet_subnet_id: str + :keyword pod_subnet_id: The ID of the subnet which pods will join when launched. If omitted, + pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is + of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + :paramtype pod_subnet_id: str + :keyword pod_ip_allocation_mode: Pod IP Allocation Mode. The IP allocation mode for pods in the + agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'. Known values + are: "DynamicIndividual" and "StaticBlock". + :paramtype pod_ip_allocation_mode: str or + ~azure.mgmt.containerservice.models.PodIPAllocationMode + :keyword max_pods: The maximum number of pods that can run on a node. + :paramtype max_pods: int + :keyword os_type: The operating system type. The default is Linux. Known values are: "Linux" + and "Windows". + :paramtype os_type: str or ~azure.mgmt.containerservice.models.OSType + :keyword os_sku: Specifies the OS SKU used by the agent pool. The default is Ubuntu if OSType + is Linux. The default is Windows2019 when Kubernetes <= 1.24 or Windows2022 when Kubernetes >= + 1.25 if OSType is Windows. Known values are: "Ubuntu", "AzureLinux", "AzureLinux3", + "CBLMariner", "Windows2019", "Windows2022", "Ubuntu2204", and "Ubuntu2404". + :paramtype os_sku: str or ~azure.mgmt.containerservice.models.OSSKU + :keyword max_count: The maximum number of nodes for auto-scaling. + :paramtype max_count: int + :keyword min_count: The minimum number of nodes for auto-scaling. + :paramtype min_count: int + :keyword enable_auto_scaling: Whether to enable auto-scaler. + :paramtype enable_auto_scaling: bool + :keyword scale_down_mode: The scale down mode to use when scaling the Agent Pool. This also + effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Known values + are: "Delete" and "Deallocate". + :paramtype scale_down_mode: str or ~azure.mgmt.containerservice.models.ScaleDownMode + :keyword type: The type of Agent Pool. Known values are: "VirtualMachineScaleSets", + "AvailabilitySet", and "VirtualMachines". + :paramtype type: str or ~azure.mgmt.containerservice.models.AgentPoolType + :keyword mode: The mode of an agent pool. A cluster must have at least one 'System' Agent Pool + at all times. For additional information on agent pool restrictions and best practices, see: + https://docs.microsoft.com/azure/aks/use-system-pools. Known values are: "System", "User", and + "Gateway". + :paramtype mode: str or ~azure.mgmt.containerservice.models.AgentPoolMode + :keyword orchestrator_version: The version of Kubernetes specified by the user. Both patch + version (e.g. 1.20.13) and (e.g. 1.20) are supported. When + is specified, the latest supported GA patch version is chosen automatically. + Updating the cluster with the same once it has been created (e.g. 1.14.x -> 1.14) + will not trigger an upgrade, even if a newer patch version is available. As a best practice, + you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node + pool version must have the same major version as the control plane. The node pool minor version + must be within two minor versions of the control plane version. The node pool version cannot be + greater than the control plane version. For more information see `upgrading a node pool + `_. + :paramtype orchestrator_version: str + :keyword upgrade_settings: Settings for upgrading the agentpool. + :paramtype upgrade_settings: ~azure.mgmt.containerservice.models.AgentPoolUpgradeSettings + :keyword power_state: Whether the Agent Pool is running or stopped. When an Agent Pool is first + created it is initially Running. The Agent Pool can be stopped by setting this field to + Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An + Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. + :paramtype power_state: ~azure.mgmt.containerservice.models.PowerState + :keyword availability_zones: The list of Availability zones to use for nodes. This can only be + specified if the AgentPoolType property is 'VirtualMachineScaleSets'. + :paramtype availability_zones: list[str] + :keyword enable_node_public_ip: Whether each node is allocated its own public IP. Some + scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. + A common scenario is for gaming workloads, where a console needs to make a direct connection to + a cloud virtual machine to minimize hops. For more information see `assigning a public IP per + node + `_. + The default is false. + :paramtype enable_node_public_ip: bool + :keyword node_public_ip_prefix_id: The public IP prefix ID which VM nodes should use IPs from. + This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}. + :paramtype node_public_ip_prefix_id: str + :keyword scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the + default is 'Regular'. Known values are: "Spot" and "Regular". + :paramtype scale_set_priority: str or ~azure.mgmt.containerservice.models.ScaleSetPriority + :keyword scale_set_eviction_policy: The Virtual Machine Scale Set eviction policy to use. This + cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is + 'Delete'. Known values are: "Delete" and "Deallocate". + :paramtype scale_set_eviction_policy: str or + ~azure.mgmt.containerservice.models.ScaleSetEvictionPolicy + :keyword spot_max_price: The max price (in US Dollars) you are willing to pay for spot + instances. Possible values are any decimal value greater than zero or -1 which indicates + default price to be up-to on-demand. Possible values are any decimal value greater than zero or + -1 which indicates the willingness to pay any on-demand price. For more details on spot + pricing, see `spot VMs pricing + `_. + :paramtype spot_max_price: float + :keyword tags: The tags to be persisted on the agent pool virtual machine scale set. + :paramtype tags: dict[str, str] + :keyword node_labels: The node labels to be persisted across all nodes in agent pool. + :paramtype node_labels: dict[str, str] + :keyword node_taints: The taints added to new nodes during node pool create and scale. For + example, key=value:NoSchedule. + :paramtype node_taints: list[str] + :keyword proximity_placement_group_id: The ID for Proximity Placement Group. + :paramtype proximity_placement_group_id: str + :keyword kubelet_config: The Kubelet configuration on the agent pool nodes. + :paramtype kubelet_config: ~azure.mgmt.containerservice.models.KubeletConfig + :keyword linux_os_config: The OS configuration of Linux agent nodes. + :paramtype linux_os_config: ~azure.mgmt.containerservice.models.LinuxOSConfig + :keyword enable_encryption_at_host: Whether to enable host based OS and data drive encryption. + This is only supported on certain VM sizes and in certain Azure regions. For more information, + see: https://docs.microsoft.com/azure/aks/enable-host-encryption. + :paramtype enable_encryption_at_host: bool + :keyword enable_ultra_ssd: Whether to enable UltraSSD. + :paramtype enable_ultra_ssd: bool + :keyword enable_fips: Whether to use a FIPS-enabled OS. See `Add a FIPS-enabled node pool + `_ + for more details. + :paramtype enable_fips: bool + :keyword gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance + profile for supported GPU VM SKU. Known values are: "MIG1g", "MIG2g", "MIG3g", "MIG4g", and + "MIG7g". + :paramtype gpu_instance_profile: str or ~azure.mgmt.containerservice.models.GPUInstanceProfile + :keyword creation_data: CreationData to be used to specify the source Snapshot ID if the node + pool will be created/upgraded using a snapshot. + :paramtype creation_data: ~azure.mgmt.containerservice.models.CreationData + :keyword capacity_reservation_group_id: AKS will associate the specified agent pool with the + Capacity Reservation Group. + :paramtype capacity_reservation_group_id: str + :keyword host_group_id: The fully qualified resource ID of the Dedicated Host Group to + provision virtual machines from, used only in creation scenario and not allowed to changed once + set. This is of the form: + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. + For more information see `Azure dedicated hosts + `_. + :paramtype host_group_id: str + :keyword network_profile: Network-related settings of an agent pool. + :paramtype network_profile: ~azure.mgmt.containerservice.models.AgentPoolNetworkProfile + :keyword windows_profile: The Windows agent pool's specific profile. + :paramtype windows_profile: ~azure.mgmt.containerservice.models.AgentPoolWindowsProfile + :keyword security_profile: The security settings of an agent pool. + :paramtype security_profile: ~azure.mgmt.containerservice.models.AgentPoolSecurityProfile + :keyword gpu_profile: GPU settings for the Agent Pool. + :paramtype gpu_profile: ~azure.mgmt.containerservice.models.GPUProfile + :keyword gateway_profile: Profile specific to a managed agent pool in Gateway mode. This field + cannot be set if agent pool mode is not Gateway. + :paramtype gateway_profile: ~azure.mgmt.containerservice.models.AgentPoolGatewayProfile + :keyword virtual_machines_profile: Specifications on VirtualMachines agent pool. + :paramtype virtual_machines_profile: ~azure.mgmt.containerservice.models.VirtualMachinesProfile + :keyword virtual_machine_nodes_status: The status of nodes in a VirtualMachines agent pool. + :paramtype virtual_machine_nodes_status: + list[~azure.mgmt.containerservice.models.VirtualMachineNodes] + :keyword status: Contains read-only information about the Agent Pool. + :paramtype status: ~azure.mgmt.containerservice.models.AgentPoolStatus + :keyword local_dns_profile: Configures the per-node local DNS, with VnetDNS and KubeDNS + overrides. LocalDNS helps improve performance and reliability of DNS resolution in an AKS + cluster. For more details see aka.ms/aks/localdns. + :paramtype local_dns_profile: ~azure.mgmt.containerservice.models.LocalDNSProfile + :keyword name: Unique name of the agent pool profile in the context of the subscription and + resource group. Windows agent pool names must be 6 characters or less. Required. + :paramtype name: str + """ + super().__init__( + count=count, + vm_size=vm_size, + os_disk_size_gb=os_disk_size_gb, + os_disk_type=os_disk_type, + kubelet_disk_type=kubelet_disk_type, + workload_runtime=workload_runtime, + message_of_the_day=message_of_the_day, + vnet_subnet_id=vnet_subnet_id, + pod_subnet_id=pod_subnet_id, + pod_ip_allocation_mode=pod_ip_allocation_mode, + max_pods=max_pods, + os_type=os_type, + os_sku=os_sku, + max_count=max_count, + min_count=min_count, + enable_auto_scaling=enable_auto_scaling, + scale_down_mode=scale_down_mode, + type=type, + mode=mode, + orchestrator_version=orchestrator_version, + upgrade_settings=upgrade_settings, + power_state=power_state, + availability_zones=availability_zones, + enable_node_public_ip=enable_node_public_ip, + node_public_ip_prefix_id=node_public_ip_prefix_id, + scale_set_priority=scale_set_priority, + scale_set_eviction_policy=scale_set_eviction_policy, + spot_max_price=spot_max_price, + tags=tags, + node_labels=node_labels, + node_taints=node_taints, + proximity_placement_group_id=proximity_placement_group_id, + kubelet_config=kubelet_config, + linux_os_config=linux_os_config, + enable_encryption_at_host=enable_encryption_at_host, + enable_ultra_ssd=enable_ultra_ssd, + enable_fips=enable_fips, + gpu_instance_profile=gpu_instance_profile, + creation_data=creation_data, + capacity_reservation_group_id=capacity_reservation_group_id, + host_group_id=host_group_id, + network_profile=network_profile, + windows_profile=windows_profile, + security_profile=security_profile, + gpu_profile=gpu_profile, + gateway_profile=gateway_profile, + virtual_machines_profile=virtual_machines_profile, + virtual_machine_nodes_status=virtual_machine_nodes_status, + status=status, + local_dns_profile=local_dns_profile, + **kwargs + ) + self.name = name + + +class ManagedClusterAIToolchainOperatorProfile(_serialization.Model): + """When enabling the operator, a set of AKS managed CRDs and controllers will be installed in the + cluster. The operator automates the deployment of OSS models for inference and/or training + purposes. It provides a set of preset models and enables distributed inference against them. + + :ivar enabled: Whether to enable AI toolchain operator to the cluster. Indicates if AI + toolchain operator enabled or not. + :vartype enabled: bool + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable AI toolchain operator to the cluster. Indicates if AI + toolchain operator enabled or not. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedClusterAPIServerAccessProfile(_serialization.Model): + """Access profile for managed cluster API server. + + :ivar authorized_ip_ranges: The IP ranges authorized to access the Kubernetes API server. IP + ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible + with clusters that use Public IP Per Node, or clusters that are using a Basic Load Balancer. + For more information see `API server authorized IP ranges + `_. + :vartype authorized_ip_ranges: list[str] + :ivar enable_private_cluster: Whether to create the cluster as a private cluster or not. For + more details, see `Creating a private AKS cluster + `_. + :vartype enable_private_cluster: bool + :ivar private_dns_zone: The private DNS zone mode for the cluster. The default is System. For + more details see `configure private DNS zone + `_. Allowed + values are 'system' and 'none'. + :vartype private_dns_zone: str + :ivar enable_private_cluster_public_fqdn: Whether to create additional public FQDN for private + cluster or not. + :vartype enable_private_cluster_public_fqdn: bool + :ivar disable_run_command: Whether to disable run command for the cluster or not. + :vartype disable_run_command: bool + :ivar enable_vnet_integration: Whether to enable apiserver vnet integration for the cluster or + not. See aka.ms/AksVnetIntegration for more details. + :vartype enable_vnet_integration: bool + :ivar subnet_id: The subnet to be used when apiserver vnet integration is enabled. It is + required when creating a new cluster with BYO Vnet, or when updating an existing cluster to + enable apiserver vnet integration. + :vartype subnet_id: str + """ + + _attribute_map = { + "authorized_ip_ranges": {"key": "authorizedIPRanges", "type": "[str]"}, + "enable_private_cluster": {"key": "enablePrivateCluster", "type": "bool"}, + "private_dns_zone": {"key": "privateDNSZone", "type": "str"}, + "enable_private_cluster_public_fqdn": {"key": "enablePrivateClusterPublicFQDN", "type": "bool"}, + "disable_run_command": {"key": "disableRunCommand", "type": "bool"}, + "enable_vnet_integration": {"key": "enableVnetIntegration", "type": "bool"}, + "subnet_id": {"key": "subnetId", "type": "str"}, + } + + def __init__( + self, + *, + authorized_ip_ranges: Optional[list[str]] = None, + enable_private_cluster: Optional[bool] = None, + private_dns_zone: Optional[str] = None, + enable_private_cluster_public_fqdn: Optional[bool] = None, + disable_run_command: Optional[bool] = None, + enable_vnet_integration: Optional[bool] = None, + subnet_id: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword authorized_ip_ranges: The IP ranges authorized to access the Kubernetes API server. IP + ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible + with clusters that use Public IP Per Node, or clusters that are using a Basic Load Balancer. + For more information see `API server authorized IP ranges + `_. + :paramtype authorized_ip_ranges: list[str] + :keyword enable_private_cluster: Whether to create the cluster as a private cluster or not. For + more details, see `Creating a private AKS cluster + `_. + :paramtype enable_private_cluster: bool + :keyword private_dns_zone: The private DNS zone mode for the cluster. The default is System. + For more details see `configure private DNS zone + `_. Allowed + values are 'system' and 'none'. + :paramtype private_dns_zone: str + :keyword enable_private_cluster_public_fqdn: Whether to create additional public FQDN for + private cluster or not. + :paramtype enable_private_cluster_public_fqdn: bool + :keyword disable_run_command: Whether to disable run command for the cluster or not. + :paramtype disable_run_command: bool + :keyword enable_vnet_integration: Whether to enable apiserver vnet integration for the cluster + or not. See aka.ms/AksVnetIntegration for more details. + :paramtype enable_vnet_integration: bool + :keyword subnet_id: The subnet to be used when apiserver vnet integration is enabled. It is + required when creating a new cluster with BYO Vnet, or when updating an existing cluster to + enable apiserver vnet integration. + :paramtype subnet_id: str + """ + super().__init__(**kwargs) + self.authorized_ip_ranges = authorized_ip_ranges + self.enable_private_cluster = enable_private_cluster + self.private_dns_zone = private_dns_zone + self.enable_private_cluster_public_fqdn = enable_private_cluster_public_fqdn + self.disable_run_command = disable_run_command + self.enable_vnet_integration = enable_vnet_integration + self.subnet_id = subnet_id + + +class ManagedClusterAutoUpgradeProfile(_serialization.Model): + """Auto upgrade profile for a managed cluster. + + :ivar upgrade_channel: The upgrade channel for auto upgrade. The default is 'none'. For more + information see `setting the AKS cluster auto-upgrade channel + `_. Known values + are: "rapid", "stable", "patch", "node-image", and "none". + :vartype upgrade_channel: str or ~azure.mgmt.containerservice.models.UpgradeChannel + :ivar node_os_upgrade_channel: Node OS Upgrade Channel. Manner in which the OS on your nodes is + updated. The default is NodeImage. Known values are: "None", "Unmanaged", "NodeImage", and + "SecurityPatch". + :vartype node_os_upgrade_channel: str or + ~azure.mgmt.containerservice.models.NodeOSUpgradeChannel + """ + + _attribute_map = { + "upgrade_channel": {"key": "upgradeChannel", "type": "str"}, + "node_os_upgrade_channel": {"key": "nodeOSUpgradeChannel", "type": "str"}, + } + + def __init__( + self, + *, + upgrade_channel: Optional[Union[str, "_models.UpgradeChannel"]] = None, + node_os_upgrade_channel: Optional[Union[str, "_models.NodeOSUpgradeChannel"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword upgrade_channel: The upgrade channel for auto upgrade. The default is 'none'. For more + information see `setting the AKS cluster auto-upgrade channel + `_. Known values + are: "rapid", "stable", "patch", "node-image", and "none". + :paramtype upgrade_channel: str or ~azure.mgmt.containerservice.models.UpgradeChannel + :keyword node_os_upgrade_channel: Node OS Upgrade Channel. Manner in which the OS on your nodes + is updated. The default is NodeImage. Known values are: "None", "Unmanaged", "NodeImage", and + "SecurityPatch". + :paramtype node_os_upgrade_channel: str or + ~azure.mgmt.containerservice.models.NodeOSUpgradeChannel + """ + super().__init__(**kwargs) + self.upgrade_channel = upgrade_channel + self.node_os_upgrade_channel = node_os_upgrade_channel + + +class ManagedClusterAzureMonitorProfile(_serialization.Model): + """Azure Monitor addon profiles for monitoring the managed cluster. + + :ivar metrics: Metrics profile for the Azure Monitor managed service for Prometheus addon. + Collect out-of-the-box Kubernetes infrastructure metrics to send to an Azure Monitor Workspace + and configure additional scraping for custom targets. See aka.ms/AzureManagedPrometheus for an + overview. + :vartype metrics: ~azure.mgmt.containerservice.models.ManagedClusterAzureMonitorProfileMetrics + """ + + _attribute_map = { + "metrics": {"key": "metrics", "type": "ManagedClusterAzureMonitorProfileMetrics"}, + } + + def __init__( + self, *, metrics: Optional["_models.ManagedClusterAzureMonitorProfileMetrics"] = None, **kwargs: Any + ) -> None: + """ + :keyword metrics: Metrics profile for the Azure Monitor managed service for Prometheus addon. + Collect out-of-the-box Kubernetes infrastructure metrics to send to an Azure Monitor Workspace + and configure additional scraping for custom targets. See aka.ms/AzureManagedPrometheus for an + overview. + :paramtype metrics: + ~azure.mgmt.containerservice.models.ManagedClusterAzureMonitorProfileMetrics + """ + super().__init__(**kwargs) + self.metrics = metrics + + +class ManagedClusterAzureMonitorProfileKubeStateMetrics(_serialization.Model): # pylint: disable=name-too-long + """Kube State Metrics profile for the Azure Managed Prometheus addon. These optional settings are + for the kube-state-metrics pod that is deployed with the addon. See + aka.ms/AzureManagedPrometheus-optional-parameters for details. + + :ivar metric_labels_allowlist: Comma-separated list of additional Kubernetes label keys that + will be used in the resource's labels metric (Example: + 'namespaces=[k8s-label-1,k8s-label-n,...],pods=[app],...'). By default the metric contains only + resource name and namespace labels. + :vartype metric_labels_allowlist: str + :ivar metric_annotations_allow_list: Comma-separated list of Kubernetes annotation keys that + will be used in the resource's labels metric (Example: + 'namespaces=[kubernetes.io/team,...],pods=[kubernetes.io/team],...'). By default the metric + contains only resource name and namespace labels. + :vartype metric_annotations_allow_list: str + """ + + _attribute_map = { + "metric_labels_allowlist": {"key": "metricLabelsAllowlist", "type": "str"}, + "metric_annotations_allow_list": {"key": "metricAnnotationsAllowList", "type": "str"}, + } + + def __init__( + self, + *, + metric_labels_allowlist: Optional[str] = None, + metric_annotations_allow_list: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword metric_labels_allowlist: Comma-separated list of additional Kubernetes label keys that + will be used in the resource's labels metric (Example: + 'namespaces=[k8s-label-1,k8s-label-n,...],pods=[app],...'). By default the metric contains only + resource name and namespace labels. + :paramtype metric_labels_allowlist: str + :keyword metric_annotations_allow_list: Comma-separated list of Kubernetes annotation keys that + will be used in the resource's labels metric (Example: + 'namespaces=[kubernetes.io/team,...],pods=[kubernetes.io/team],...'). By default the metric + contains only resource name and namespace labels. + :paramtype metric_annotations_allow_list: str + """ + super().__init__(**kwargs) + self.metric_labels_allowlist = metric_labels_allowlist + self.metric_annotations_allow_list = metric_annotations_allow_list + + +class ManagedClusterAzureMonitorProfileMetrics(_serialization.Model): + """Metrics profile for the Azure Monitor managed service for Prometheus addon. Collect + out-of-the-box Kubernetes infrastructure metrics to send to an Azure Monitor Workspace and + configure additional scraping for custom targets. See aka.ms/AzureManagedPrometheus for an + overview. + + All required parameters must be populated in order to send to server. + + :ivar enabled: Whether to enable or disable the Azure Managed Prometheus addon for Prometheus + monitoring. See aka.ms/AzureManagedPrometheus-aks-enable for details on enabling and disabling. + Required. + :vartype enabled: bool + :ivar kube_state_metrics: Kube State Metrics profile for the Azure Managed Prometheus addon. + These optional settings are for the kube-state-metrics pod that is deployed with the addon. See + aka.ms/AzureManagedPrometheus-optional-parameters for details. + :vartype kube_state_metrics: + ~azure.mgmt.containerservice.models.ManagedClusterAzureMonitorProfileKubeStateMetrics + """ + + _validation = { + "enabled": {"required": True}, + } + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + "kube_state_metrics": {"key": "kubeStateMetrics", "type": "ManagedClusterAzureMonitorProfileKubeStateMetrics"}, + } + + def __init__( + self, + *, + enabled: bool, + kube_state_metrics: Optional["_models.ManagedClusterAzureMonitorProfileKubeStateMetrics"] = None, + **kwargs: Any + ) -> None: + """ + :keyword enabled: Whether to enable or disable the Azure Managed Prometheus addon for + Prometheus monitoring. See aka.ms/AzureManagedPrometheus-aks-enable for details on enabling and + disabling. Required. + :paramtype enabled: bool + :keyword kube_state_metrics: Kube State Metrics profile for the Azure Managed Prometheus addon. + These optional settings are for the kube-state-metrics pod that is deployed with the addon. See + aka.ms/AzureManagedPrometheus-optional-parameters for details. + :paramtype kube_state_metrics: + ~azure.mgmt.containerservice.models.ManagedClusterAzureMonitorProfileKubeStateMetrics + """ + super().__init__(**kwargs) + self.enabled = enabled + self.kube_state_metrics = kube_state_metrics + + +class ManagedClusterBootstrapProfile(_serialization.Model): + """The bootstrap profile. + + :ivar artifact_source: The artifact source. The source where the artifacts are downloaded from. + Known values are: "Cache" and "Direct". + :vartype artifact_source: str or ~azure.mgmt.containerservice.models.ArtifactSource + :ivar container_registry_id: The resource Id of Azure Container Registry. The registry must + have private network access, premium SKU and zone redundancy. + :vartype container_registry_id: str + """ + + _attribute_map = { + "artifact_source": {"key": "artifactSource", "type": "str"}, + "container_registry_id": {"key": "containerRegistryId", "type": "str"}, + } + + def __init__( + self, + *, + artifact_source: Union[str, "_models.ArtifactSource"] = "Direct", + container_registry_id: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword artifact_source: The artifact source. The source where the artifacts are downloaded + from. Known values are: "Cache" and "Direct". + :paramtype artifact_source: str or ~azure.mgmt.containerservice.models.ArtifactSource + :keyword container_registry_id: The resource Id of Azure Container Registry. The registry must + have private network access, premium SKU and zone redundancy. + :paramtype container_registry_id: str + """ + super().__init__(**kwargs) + self.artifact_source = artifact_source + self.container_registry_id = container_registry_id + + +class ManagedClusterCostAnalysis(_serialization.Model): + """The cost analysis configuration for the cluster. + + :ivar enabled: Whether to enable cost analysis. The Managed Cluster sku.tier must be set to + 'Standard' or 'Premium' to enable this feature. Enabling this will add Kubernetes Namespace and + Deployment details to the Cost Analysis views in the Azure portal. If not specified, the + default is false. For more information see aka.ms/aks/docs/cost-analysis. + :vartype enabled: bool + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable cost analysis. The Managed Cluster sku.tier must be set to + 'Standard' or 'Premium' to enable this feature. Enabling this will add Kubernetes Namespace and + Deployment details to the Cost Analysis views in the Azure portal. If not specified, the + default is false. For more information see aka.ms/aks/docs/cost-analysis. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedClusterHTTPProxyConfig(_serialization.Model): + """Cluster HTTP proxy configuration. + + :ivar http_proxy: The HTTP proxy server endpoint to use. + :vartype http_proxy: str + :ivar https_proxy: The HTTPS proxy server endpoint to use. + :vartype https_proxy: str + :ivar no_proxy: The endpoints that should not go through proxy. + :vartype no_proxy: list[str] + :ivar trusted_ca: Alternative CA cert to use for connecting to proxy servers. + :vartype trusted_ca: str + """ + + _attribute_map = { + "http_proxy": {"key": "httpProxy", "type": "str"}, + "https_proxy": {"key": "httpsProxy", "type": "str"}, + "no_proxy": {"key": "noProxy", "type": "[str]"}, + "trusted_ca": {"key": "trustedCa", "type": "str"}, + } + + def __init__( + self, + *, + http_proxy: Optional[str] = None, + https_proxy: Optional[str] = None, + no_proxy: Optional[list[str]] = None, + trusted_ca: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword http_proxy: The HTTP proxy server endpoint to use. + :paramtype http_proxy: str + :keyword https_proxy: The HTTPS proxy server endpoint to use. + :paramtype https_proxy: str + :keyword no_proxy: The endpoints that should not go through proxy. + :paramtype no_proxy: list[str] + :keyword trusted_ca: Alternative CA cert to use for connecting to proxy servers. + :paramtype trusted_ca: str + """ + super().__init__(**kwargs) + self.http_proxy = http_proxy + self.https_proxy = https_proxy + self.no_proxy = no_proxy + self.trusted_ca = trusted_ca + + +class ManagedClusterIdentity(_serialization.Model): + """Identity for the managed cluster. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar principal_id: The principal id of the system assigned identity which is used by master + components. + :vartype principal_id: str + :ivar tenant_id: The tenant id of the system assigned identity which is used by master + components. + :vartype tenant_id: str + :ivar type: The type of identity used for the managed cluster. For more information see `use + managed identities in AKS `_. Known + values are: "SystemAssigned", "UserAssigned", and "None". + :vartype type: str or ~azure.mgmt.containerservice.models.ResourceIdentityType + :ivar delegated_resources: The delegated identity resources assigned to this managed cluster. + This can only be set by another Azure Resource Provider, and managed cluster only accept one + delegated identity resource. Internal use only. + :vartype delegated_resources: dict[str, ~azure.mgmt.containerservice.models.DelegatedResource] + :ivar user_assigned_identities: The user identity associated with the managed cluster. This + identity will be used in control plane. Only one user assigned identity is allowed. The keys + must be ARM resource IDs in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + :vartype user_assigned_identities: dict[str, + ~azure.mgmt.containerservice.models.ManagedServiceIdentityUserAssignedIdentitiesValue] + """ + + _validation = { + "principal_id": {"readonly": True}, + "tenant_id": {"readonly": True}, + } + + _attribute_map = { + "principal_id": {"key": "principalId", "type": "str"}, + "tenant_id": {"key": "tenantId", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "delegated_resources": {"key": "delegatedResources", "type": "{DelegatedResource}"}, + "user_assigned_identities": { + "key": "userAssignedIdentities", + "type": "{ManagedServiceIdentityUserAssignedIdentitiesValue}", + }, + } + + def __init__( + self, + *, + type: Optional[Union[str, "_models.ResourceIdentityType"]] = None, + delegated_resources: Optional[dict[str, "_models.DelegatedResource"]] = None, + user_assigned_identities: Optional[ + dict[str, "_models.ManagedServiceIdentityUserAssignedIdentitiesValue"] + ] = None, + **kwargs: Any + ) -> None: + """ + :keyword type: The type of identity used for the managed cluster. For more information see `use + managed identities in AKS `_. Known + values are: "SystemAssigned", "UserAssigned", and "None". + :paramtype type: str or ~azure.mgmt.containerservice.models.ResourceIdentityType + :keyword delegated_resources: The delegated identity resources assigned to this managed + cluster. This can only be set by another Azure Resource Provider, and managed cluster only + accept one delegated identity resource. Internal use only. + :paramtype delegated_resources: dict[str, + ~azure.mgmt.containerservice.models.DelegatedResource] + :keyword user_assigned_identities: The user identity associated with the managed cluster. This + identity will be used in control plane. Only one user assigned identity is allowed. The keys + must be ARM resource IDs in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + :paramtype user_assigned_identities: dict[str, + ~azure.mgmt.containerservice.models.ManagedServiceIdentityUserAssignedIdentitiesValue] + """ + super().__init__(**kwargs) + self.principal_id: Optional[str] = None + self.tenant_id: Optional[str] = None + self.type = type + self.delegated_resources = delegated_resources + self.user_assigned_identities = user_assigned_identities + + +class ManagedClusterIngressProfile(_serialization.Model): + """Ingress profile for the container service cluster. + + :ivar web_app_routing: App Routing settings for the ingress profile. You can find an overview + and onboarding guide for this feature at + https://learn.microsoft.com/en-us/azure/aks/app-routing?tabs=default%2Cdeploy-app-default. + :vartype web_app_routing: + ~azure.mgmt.containerservice.models.ManagedClusterIngressProfileWebAppRouting + """ + + _attribute_map = { + "web_app_routing": {"key": "webAppRouting", "type": "ManagedClusterIngressProfileWebAppRouting"}, + } + + def __init__( + self, *, web_app_routing: Optional["_models.ManagedClusterIngressProfileWebAppRouting"] = None, **kwargs: Any + ) -> None: + """ + :keyword web_app_routing: App Routing settings for the ingress profile. You can find an + overview and onboarding guide for this feature at + https://learn.microsoft.com/en-us/azure/aks/app-routing?tabs=default%2Cdeploy-app-default. + :paramtype web_app_routing: + ~azure.mgmt.containerservice.models.ManagedClusterIngressProfileWebAppRouting + """ + super().__init__(**kwargs) + self.web_app_routing = web_app_routing + + +class ManagedClusterIngressProfileNginx(_serialization.Model): + """ManagedClusterIngressProfileNginx. + + :ivar default_ingress_controller_type: Ingress type for the default NginxIngressController + custom resource. Known values are: "AnnotationControlled", "External", "Internal", and "None". + :vartype default_ingress_controller_type: str or + ~azure.mgmt.containerservice.models.NginxIngressControllerType + """ + + _attribute_map = { + "default_ingress_controller_type": {"key": "defaultIngressControllerType", "type": "str"}, + } + + def __init__( + self, + *, + default_ingress_controller_type: Optional[Union[str, "_models.NginxIngressControllerType"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword default_ingress_controller_type: Ingress type for the default NginxIngressController + custom resource. Known values are: "AnnotationControlled", "External", "Internal", and "None". + :paramtype default_ingress_controller_type: str or + ~azure.mgmt.containerservice.models.NginxIngressControllerType + """ + super().__init__(**kwargs) + self.default_ingress_controller_type = default_ingress_controller_type + + +class ManagedClusterIngressProfileWebAppRouting(_serialization.Model): # pylint: disable=name-too-long + """Application Routing add-on settings for the ingress profile. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar enabled: Whether to enable the Application Routing add-on. + :vartype enabled: bool + :ivar dns_zone_resource_ids: Resource IDs of the DNS zones to be associated with the + Application Routing add-on. Used only when Application Routing add-on is enabled. Public and + private DNS zones can be in different resource groups, but all public DNS zones must be in the + same resource group and all private DNS zones must be in the same resource group. + :vartype dns_zone_resource_ids: list[str] + :ivar nginx: Configuration for the default NginxIngressController. See more at + https://learn.microsoft.com/en-us/azure/aks/app-routing-nginx-configuration#the-default-nginx-ingress-controller. + :vartype nginx: ~azure.mgmt.containerservice.models.ManagedClusterIngressProfileNginx + :ivar identity: Managed identity of the Application Routing add-on. This is the identity that + should be granted permissions, for example, to manage the associated Azure DNS resource and get + certificates from Azure Key Vault. See `this overview of the add-on + `_ for more + instructions. + :vartype identity: ~azure.mgmt.containerservice.models.UserAssignedIdentity + """ + + _validation = { + "dns_zone_resource_ids": {"max_items": 5, "min_items": 0}, + "identity": {"readonly": True}, + } + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + "dns_zone_resource_ids": {"key": "dnsZoneResourceIds", "type": "[str]"}, + "nginx": {"key": "nginx", "type": "ManagedClusterIngressProfileNginx"}, + "identity": {"key": "identity", "type": "UserAssignedIdentity"}, + } + + def __init__( + self, + *, + enabled: Optional[bool] = None, + dns_zone_resource_ids: Optional[list[str]] = None, + nginx: Optional["_models.ManagedClusterIngressProfileNginx"] = None, + **kwargs: Any + ) -> None: + """ + :keyword enabled: Whether to enable the Application Routing add-on. + :paramtype enabled: bool + :keyword dns_zone_resource_ids: Resource IDs of the DNS zones to be associated with the + Application Routing add-on. Used only when Application Routing add-on is enabled. Public and + private DNS zones can be in different resource groups, but all public DNS zones must be in the + same resource group and all private DNS zones must be in the same resource group. + :paramtype dns_zone_resource_ids: list[str] + :keyword nginx: Configuration for the default NginxIngressController. See more at + https://learn.microsoft.com/en-us/azure/aks/app-routing-nginx-configuration#the-default-nginx-ingress-controller. + :paramtype nginx: ~azure.mgmt.containerservice.models.ManagedClusterIngressProfileNginx + """ + super().__init__(**kwargs) + self.enabled = enabled + self.dns_zone_resource_ids = dns_zone_resource_ids + self.nginx = nginx + self.identity: Optional["_models.UserAssignedIdentity"] = None + + +class ManagedClusterListResult(_serialization.Model): + """The response from the List Managed Clusters operation. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: The list of managed clusters. + :vartype value: list[~azure.mgmt.containerservice.models.ManagedCluster] + :ivar next_link: The URL to get the next set of managed cluster results. + :vartype next_link: str + """ + + _validation = { + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[ManagedCluster]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, *, value: Optional[list["_models.ManagedCluster"]] = None, **kwargs: Any) -> None: + """ + :keyword value: The list of managed clusters. + :paramtype value: list[~azure.mgmt.containerservice.models.ManagedCluster] + """ + super().__init__(**kwargs) + self.value = value + self.next_link: Optional[str] = None + + +class ManagedClusterLoadBalancerProfile(_serialization.Model): + """Profile of the managed cluster load balancer. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar managed_outbound_i_ps: Desired managed outbound IPs for the cluster load balancer. + :vartype managed_outbound_i_ps: + ~azure.mgmt.containerservice.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs + :ivar outbound_ip_prefixes: Desired outbound IP Prefix resources for the cluster load balancer. + :vartype outbound_ip_prefixes: + ~azure.mgmt.containerservice.models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes + :ivar outbound_i_ps: Desired outbound IP resources for the cluster load balancer. + :vartype outbound_i_ps: + ~azure.mgmt.containerservice.models.ManagedClusterLoadBalancerProfileOutboundIPs + :ivar effective_outbound_i_ps: The effective outbound IP resources of the cluster load + balancer. + :vartype effective_outbound_i_ps: list[~azure.mgmt.containerservice.models.ResourceReference] + :ivar allocated_outbound_ports: The desired number of allocated SNAT ports per VM. Allowed + values are in the range of 0 to 64000 (inclusive). The default value is 0 which results in + Azure dynamically allocating ports. + :vartype allocated_outbound_ports: int + :ivar idle_timeout_in_minutes: Desired outbound flow idle timeout in minutes. Allowed values + are in the range of 4 to 120 (inclusive). The default value is 30 minutes. + :vartype idle_timeout_in_minutes: int + :ivar enable_multiple_standard_load_balancers: Enable multiple standard load balancers per AKS + cluster or not. + :vartype enable_multiple_standard_load_balancers: bool + :ivar backend_pool_type: The type of the managed inbound Load Balancer BackendPool. Known + values are: "NodeIPConfiguration" and "NodeIP". + :vartype backend_pool_type: str or ~azure.mgmt.containerservice.models.BackendPoolType + """ + + _validation = { + "effective_outbound_i_ps": {"readonly": True}, + "allocated_outbound_ports": {"maximum": 64000, "minimum": 0}, + "idle_timeout_in_minutes": {"maximum": 120, "minimum": 4}, + } + + _attribute_map = { + "managed_outbound_i_ps": { + "key": "managedOutboundIPs", + "type": "ManagedClusterLoadBalancerProfileManagedOutboundIPs", + }, + "outbound_ip_prefixes": { + "key": "outboundIPPrefixes", + "type": "ManagedClusterLoadBalancerProfileOutboundIPPrefixes", + }, + "outbound_i_ps": {"key": "outboundIPs", "type": "ManagedClusterLoadBalancerProfileOutboundIPs"}, + "effective_outbound_i_ps": {"key": "effectiveOutboundIPs", "type": "[ResourceReference]"}, + "allocated_outbound_ports": {"key": "allocatedOutboundPorts", "type": "int"}, + "idle_timeout_in_minutes": {"key": "idleTimeoutInMinutes", "type": "int"}, + "enable_multiple_standard_load_balancers": {"key": "enableMultipleStandardLoadBalancers", "type": "bool"}, + "backend_pool_type": {"key": "backendPoolType", "type": "str"}, + } + + def __init__( + self, + *, + managed_outbound_i_ps: Optional["_models.ManagedClusterLoadBalancerProfileManagedOutboundIPs"] = None, + outbound_ip_prefixes: Optional["_models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes"] = None, + outbound_i_ps: Optional["_models.ManagedClusterLoadBalancerProfileOutboundIPs"] = None, + allocated_outbound_ports: int = 0, + idle_timeout_in_minutes: int = 30, + enable_multiple_standard_load_balancers: Optional[bool] = None, + backend_pool_type: Union[str, "_models.BackendPoolType"] = "NodeIPConfiguration", + **kwargs: Any + ) -> None: + """ + :keyword managed_outbound_i_ps: Desired managed outbound IPs for the cluster load balancer. + :paramtype managed_outbound_i_ps: + ~azure.mgmt.containerservice.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs + :keyword outbound_ip_prefixes: Desired outbound IP Prefix resources for the cluster load + balancer. + :paramtype outbound_ip_prefixes: + ~azure.mgmt.containerservice.models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes + :keyword outbound_i_ps: Desired outbound IP resources for the cluster load balancer. + :paramtype outbound_i_ps: + ~azure.mgmt.containerservice.models.ManagedClusterLoadBalancerProfileOutboundIPs + :keyword allocated_outbound_ports: The desired number of allocated SNAT ports per VM. Allowed + values are in the range of 0 to 64000 (inclusive). The default value is 0 which results in + Azure dynamically allocating ports. + :paramtype allocated_outbound_ports: int + :keyword idle_timeout_in_minutes: Desired outbound flow idle timeout in minutes. Allowed values + are in the range of 4 to 120 (inclusive). The default value is 30 minutes. + :paramtype idle_timeout_in_minutes: int + :keyword enable_multiple_standard_load_balancers: Enable multiple standard load balancers per + AKS cluster or not. + :paramtype enable_multiple_standard_load_balancers: bool + :keyword backend_pool_type: The type of the managed inbound Load Balancer BackendPool. Known + values are: "NodeIPConfiguration" and "NodeIP". + :paramtype backend_pool_type: str or ~azure.mgmt.containerservice.models.BackendPoolType + """ + super().__init__(**kwargs) + self.managed_outbound_i_ps = managed_outbound_i_ps + self.outbound_ip_prefixes = outbound_ip_prefixes + self.outbound_i_ps = outbound_i_ps + self.effective_outbound_i_ps: Optional[list["_models.ResourceReference"]] = None + self.allocated_outbound_ports = allocated_outbound_ports + self.idle_timeout_in_minutes = idle_timeout_in_minutes + self.enable_multiple_standard_load_balancers = enable_multiple_standard_load_balancers + self.backend_pool_type = backend_pool_type + + +class ManagedClusterLoadBalancerProfileManagedOutboundIPs(_serialization.Model): # pylint: disable=name-too-long + """Desired managed outbound IPs for the cluster load balancer. + + :ivar count: The desired number of IPv4 outbound IPs created/managed by Azure for the cluster + load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default value + is 1. + :vartype count: int + :ivar count_ipv6: The desired number of IPv6 outbound IPs created/managed by Azure for the + cluster load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default + value is 0 for single-stack and 1 for dual-stack. + :vartype count_ipv6: int + """ + + _validation = { + "count": {"maximum": 100, "minimum": 1}, + "count_ipv6": {"maximum": 100, "minimum": 0}, + } + + _attribute_map = { + "count": {"key": "count", "type": "int"}, + "count_ipv6": {"key": "countIPv6", "type": "int"}, + } + + def __init__(self, *, count: int = 1, count_ipv6: int = 0, **kwargs: Any) -> None: + """ + :keyword count: The desired number of IPv4 outbound IPs created/managed by Azure for the + cluster load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default + value is 1. + :paramtype count: int + :keyword count_ipv6: The desired number of IPv6 outbound IPs created/managed by Azure for the + cluster load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default + value is 0 for single-stack and 1 for dual-stack. + :paramtype count_ipv6: int + """ + super().__init__(**kwargs) + self.count = count + self.count_ipv6 = count_ipv6 + + +class ManagedClusterLoadBalancerProfileOutboundIPPrefixes(_serialization.Model): # pylint: disable=name-too-long + """Desired outbound IP Prefix resources for the cluster load balancer. + + :ivar public_ip_prefixes: A list of public IP prefix resources. + :vartype public_ip_prefixes: list[~azure.mgmt.containerservice.models.ResourceReference] + """ + + _attribute_map = { + "public_ip_prefixes": {"key": "publicIPPrefixes", "type": "[ResourceReference]"}, + } + + def __init__( + self, *, public_ip_prefixes: Optional[list["_models.ResourceReference"]] = None, **kwargs: Any + ) -> None: + """ + :keyword public_ip_prefixes: A list of public IP prefix resources. + :paramtype public_ip_prefixes: list[~azure.mgmt.containerservice.models.ResourceReference] + """ + super().__init__(**kwargs) + self.public_ip_prefixes = public_ip_prefixes + + +class ManagedClusterLoadBalancerProfileOutboundIPs(_serialization.Model): # pylint: disable=name-too-long + """Desired outbound IP resources for the cluster load balancer. + + :ivar public_i_ps: A list of public IP resources. + :vartype public_i_ps: list[~azure.mgmt.containerservice.models.ResourceReference] + """ + + _attribute_map = { + "public_i_ps": {"key": "publicIPs", "type": "[ResourceReference]"}, + } + + def __init__(self, *, public_i_ps: Optional[list["_models.ResourceReference"]] = None, **kwargs: Any) -> None: + """ + :keyword public_i_ps: A list of public IP resources. + :paramtype public_i_ps: list[~azure.mgmt.containerservice.models.ResourceReference] + """ + super().__init__(**kwargs) + self.public_i_ps = public_i_ps + + +class ManagedClusterManagedOutboundIPProfile(_serialization.Model): + """Profile of the managed outbound IP resources of the managed cluster. + + :ivar count: The desired number of outbound IPs created/managed by Azure. Allowed values must + be in the range of 1 to 16 (inclusive). The default value is 1. + :vartype count: int + """ + + _validation = { + "count": {"maximum": 16, "minimum": 1}, + } + + _attribute_map = { + "count": {"key": "count", "type": "int"}, + } + + def __init__(self, *, count: int = 1, **kwargs: Any) -> None: + """ + :keyword count: The desired number of outbound IPs created/managed by Azure. Allowed values + must be in the range of 1 to 16 (inclusive). The default value is 1. + :paramtype count: int + """ + super().__init__(**kwargs) + self.count = count + + +class ManagedClusterMetricsProfile(_serialization.Model): + """The metrics profile for the ManagedCluster. + + :ivar cost_analysis: The configuration for detailed per-Kubernetes resource cost analysis. + :vartype cost_analysis: ~azure.mgmt.containerservice.models.ManagedClusterCostAnalysis + """ + + _attribute_map = { + "cost_analysis": {"key": "costAnalysis", "type": "ManagedClusterCostAnalysis"}, + } + + def __init__(self, *, cost_analysis: Optional["_models.ManagedClusterCostAnalysis"] = None, **kwargs: Any) -> None: + """ + :keyword cost_analysis: The configuration for detailed per-Kubernetes resource cost analysis. + :paramtype cost_analysis: ~azure.mgmt.containerservice.models.ManagedClusterCostAnalysis + """ + super().__init__(**kwargs) + self.cost_analysis = cost_analysis + + +class ManagedClusterNATGatewayProfile(_serialization.Model): + """Profile of the managed cluster NAT gateway. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar managed_outbound_ip_profile: Profile of the managed outbound IP resources of the cluster + NAT gateway. + :vartype managed_outbound_ip_profile: + ~azure.mgmt.containerservice.models.ManagedClusterManagedOutboundIPProfile + :ivar effective_outbound_i_ps: The effective outbound IP resources of the cluster NAT gateway. + :vartype effective_outbound_i_ps: list[~azure.mgmt.containerservice.models.ResourceReference] + :ivar idle_timeout_in_minutes: Desired outbound flow idle timeout in minutes. Allowed values + are in the range of 4 to 120 (inclusive). The default value is 4 minutes. + :vartype idle_timeout_in_minutes: int + """ + + _validation = { + "effective_outbound_i_ps": {"readonly": True}, + "idle_timeout_in_minutes": {"maximum": 120, "minimum": 4}, + } + + _attribute_map = { + "managed_outbound_ip_profile": { + "key": "managedOutboundIPProfile", + "type": "ManagedClusterManagedOutboundIPProfile", + }, + "effective_outbound_i_ps": {"key": "effectiveOutboundIPs", "type": "[ResourceReference]"}, + "idle_timeout_in_minutes": {"key": "idleTimeoutInMinutes", "type": "int"}, + } + + def __init__( + self, + *, + managed_outbound_ip_profile: Optional["_models.ManagedClusterManagedOutboundIPProfile"] = None, + idle_timeout_in_minutes: int = 4, + **kwargs: Any + ) -> None: + """ + :keyword managed_outbound_ip_profile: Profile of the managed outbound IP resources of the + cluster NAT gateway. + :paramtype managed_outbound_ip_profile: + ~azure.mgmt.containerservice.models.ManagedClusterManagedOutboundIPProfile + :keyword idle_timeout_in_minutes: Desired outbound flow idle timeout in minutes. Allowed values + are in the range of 4 to 120 (inclusive). The default value is 4 minutes. + :paramtype idle_timeout_in_minutes: int + """ + super().__init__(**kwargs) + self.managed_outbound_ip_profile = managed_outbound_ip_profile + self.effective_outbound_i_ps: Optional[list["_models.ResourceReference"]] = None + self.idle_timeout_in_minutes = idle_timeout_in_minutes + + +class ManagedClusterNodeProvisioningProfile(_serialization.Model): + """ManagedClusterNodeProvisioningProfile. + + :ivar mode: The node provisioning mode. If not specified, the default is Manual. Known values + are: "Manual" and "Auto". + :vartype mode: str or ~azure.mgmt.containerservice.models.NodeProvisioningMode + :ivar default_node_pools: The set of default Karpenter NodePools (CRDs) configured for node + provisioning. This field has no effect unless mode is 'Auto'. Warning: Changing this from Auto + to None on an existing cluster will cause the default Karpenter NodePools to be deleted, which + will drain and delete the nodes associated with those pools. It is strongly recommended to not + do this unless there are idle nodes ready to take the pods evicted by that action. If not + specified, the default is Auto. For more information see aka.ms/aks/nap#node-pools. Known + values are: "None" and "Auto". + :vartype default_node_pools: str or + ~azure.mgmt.containerservice.models.NodeProvisioningDefaultNodePools + """ + + _attribute_map = { + "mode": {"key": "mode", "type": "str"}, + "default_node_pools": {"key": "defaultNodePools", "type": "str"}, + } + + def __init__( + self, + *, + mode: Optional[Union[str, "_models.NodeProvisioningMode"]] = None, + default_node_pools: Union[str, "_models.NodeProvisioningDefaultNodePools"] = "Auto", + **kwargs: Any + ) -> None: + """ + :keyword mode: The node provisioning mode. If not specified, the default is Manual. Known + values are: "Manual" and "Auto". + :paramtype mode: str or ~azure.mgmt.containerservice.models.NodeProvisioningMode + :keyword default_node_pools: The set of default Karpenter NodePools (CRDs) configured for node + provisioning. This field has no effect unless mode is 'Auto'. Warning: Changing this from Auto + to None on an existing cluster will cause the default Karpenter NodePools to be deleted, which + will drain and delete the nodes associated with those pools. It is strongly recommended to not + do this unless there are idle nodes ready to take the pods evicted by that action. If not + specified, the default is Auto. For more information see aka.ms/aks/nap#node-pools. Known + values are: "None" and "Auto". + :paramtype default_node_pools: str or + ~azure.mgmt.containerservice.models.NodeProvisioningDefaultNodePools + """ + super().__init__(**kwargs) + self.mode = mode + self.default_node_pools = default_node_pools + + +class ManagedClusterNodeResourceGroupProfile(_serialization.Model): + """Node resource group lockdown profile for a managed cluster. + + :ivar restriction_level: The restriction level applied to the cluster's node resource group. If + not specified, the default is 'Unrestricted'. Known values are: "Unrestricted" and "ReadOnly". + :vartype restriction_level: str or ~azure.mgmt.containerservice.models.RestrictionLevel + """ + + _attribute_map = { + "restriction_level": {"key": "restrictionLevel", "type": "str"}, + } + + def __init__( + self, *, restriction_level: Optional[Union[str, "_models.RestrictionLevel"]] = None, **kwargs: Any + ) -> None: + """ + :keyword restriction_level: The restriction level applied to the cluster's node resource group. + If not specified, the default is 'Unrestricted'. Known values are: "Unrestricted" and + "ReadOnly". + :paramtype restriction_level: str or ~azure.mgmt.containerservice.models.RestrictionLevel + """ + super().__init__(**kwargs) + self.restriction_level = restriction_level + + +class ManagedClusterOIDCIssuerProfile(_serialization.Model): + """The OIDC issuer profile of the Managed Cluster. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar issuer_url: The OIDC issuer url of the Managed Cluster. + :vartype issuer_url: str + :ivar enabled: Whether the OIDC issuer is enabled. + :vartype enabled: bool + """ + + _validation = { + "issuer_url": {"readonly": True}, + } + + _attribute_map = { + "issuer_url": {"key": "issuerURL", "type": "str"}, + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether the OIDC issuer is enabled. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.issuer_url: Optional[str] = None + self.enabled = enabled + + +class ManagedClusterPodIdentity(_serialization.Model): + """Details about the pod identity assigned to the Managed Cluster. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar name: The name of the pod identity. Required. + :vartype name: str + :ivar namespace: The namespace of the pod identity. Required. + :vartype namespace: str + :ivar binding_selector: The binding selector to use for the AzureIdentityBinding resource. + :vartype binding_selector: str + :ivar identity: The user assigned identity details. Required. + :vartype identity: ~azure.mgmt.containerservice.models.UserAssignedIdentity + :ivar provisioning_state: The current provisioning state of the pod identity. Known values are: + "Assigned", "Canceled", "Deleting", "Failed", "Succeeded", and "Updating". + :vartype provisioning_state: str or + ~azure.mgmt.containerservice.models.ManagedClusterPodIdentityProvisioningState + :ivar provisioning_info: + :vartype provisioning_info: + ~azure.mgmt.containerservice.models.ManagedClusterPodIdentityProvisioningInfo + """ + + _validation = { + "name": {"required": True}, + "namespace": {"required": True}, + "identity": {"required": True}, + "provisioning_state": {"readonly": True}, + "provisioning_info": {"readonly": True}, + } + + _attribute_map = { + "name": {"key": "name", "type": "str"}, + "namespace": {"key": "namespace", "type": "str"}, + "binding_selector": {"key": "bindingSelector", "type": "str"}, + "identity": {"key": "identity", "type": "UserAssignedIdentity"}, + "provisioning_state": {"key": "provisioningState", "type": "str"}, + "provisioning_info": {"key": "provisioningInfo", "type": "ManagedClusterPodIdentityProvisioningInfo"}, + } + + def __init__( + self, + *, + name: str, + namespace: str, + identity: "_models.UserAssignedIdentity", + binding_selector: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword name: The name of the pod identity. Required. + :paramtype name: str + :keyword namespace: The namespace of the pod identity. Required. + :paramtype namespace: str + :keyword binding_selector: The binding selector to use for the AzureIdentityBinding resource. + :paramtype binding_selector: str + :keyword identity: The user assigned identity details. Required. + :paramtype identity: ~azure.mgmt.containerservice.models.UserAssignedIdentity + """ + super().__init__(**kwargs) + self.name = name + self.namespace = namespace + self.binding_selector = binding_selector + self.identity = identity + self.provisioning_state: Optional[Union[str, "_models.ManagedClusterPodIdentityProvisioningState"]] = None + self.provisioning_info: Optional["_models.ManagedClusterPodIdentityProvisioningInfo"] = None + + +class ManagedClusterPodIdentityException(_serialization.Model): + """A pod identity exception, which allows pods with certain labels to access the Azure Instance + Metadata Service (IMDS) endpoint without being intercepted by the node-managed identity (NMI) + server. See `disable AAD Pod Identity for a specific Pod/Application + `_ for more + details. + + All required parameters must be populated in order to send to server. + + :ivar name: The name of the pod identity exception. Required. + :vartype name: str + :ivar namespace: The namespace of the pod identity exception. Required. + :vartype namespace: str + :ivar pod_labels: The pod labels to match. Required. + :vartype pod_labels: dict[str, str] + """ + + _validation = { + "name": {"required": True}, + "namespace": {"required": True}, + "pod_labels": {"required": True}, + } + + _attribute_map = { + "name": {"key": "name", "type": "str"}, + "namespace": {"key": "namespace", "type": "str"}, + "pod_labels": {"key": "podLabels", "type": "{str}"}, + } + + def __init__(self, *, name: str, namespace: str, pod_labels: dict[str, str], **kwargs: Any) -> None: + """ + :keyword name: The name of the pod identity exception. Required. + :paramtype name: str + :keyword namespace: The namespace of the pod identity exception. Required. + :paramtype namespace: str + :keyword pod_labels: The pod labels to match. Required. + :paramtype pod_labels: dict[str, str] + """ + super().__init__(**kwargs) + self.name = name + self.namespace = namespace + self.pod_labels = pod_labels + + +class ManagedClusterPodIdentityProfile(_serialization.Model): + """The pod identity profile of the Managed Cluster. See `use AAD pod identity + `_ for more details on pod + identity integration. + + :ivar enabled: Whether the pod identity addon is enabled. + :vartype enabled: bool + :ivar allow_network_plugin_kubenet: Whether pod identity is allowed to run on clusters with + Kubenet networking. Running in Kubenet is disabled by default due to the security related + nature of AAD Pod Identity and the risks of IP spoofing. See `using Kubenet network plugin with + AAD Pod Identity + `_ + for more information. + :vartype allow_network_plugin_kubenet: bool + :ivar user_assigned_identities: The pod identities to use in the cluster. + :vartype user_assigned_identities: + list[~azure.mgmt.containerservice.models.ManagedClusterPodIdentity] + :ivar user_assigned_identity_exceptions: The pod identity exceptions to allow. + :vartype user_assigned_identity_exceptions: + list[~azure.mgmt.containerservice.models.ManagedClusterPodIdentityException] + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + "allow_network_plugin_kubenet": {"key": "allowNetworkPluginKubenet", "type": "bool"}, + "user_assigned_identities": {"key": "userAssignedIdentities", "type": "[ManagedClusterPodIdentity]"}, + "user_assigned_identity_exceptions": { + "key": "userAssignedIdentityExceptions", + "type": "[ManagedClusterPodIdentityException]", + }, + } + + def __init__( + self, + *, + enabled: Optional[bool] = None, + allow_network_plugin_kubenet: Optional[bool] = None, + user_assigned_identities: Optional[list["_models.ManagedClusterPodIdentity"]] = None, + user_assigned_identity_exceptions: Optional[list["_models.ManagedClusterPodIdentityException"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword enabled: Whether the pod identity addon is enabled. + :paramtype enabled: bool + :keyword allow_network_plugin_kubenet: Whether pod identity is allowed to run on clusters with + Kubenet networking. Running in Kubenet is disabled by default due to the security related + nature of AAD Pod Identity and the risks of IP spoofing. See `using Kubenet network plugin with + AAD Pod Identity + `_ + for more information. + :paramtype allow_network_plugin_kubenet: bool + :keyword user_assigned_identities: The pod identities to use in the cluster. + :paramtype user_assigned_identities: + list[~azure.mgmt.containerservice.models.ManagedClusterPodIdentity] + :keyword user_assigned_identity_exceptions: The pod identity exceptions to allow. + :paramtype user_assigned_identity_exceptions: + list[~azure.mgmt.containerservice.models.ManagedClusterPodIdentityException] + """ + super().__init__(**kwargs) + self.enabled = enabled + self.allow_network_plugin_kubenet = allow_network_plugin_kubenet + self.user_assigned_identities = user_assigned_identities + self.user_assigned_identity_exceptions = user_assigned_identity_exceptions + + +class ManagedClusterPodIdentityProvisioningError(_serialization.Model): # pylint: disable=name-too-long + """An error response from the pod identity provisioning. + + :ivar error: Details about the error. + :vartype error: + ~azure.mgmt.containerservice.models.ManagedClusterPodIdentityProvisioningErrorBody + """ + + _attribute_map = { + "error": {"key": "error", "type": "ManagedClusterPodIdentityProvisioningErrorBody"}, + } + + def __init__( + self, *, error: Optional["_models.ManagedClusterPodIdentityProvisioningErrorBody"] = None, **kwargs: Any + ) -> None: + """ + :keyword error: Details about the error. + :paramtype error: + ~azure.mgmt.containerservice.models.ManagedClusterPodIdentityProvisioningErrorBody + """ + super().__init__(**kwargs) + self.error = error + + +class ManagedClusterPodIdentityProvisioningErrorBody(_serialization.Model): # pylint: disable=name-too-long + """An error response from the pod identity provisioning. + + :ivar code: An identifier for the error. Codes are invariant and are intended to be consumed + programmatically. + :vartype code: str + :ivar message: A message describing the error, intended to be suitable for display in a user + interface. + :vartype message: str + :ivar target: The target of the particular error. For example, the name of the property in + error. + :vartype target: str + :ivar details: A list of additional details about the error. + :vartype details: + list[~azure.mgmt.containerservice.models.ManagedClusterPodIdentityProvisioningErrorBody] + """ + + _attribute_map = { + "code": {"key": "code", "type": "str"}, + "message": {"key": "message", "type": "str"}, + "target": {"key": "target", "type": "str"}, + "details": {"key": "details", "type": "[ManagedClusterPodIdentityProvisioningErrorBody]"}, + } + + def __init__( + self, + *, + code: Optional[str] = None, + message: Optional[str] = None, + target: Optional[str] = None, + details: Optional[list["_models.ManagedClusterPodIdentityProvisioningErrorBody"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword code: An identifier for the error. Codes are invariant and are intended to be consumed + programmatically. + :paramtype code: str + :keyword message: A message describing the error, intended to be suitable for display in a user + interface. + :paramtype message: str + :keyword target: The target of the particular error. For example, the name of the property in + error. + :paramtype target: str + :keyword details: A list of additional details about the error. + :paramtype details: + list[~azure.mgmt.containerservice.models.ManagedClusterPodIdentityProvisioningErrorBody] + """ + super().__init__(**kwargs) + self.code = code + self.message = message + self.target = target + self.details = details + + +class ManagedClusterPodIdentityProvisioningInfo(_serialization.Model): # pylint: disable=name-too-long + """ManagedClusterPodIdentityProvisioningInfo. + + :ivar error: Pod identity assignment error (if any). + :vartype error: ~azure.mgmt.containerservice.models.ManagedClusterPodIdentityProvisioningError + """ + + _attribute_map = { + "error": {"key": "error", "type": "ManagedClusterPodIdentityProvisioningError"}, + } + + def __init__( + self, *, error: Optional["_models.ManagedClusterPodIdentityProvisioningError"] = None, **kwargs: Any + ) -> None: + """ + :keyword error: Pod identity assignment error (if any). + :paramtype error: + ~azure.mgmt.containerservice.models.ManagedClusterPodIdentityProvisioningError + """ + super().__init__(**kwargs) + self.error = error + + +class ManagedClusterPoolUpgradeProfile(_serialization.Model): + """The list of available upgrade versions. + + All required parameters must be populated in order to send to server. + + :ivar kubernetes_version: The Kubernetes version (major.minor.patch). Required. + :vartype kubernetes_version: str + :ivar name: The Agent Pool name. + :vartype name: str + :ivar os_type: The operating system type. The default is Linux. Known values are: "Linux" and + "Windows". + :vartype os_type: str or ~azure.mgmt.containerservice.models.OSType + :ivar upgrades: List of orchestrator types and versions available for upgrade. + :vartype upgrades: + list[~azure.mgmt.containerservice.models.ManagedClusterPoolUpgradeProfileUpgradesItem] + """ + + _validation = { + "kubernetes_version": {"required": True}, + "os_type": {"required": True}, + } + + _attribute_map = { + "kubernetes_version": {"key": "kubernetesVersion", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "os_type": {"key": "osType", "type": "str"}, + "upgrades": {"key": "upgrades", "type": "[ManagedClusterPoolUpgradeProfileUpgradesItem]"}, + } + + def __init__( + self, + *, + kubernetes_version: str, + os_type: Union[str, "_models.OSType"] = "Linux", + name: Optional[str] = None, + upgrades: Optional[list["_models.ManagedClusterPoolUpgradeProfileUpgradesItem"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword kubernetes_version: The Kubernetes version (major.minor.patch). Required. + :paramtype kubernetes_version: str + :keyword name: The Agent Pool name. + :paramtype name: str + :keyword os_type: The operating system type. The default is Linux. Known values are: "Linux" + and "Windows". + :paramtype os_type: str or ~azure.mgmt.containerservice.models.OSType + :keyword upgrades: List of orchestrator types and versions available for upgrade. + :paramtype upgrades: + list[~azure.mgmt.containerservice.models.ManagedClusterPoolUpgradeProfileUpgradesItem] + """ + super().__init__(**kwargs) + self.kubernetes_version = kubernetes_version + self.name = name + self.os_type = os_type + self.upgrades = upgrades + + +class ManagedClusterPoolUpgradeProfileUpgradesItem(_serialization.Model): # pylint: disable=name-too-long + """ManagedClusterPoolUpgradeProfileUpgradesItem. + + :ivar kubernetes_version: The Kubernetes version (major.minor.patch). + :vartype kubernetes_version: str + :ivar is_preview: Whether the Kubernetes version is currently in preview. + :vartype is_preview: bool + """ + + _attribute_map = { + "kubernetes_version": {"key": "kubernetesVersion", "type": "str"}, + "is_preview": {"key": "isPreview", "type": "bool"}, + } + + def __init__( + self, *, kubernetes_version: Optional[str] = None, is_preview: Optional[bool] = None, **kwargs: Any + ) -> None: + """ + :keyword kubernetes_version: The Kubernetes version (major.minor.patch). + :paramtype kubernetes_version: str + :keyword is_preview: Whether the Kubernetes version is currently in preview. + :paramtype is_preview: bool + """ + super().__init__(**kwargs) + self.kubernetes_version = kubernetes_version + self.is_preview = is_preview + + +class ManagedClusterPropertiesAutoScalerProfile(_serialization.Model): # pylint: disable=name-too-long + """Parameters to be applied to the cluster-autoscaler when enabled. + + :ivar balance_similar_node_groups: Detects similar node pools and balances the number of nodes + between them. Valid values are 'true' and 'false'. + :vartype balance_similar_node_groups: str + :ivar daemonset_eviction_for_empty_nodes: DaemonSet pods will be gracefully terminated from + empty nodes. If set to true, all daemonset pods on empty nodes will be evicted before deletion + of the node. If the daemonset pod cannot be evicted another node will be chosen for scaling. If + set to false, the node will be deleted without ensuring that daemonset pods are deleted or + evicted. + :vartype daemonset_eviction_for_empty_nodes: bool + :ivar daemonset_eviction_for_occupied_nodes: DaemonSet pods will be gracefully terminated from + non-empty nodes. If set to true, all daemonset pods on occupied nodes will be evicted before + deletion of the node. If the daemonset pod cannot be evicted another node will be chosen for + scaling. If set to false, the node will be deleted without ensuring that daemonset pods are + deleted or evicted. + :vartype daemonset_eviction_for_occupied_nodes: bool + :ivar ignore_daemonsets_utilization: Should CA ignore DaemonSet pods when calculating resource + utilization for scaling down. If set to true, the resources used by daemonset will be taken + into account when making scaling down decisions. + :vartype ignore_daemonsets_utilization: bool + :ivar expander: The expander to use when scaling up. If not specified, the default is 'random'. + See `expanders + `_ + for more information. Known values are: "least-waste", "most-pods", "priority", and "random". + :vartype expander: str or ~azure.mgmt.containerservice.models.Expander + :ivar max_empty_bulk_delete: The maximum number of empty nodes that can be deleted at the same + time. This must be a positive integer. The default is 10. + :vartype max_empty_bulk_delete: str + :ivar max_graceful_termination_sec: The maximum number of seconds the cluster autoscaler waits + for pod termination when trying to scale down a node. The default is 600. + :vartype max_graceful_termination_sec: str + :ivar max_node_provision_time: The maximum time the autoscaler waits for a node to be + provisioned. The default is '15m'. Values must be an integer followed by an 'm'. No unit of + time other than minutes (m) is supported. + :vartype max_node_provision_time: str + :ivar max_total_unready_percentage: The maximum percentage of unready nodes in the cluster. + After this percentage is exceeded, cluster autoscaler halts operations. The default is 45. The + maximum is 100 and the minimum is 0. + :vartype max_total_unready_percentage: str + :ivar new_pod_scale_up_delay: Ignore unscheduled pods before they're a certain age. For + scenarios like burst/batch scale where you don't want CA to act before the kubernetes scheduler + could schedule all the pods, you can tell CA to ignore unscheduled pods before they're a + certain age. The default is '0s'. Values must be an integer followed by a unit ('s' for + seconds, 'm' for minutes, 'h' for hours, etc). + :vartype new_pod_scale_up_delay: str + :ivar ok_total_unready_count: The number of allowed unready nodes, irrespective of + max-total-unready-percentage. This must be an integer. The default is 3. + :vartype ok_total_unready_count: str + :ivar scan_interval: How often cluster is reevaluated for scale up or down. The default is + '10'. Values must be an integer number of seconds. + :vartype scan_interval: str + :ivar scale_down_delay_after_add: How long after scale up that scale down evaluation resumes. + The default is '10m'. Values must be an integer followed by an 'm'. No unit of time other than + minutes (m) is supported. + :vartype scale_down_delay_after_add: str + :ivar scale_down_delay_after_delete: How long after node deletion that scale down evaluation + resumes. The default is the scan-interval. Values must be an integer followed by an 'm'. No + unit of time other than minutes (m) is supported. + :vartype scale_down_delay_after_delete: str + :ivar scale_down_delay_after_failure: How long after scale down failure that scale down + evaluation resumes. The default is '3m'. Values must be an integer followed by an 'm'. No unit + of time other than minutes (m) is supported. + :vartype scale_down_delay_after_failure: str + :ivar scale_down_unneeded_time: How long a node should be unneeded before it is eligible for + scale down. The default is '10m'. Values must be an integer followed by an 'm'. No unit of time + other than minutes (m) is supported. + :vartype scale_down_unneeded_time: str + :ivar scale_down_unready_time: How long an unready node should be unneeded before it is + eligible for scale down. The default is '20m'. Values must be an integer followed by an 'm'. No + unit of time other than minutes (m) is supported. + :vartype scale_down_unready_time: str + :ivar scale_down_utilization_threshold: Node utilization level, defined as sum of requested + resources divided by capacity, below which a node can be considered for scale down. The default + is '0.5'. + :vartype scale_down_utilization_threshold: str + :ivar skip_nodes_with_local_storage: If cluster autoscaler will skip deleting nodes with pods + with local storage, for example, EmptyDir or HostPath. The default is true. + :vartype skip_nodes_with_local_storage: str + :ivar skip_nodes_with_system_pods: If cluster autoscaler will skip deleting nodes with pods + from kube-system (except for DaemonSet or mirror pods). The default is true. + :vartype skip_nodes_with_system_pods: str + """ + + _attribute_map = { + "balance_similar_node_groups": {"key": "balance-similar-node-groups", "type": "str"}, + "daemonset_eviction_for_empty_nodes": {"key": "daemonset-eviction-for-empty-nodes", "type": "bool"}, + "daemonset_eviction_for_occupied_nodes": {"key": "daemonset-eviction-for-occupied-nodes", "type": "bool"}, + "ignore_daemonsets_utilization": {"key": "ignore-daemonsets-utilization", "type": "bool"}, + "expander": {"key": "expander", "type": "str"}, + "max_empty_bulk_delete": {"key": "max-empty-bulk-delete", "type": "str"}, + "max_graceful_termination_sec": {"key": "max-graceful-termination-sec", "type": "str"}, + "max_node_provision_time": {"key": "max-node-provision-time", "type": "str"}, + "max_total_unready_percentage": {"key": "max-total-unready-percentage", "type": "str"}, + "new_pod_scale_up_delay": {"key": "new-pod-scale-up-delay", "type": "str"}, + "ok_total_unready_count": {"key": "ok-total-unready-count", "type": "str"}, + "scan_interval": {"key": "scan-interval", "type": "str"}, + "scale_down_delay_after_add": {"key": "scale-down-delay-after-add", "type": "str"}, + "scale_down_delay_after_delete": {"key": "scale-down-delay-after-delete", "type": "str"}, + "scale_down_delay_after_failure": {"key": "scale-down-delay-after-failure", "type": "str"}, + "scale_down_unneeded_time": {"key": "scale-down-unneeded-time", "type": "str"}, + "scale_down_unready_time": {"key": "scale-down-unready-time", "type": "str"}, + "scale_down_utilization_threshold": {"key": "scale-down-utilization-threshold", "type": "str"}, + "skip_nodes_with_local_storage": {"key": "skip-nodes-with-local-storage", "type": "str"}, + "skip_nodes_with_system_pods": {"key": "skip-nodes-with-system-pods", "type": "str"}, + } + + def __init__( + self, + *, + balance_similar_node_groups: Optional[str] = None, + daemonset_eviction_for_empty_nodes: Optional[bool] = None, + daemonset_eviction_for_occupied_nodes: Optional[bool] = None, + ignore_daemonsets_utilization: Optional[bool] = None, + expander: Optional[Union[str, "_models.Expander"]] = None, + max_empty_bulk_delete: Optional[str] = None, + max_graceful_termination_sec: Optional[str] = None, + max_node_provision_time: Optional[str] = None, + max_total_unready_percentage: Optional[str] = None, + new_pod_scale_up_delay: Optional[str] = None, + ok_total_unready_count: Optional[str] = None, + scan_interval: Optional[str] = None, + scale_down_delay_after_add: Optional[str] = None, + scale_down_delay_after_delete: Optional[str] = None, + scale_down_delay_after_failure: Optional[str] = None, + scale_down_unneeded_time: Optional[str] = None, + scale_down_unready_time: Optional[str] = None, + scale_down_utilization_threshold: Optional[str] = None, + skip_nodes_with_local_storage: Optional[str] = None, + skip_nodes_with_system_pods: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword balance_similar_node_groups: Detects similar node pools and balances the number of + nodes between them. Valid values are 'true' and 'false'. + :paramtype balance_similar_node_groups: str + :keyword daemonset_eviction_for_empty_nodes: DaemonSet pods will be gracefully terminated from + empty nodes. If set to true, all daemonset pods on empty nodes will be evicted before deletion + of the node. If the daemonset pod cannot be evicted another node will be chosen for scaling. If + set to false, the node will be deleted without ensuring that daemonset pods are deleted or + evicted. + :paramtype daemonset_eviction_for_empty_nodes: bool + :keyword daemonset_eviction_for_occupied_nodes: DaemonSet pods will be gracefully terminated + from non-empty nodes. If set to true, all daemonset pods on occupied nodes will be evicted + before deletion of the node. If the daemonset pod cannot be evicted another node will be chosen + for scaling. If set to false, the node will be deleted without ensuring that daemonset pods are + deleted or evicted. + :paramtype daemonset_eviction_for_occupied_nodes: bool + :keyword ignore_daemonsets_utilization: Should CA ignore DaemonSet pods when calculating + resource utilization for scaling down. If set to true, the resources used by daemonset will be + taken into account when making scaling down decisions. + :paramtype ignore_daemonsets_utilization: bool + :keyword expander: The expander to use when scaling up. If not specified, the default is + 'random'. See `expanders + `_ + for more information. Known values are: "least-waste", "most-pods", "priority", and "random". + :paramtype expander: str or ~azure.mgmt.containerservice.models.Expander + :keyword max_empty_bulk_delete: The maximum number of empty nodes that can be deleted at the + same time. This must be a positive integer. The default is 10. + :paramtype max_empty_bulk_delete: str + :keyword max_graceful_termination_sec: The maximum number of seconds the cluster autoscaler + waits for pod termination when trying to scale down a node. The default is 600. + :paramtype max_graceful_termination_sec: str + :keyword max_node_provision_time: The maximum time the autoscaler waits for a node to be + provisioned. The default is '15m'. Values must be an integer followed by an 'm'. No unit of + time other than minutes (m) is supported. + :paramtype max_node_provision_time: str + :keyword max_total_unready_percentage: The maximum percentage of unready nodes in the cluster. + After this percentage is exceeded, cluster autoscaler halts operations. The default is 45. The + maximum is 100 and the minimum is 0. + :paramtype max_total_unready_percentage: str + :keyword new_pod_scale_up_delay: Ignore unscheduled pods before they're a certain age. For + scenarios like burst/batch scale where you don't want CA to act before the kubernetes scheduler + could schedule all the pods, you can tell CA to ignore unscheduled pods before they're a + certain age. The default is '0s'. Values must be an integer followed by a unit ('s' for + seconds, 'm' for minutes, 'h' for hours, etc). + :paramtype new_pod_scale_up_delay: str + :keyword ok_total_unready_count: The number of allowed unready nodes, irrespective of + max-total-unready-percentage. This must be an integer. The default is 3. + :paramtype ok_total_unready_count: str + :keyword scan_interval: How often cluster is reevaluated for scale up or down. The default is + '10'. Values must be an integer number of seconds. + :paramtype scan_interval: str + :keyword scale_down_delay_after_add: How long after scale up that scale down evaluation + resumes. The default is '10m'. Values must be an integer followed by an 'm'. No unit of time + other than minutes (m) is supported. + :paramtype scale_down_delay_after_add: str + :keyword scale_down_delay_after_delete: How long after node deletion that scale down evaluation + resumes. The default is the scan-interval. Values must be an integer followed by an 'm'. No + unit of time other than minutes (m) is supported. + :paramtype scale_down_delay_after_delete: str + :keyword scale_down_delay_after_failure: How long after scale down failure that scale down + evaluation resumes. The default is '3m'. Values must be an integer followed by an 'm'. No unit + of time other than minutes (m) is supported. + :paramtype scale_down_delay_after_failure: str + :keyword scale_down_unneeded_time: How long a node should be unneeded before it is eligible for + scale down. The default is '10m'. Values must be an integer followed by an 'm'. No unit of time + other than minutes (m) is supported. + :paramtype scale_down_unneeded_time: str + :keyword scale_down_unready_time: How long an unready node should be unneeded before it is + eligible for scale down. The default is '20m'. Values must be an integer followed by an 'm'. No + unit of time other than minutes (m) is supported. + :paramtype scale_down_unready_time: str + :keyword scale_down_utilization_threshold: Node utilization level, defined as sum of requested + resources divided by capacity, below which a node can be considered for scale down. The default + is '0.5'. + :paramtype scale_down_utilization_threshold: str + :keyword skip_nodes_with_local_storage: If cluster autoscaler will skip deleting nodes with + pods with local storage, for example, EmptyDir or HostPath. The default is true. + :paramtype skip_nodes_with_local_storage: str + :keyword skip_nodes_with_system_pods: If cluster autoscaler will skip deleting nodes with pods + from kube-system (except for DaemonSet or mirror pods). The default is true. + :paramtype skip_nodes_with_system_pods: str + """ + super().__init__(**kwargs) + self.balance_similar_node_groups = balance_similar_node_groups + self.daemonset_eviction_for_empty_nodes = daemonset_eviction_for_empty_nodes + self.daemonset_eviction_for_occupied_nodes = daemonset_eviction_for_occupied_nodes + self.ignore_daemonsets_utilization = ignore_daemonsets_utilization + self.expander = expander + self.max_empty_bulk_delete = max_empty_bulk_delete + self.max_graceful_termination_sec = max_graceful_termination_sec + self.max_node_provision_time = max_node_provision_time + self.max_total_unready_percentage = max_total_unready_percentage + self.new_pod_scale_up_delay = new_pod_scale_up_delay + self.ok_total_unready_count = ok_total_unready_count + self.scan_interval = scan_interval + self.scale_down_delay_after_add = scale_down_delay_after_add + self.scale_down_delay_after_delete = scale_down_delay_after_delete + self.scale_down_delay_after_failure = scale_down_delay_after_failure + self.scale_down_unneeded_time = scale_down_unneeded_time + self.scale_down_unready_time = scale_down_unready_time + self.scale_down_utilization_threshold = scale_down_utilization_threshold + self.skip_nodes_with_local_storage = skip_nodes_with_local_storage + self.skip_nodes_with_system_pods = skip_nodes_with_system_pods + + +class ManagedClusterSecurityProfile(_serialization.Model): + """Security profile for the container service cluster. + + :ivar defender: Microsoft Defender settings for the security profile. + :vartype defender: ~azure.mgmt.containerservice.models.ManagedClusterSecurityProfileDefender + :ivar azure_key_vault_kms: Azure Key Vault `key management service + `_ settings for the security + profile. + :vartype azure_key_vault_kms: ~azure.mgmt.containerservice.models.AzureKeyVaultKms + :ivar workload_identity: Workload identity settings for the security profile. Workload identity + enables Kubernetes applications to access Azure cloud resources securely with Azure AD. See + https://aka.ms/aks/wi for more details. + :vartype workload_identity: + ~azure.mgmt.containerservice.models.ManagedClusterSecurityProfileWorkloadIdentity + :ivar image_cleaner: Image Cleaner settings for the security profile. + :vartype image_cleaner: + ~azure.mgmt.containerservice.models.ManagedClusterSecurityProfileImageCleaner + :ivar custom_ca_trust_certificates: A list of up to 10 base64 encoded CAs that will be added to + the trust store on all nodes in the cluster. For more information see `Custom CA Trust + Certificates `_. + :vartype custom_ca_trust_certificates: list[bytes] + """ + + _validation = { + "custom_ca_trust_certificates": {"max_items": 10, "min_items": 0}, + } + + _attribute_map = { + "defender": {"key": "defender", "type": "ManagedClusterSecurityProfileDefender"}, + "azure_key_vault_kms": {"key": "azureKeyVaultKms", "type": "AzureKeyVaultKms"}, + "workload_identity": {"key": "workloadIdentity", "type": "ManagedClusterSecurityProfileWorkloadIdentity"}, + "image_cleaner": {"key": "imageCleaner", "type": "ManagedClusterSecurityProfileImageCleaner"}, + "custom_ca_trust_certificates": {"key": "customCATrustCertificates", "type": "[bytearray]"}, + } + + def __init__( + self, + *, + defender: Optional["_models.ManagedClusterSecurityProfileDefender"] = None, + azure_key_vault_kms: Optional["_models.AzureKeyVaultKms"] = None, + workload_identity: Optional["_models.ManagedClusterSecurityProfileWorkloadIdentity"] = None, + image_cleaner: Optional["_models.ManagedClusterSecurityProfileImageCleaner"] = None, + custom_ca_trust_certificates: Optional[list[bytes]] = None, + **kwargs: Any + ) -> None: + """ + :keyword defender: Microsoft Defender settings for the security profile. + :paramtype defender: ~azure.mgmt.containerservice.models.ManagedClusterSecurityProfileDefender + :keyword azure_key_vault_kms: Azure Key Vault `key management service + `_ settings for the security + profile. + :paramtype azure_key_vault_kms: ~azure.mgmt.containerservice.models.AzureKeyVaultKms + :keyword workload_identity: Workload identity settings for the security profile. Workload + identity enables Kubernetes applications to access Azure cloud resources securely with Azure + AD. See https://aka.ms/aks/wi for more details. + :paramtype workload_identity: + ~azure.mgmt.containerservice.models.ManagedClusterSecurityProfileWorkloadIdentity + :keyword image_cleaner: Image Cleaner settings for the security profile. + :paramtype image_cleaner: + ~azure.mgmt.containerservice.models.ManagedClusterSecurityProfileImageCleaner + :keyword custom_ca_trust_certificates: A list of up to 10 base64 encoded CAs that will be added + to the trust store on all nodes in the cluster. For more information see `Custom CA Trust + Certificates `_. + :paramtype custom_ca_trust_certificates: list[bytes] + """ + super().__init__(**kwargs) + self.defender = defender + self.azure_key_vault_kms = azure_key_vault_kms + self.workload_identity = workload_identity + self.image_cleaner = image_cleaner + self.custom_ca_trust_certificates = custom_ca_trust_certificates + + +class ManagedClusterSecurityProfileDefender(_serialization.Model): + """Microsoft Defender settings for the security profile. + + :ivar log_analytics_workspace_resource_id: Resource ID of the Log Analytics workspace to be + associated with Microsoft Defender. When Microsoft Defender is enabled, this field is required + and must be a valid workspace resource ID. When Microsoft Defender is disabled, leave the field + empty. + :vartype log_analytics_workspace_resource_id: str + :ivar security_monitoring: Microsoft Defender threat detection for Cloud settings for the + security profile. + :vartype security_monitoring: + ~azure.mgmt.containerservice.models.ManagedClusterSecurityProfileDefenderSecurityMonitoring + """ + + _attribute_map = { + "log_analytics_workspace_resource_id": {"key": "logAnalyticsWorkspaceResourceId", "type": "str"}, + "security_monitoring": { + "key": "securityMonitoring", + "type": "ManagedClusterSecurityProfileDefenderSecurityMonitoring", + }, + } + + def __init__( + self, + *, + log_analytics_workspace_resource_id: Optional[str] = None, + security_monitoring: Optional["_models.ManagedClusterSecurityProfileDefenderSecurityMonitoring"] = None, + **kwargs: Any + ) -> None: + """ + :keyword log_analytics_workspace_resource_id: Resource ID of the Log Analytics workspace to be + associated with Microsoft Defender. When Microsoft Defender is enabled, this field is required + and must be a valid workspace resource ID. When Microsoft Defender is disabled, leave the field + empty. + :paramtype log_analytics_workspace_resource_id: str + :keyword security_monitoring: Microsoft Defender threat detection for Cloud settings for the + security profile. + :paramtype security_monitoring: + ~azure.mgmt.containerservice.models.ManagedClusterSecurityProfileDefenderSecurityMonitoring + """ + super().__init__(**kwargs) + self.log_analytics_workspace_resource_id = log_analytics_workspace_resource_id + self.security_monitoring = security_monitoring + + +class ManagedClusterSecurityProfileDefenderSecurityMonitoring(_serialization.Model): # pylint: disable=name-too-long + """Microsoft Defender settings for the security profile threat detection. + + :ivar enabled: Whether to enable Defender threat detection. + :vartype enabled: bool + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable Defender threat detection. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedClusterSecurityProfileImageCleaner(_serialization.Model): # pylint: disable=name-too-long + """Image Cleaner removes unused images from nodes, freeing up disk space and helping to reduce + attack surface area. Here are settings for the security profile. + + :ivar enabled: Whether to enable Image Cleaner on AKS cluster. + :vartype enabled: bool + :ivar interval_hours: Image Cleaner scanning interval in hours. + :vartype interval_hours: int + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + "interval_hours": {"key": "intervalHours", "type": "int"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, interval_hours: Optional[int] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable Image Cleaner on AKS cluster. + :paramtype enabled: bool + :keyword interval_hours: Image Cleaner scanning interval in hours. + :paramtype interval_hours: int + """ + super().__init__(**kwargs) + self.enabled = enabled + self.interval_hours = interval_hours + + +class ManagedClusterSecurityProfileWorkloadIdentity(_serialization.Model): # pylint: disable=name-too-long + """Workload identity settings for the security profile. + + :ivar enabled: Whether to enable workload identity. + :vartype enabled: bool + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable workload identity. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedClusterServicePrincipalProfile(_serialization.Model): + """Information about a service principal identity for the cluster to use for manipulating Azure + APIs. + + All required parameters must be populated in order to send to server. + + :ivar client_id: The ID for the service principal. Required. + :vartype client_id: str + :ivar secret: The secret password associated with the service principal in plain text. + :vartype secret: str + """ + + _validation = { + "client_id": {"required": True}, + } + + _attribute_map = { + "client_id": {"key": "clientId", "type": "str"}, + "secret": {"key": "secret", "type": "str"}, + } + + def __init__(self, *, client_id: str, secret: Optional[str] = None, **kwargs: Any) -> None: + """ + :keyword client_id: The ID for the service principal. Required. + :paramtype client_id: str + :keyword secret: The secret password associated with the service principal in plain text. + :paramtype secret: str + """ + super().__init__(**kwargs) + self.client_id = client_id + self.secret = secret + + +class ManagedClusterSKU(_serialization.Model): + """The SKU of a Managed Cluster. + + :ivar name: The name of a managed cluster SKU. Known values are: "Base" and "Automatic". + :vartype name: str or ~azure.mgmt.containerservice.models.ManagedClusterSKUName + :ivar tier: The tier of a managed cluster SKU. If not specified, the default is 'Free'. See + `AKS Pricing Tier `_ for + more details. Known values are: "Premium", "Standard", and "Free". + :vartype tier: str or ~azure.mgmt.containerservice.models.ManagedClusterSKUTier + """ + + _attribute_map = { + "name": {"key": "name", "type": "str"}, + "tier": {"key": "tier", "type": "str"}, + } + + def __init__( + self, + *, + name: Optional[Union[str, "_models.ManagedClusterSKUName"]] = None, + tier: Optional[Union[str, "_models.ManagedClusterSKUTier"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword name: The name of a managed cluster SKU. Known values are: "Base" and "Automatic". + :paramtype name: str or ~azure.mgmt.containerservice.models.ManagedClusterSKUName + :keyword tier: The tier of a managed cluster SKU. If not specified, the default is 'Free'. See + `AKS Pricing Tier `_ for + more details. Known values are: "Premium", "Standard", and "Free". + :paramtype tier: str or ~azure.mgmt.containerservice.models.ManagedClusterSKUTier + """ + super().__init__(**kwargs) + self.name = name + self.tier = tier + + +class ManagedClusterStaticEgressGatewayProfile(_serialization.Model): + """The Static Egress Gateway addon configuration for the cluster. + + :ivar enabled: Enable Static Egress Gateway addon. Indicates if Static Egress Gateway addon is + enabled or not. + :vartype enabled: bool + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Enable Static Egress Gateway addon. Indicates if Static Egress Gateway addon + is enabled or not. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedClusterStatus(_serialization.Model): + """Contains read-only information about the Managed Cluster. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar provisioning_error: The error details information of the managed cluster. Preserves the + detailed info of failure. If there was no error, this field is omitted. + :vartype provisioning_error: ~azure.mgmt.containerservice.models.ErrorDetail + """ + + _validation = { + "provisioning_error": {"readonly": True}, + } + + _attribute_map = { + "provisioning_error": {"key": "provisioningError", "type": "ErrorDetail"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.provisioning_error: Optional["_models.ErrorDetail"] = None + + +class ManagedClusterStorageProfile(_serialization.Model): + """Storage profile for the container service cluster. + + :ivar disk_csi_driver: AzureDisk CSI Driver settings for the storage profile. + :vartype disk_csi_driver: + ~azure.mgmt.containerservice.models.ManagedClusterStorageProfileDiskCSIDriver + :ivar file_csi_driver: AzureFile CSI Driver settings for the storage profile. + :vartype file_csi_driver: + ~azure.mgmt.containerservice.models.ManagedClusterStorageProfileFileCSIDriver + :ivar snapshot_controller: Snapshot Controller settings for the storage profile. + :vartype snapshot_controller: + ~azure.mgmt.containerservice.models.ManagedClusterStorageProfileSnapshotController + :ivar blob_csi_driver: AzureBlob CSI Driver settings for the storage profile. + :vartype blob_csi_driver: + ~azure.mgmt.containerservice.models.ManagedClusterStorageProfileBlobCSIDriver + """ + + _attribute_map = { + "disk_csi_driver": {"key": "diskCSIDriver", "type": "ManagedClusterStorageProfileDiskCSIDriver"}, + "file_csi_driver": {"key": "fileCSIDriver", "type": "ManagedClusterStorageProfileFileCSIDriver"}, + "snapshot_controller": {"key": "snapshotController", "type": "ManagedClusterStorageProfileSnapshotController"}, + "blob_csi_driver": {"key": "blobCSIDriver", "type": "ManagedClusterStorageProfileBlobCSIDriver"}, + } + + def __init__( + self, + *, + disk_csi_driver: Optional["_models.ManagedClusterStorageProfileDiskCSIDriver"] = None, + file_csi_driver: Optional["_models.ManagedClusterStorageProfileFileCSIDriver"] = None, + snapshot_controller: Optional["_models.ManagedClusterStorageProfileSnapshotController"] = None, + blob_csi_driver: Optional["_models.ManagedClusterStorageProfileBlobCSIDriver"] = None, + **kwargs: Any + ) -> None: + """ + :keyword disk_csi_driver: AzureDisk CSI Driver settings for the storage profile. + :paramtype disk_csi_driver: + ~azure.mgmt.containerservice.models.ManagedClusterStorageProfileDiskCSIDriver + :keyword file_csi_driver: AzureFile CSI Driver settings for the storage profile. + :paramtype file_csi_driver: + ~azure.mgmt.containerservice.models.ManagedClusterStorageProfileFileCSIDriver + :keyword snapshot_controller: Snapshot Controller settings for the storage profile. + :paramtype snapshot_controller: + ~azure.mgmt.containerservice.models.ManagedClusterStorageProfileSnapshotController + :keyword blob_csi_driver: AzureBlob CSI Driver settings for the storage profile. + :paramtype blob_csi_driver: + ~azure.mgmt.containerservice.models.ManagedClusterStorageProfileBlobCSIDriver + """ + super().__init__(**kwargs) + self.disk_csi_driver = disk_csi_driver + self.file_csi_driver = file_csi_driver + self.snapshot_controller = snapshot_controller + self.blob_csi_driver = blob_csi_driver + + +class ManagedClusterStorageProfileBlobCSIDriver(_serialization.Model): # pylint: disable=name-too-long + """AzureBlob CSI Driver settings for the storage profile. + + :ivar enabled: Whether to enable AzureBlob CSI Driver. The default value is false. + :vartype enabled: bool + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable AzureBlob CSI Driver. The default value is false. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedClusterStorageProfileDiskCSIDriver(_serialization.Model): # pylint: disable=name-too-long + """AzureDisk CSI Driver settings for the storage profile. + + :ivar enabled: Whether to enable AzureDisk CSI Driver. The default value is true. + :vartype enabled: bool + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable AzureDisk CSI Driver. The default value is true. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedClusterStorageProfileFileCSIDriver(_serialization.Model): # pylint: disable=name-too-long + """AzureFile CSI Driver settings for the storage profile. + + :ivar enabled: Whether to enable AzureFile CSI Driver. The default value is true. + :vartype enabled: bool + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable AzureFile CSI Driver. The default value is true. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedClusterStorageProfileSnapshotController(_serialization.Model): # pylint: disable=name-too-long + """Snapshot Controller settings for the storage profile. + + :ivar enabled: Whether to enable Snapshot Controller. The default value is true. + :vartype enabled: bool + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: Optional[bool] = None, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable Snapshot Controller. The default value is true. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedClusterUpgradeProfile(_serialization.Model): + """The list of available upgrades for compute pools. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar id: The ID of the upgrade profile. + :vartype id: str + :ivar name: The name of the upgrade profile. + :vartype name: str + :ivar type: The type of the upgrade profile. + :vartype type: str + :ivar control_plane_profile: The list of available upgrade versions for the control plane. + Required. + :vartype control_plane_profile: + ~azure.mgmt.containerservice.models.ManagedClusterPoolUpgradeProfile + :ivar agent_pool_profiles: The list of available upgrade versions for agent pools. Required. + :vartype agent_pool_profiles: + list[~azure.mgmt.containerservice.models.ManagedClusterPoolUpgradeProfile] + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "control_plane_profile": {"required": True}, + "agent_pool_profiles": {"required": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "control_plane_profile": {"key": "properties.controlPlaneProfile", "type": "ManagedClusterPoolUpgradeProfile"}, + "agent_pool_profiles": {"key": "properties.agentPoolProfiles", "type": "[ManagedClusterPoolUpgradeProfile]"}, + } + + def __init__( + self, + *, + control_plane_profile: "_models.ManagedClusterPoolUpgradeProfile", + agent_pool_profiles: list["_models.ManagedClusterPoolUpgradeProfile"], + **kwargs: Any + ) -> None: + """ + :keyword control_plane_profile: The list of available upgrade versions for the control plane. + Required. + :paramtype control_plane_profile: + ~azure.mgmt.containerservice.models.ManagedClusterPoolUpgradeProfile + :keyword agent_pool_profiles: The list of available upgrade versions for agent pools. Required. + :paramtype agent_pool_profiles: + list[~azure.mgmt.containerservice.models.ManagedClusterPoolUpgradeProfile] + """ + super().__init__(**kwargs) + self.id: Optional[str] = None + self.name: Optional[str] = None + self.type: Optional[str] = None + self.control_plane_profile = control_plane_profile + self.agent_pool_profiles = agent_pool_profiles + + +class ManagedClusterWindowsProfile(_serialization.Model): + """Profile for Windows VMs in the managed cluster. + + All required parameters must be populated in order to send to server. + + :ivar admin_username: Specifies the name of the administrator account. :code:`
`\\ + :code:`
` **Restriction:** Cannot end in "." :code:`
`\\ :code:`
` **Disallowed + values:** "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", + "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", + "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", + "test2", "test3", "user4", "user5". :code:`
`\\ :code:`
` **Minimum-length:** 1 character + :code:`
`\\ :code:`
` **Max-length:** 20 characters. Required. + :vartype admin_username: str + :ivar admin_password: Specifies the password of the administrator account. :code:`
`\\ + :code:`
` **Minimum-length:** 8 characters :code:`
`\\ :code:`
` **Max-length:** 123 + characters :code:`
`\\ :code:`
` **Complexity requirements:** 3 out of 4 conditions below + need to be fulfilled :code:`
` Has lower characters :code:`
`Has upper characters + :code:`
` Has a digit :code:`
` Has a special character (Regex match [\\W_]) + :code:`
`\\ :code:`
` **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", + "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!". + :vartype admin_password: str + :ivar license_type: The license type to use for Windows VMs. See `Azure Hybrid User Benefits + `_ for more details. Known values are: + "None" and "Windows_Server". + :vartype license_type: str or ~azure.mgmt.containerservice.models.LicenseType + :ivar enable_csi_proxy: Whether to enable CSI proxy. For more details on CSI proxy, see the + `CSI proxy GitHub repo `_. + :vartype enable_csi_proxy: bool + :ivar gmsa_profile: The Windows gMSA Profile in the Managed Cluster. + :vartype gmsa_profile: ~azure.mgmt.containerservice.models.WindowsGmsaProfile + """ + + _validation = { + "admin_username": {"required": True}, + } + + _attribute_map = { + "admin_username": {"key": "adminUsername", "type": "str"}, + "admin_password": {"key": "adminPassword", "type": "str"}, + "license_type": {"key": "licenseType", "type": "str"}, + "enable_csi_proxy": {"key": "enableCSIProxy", "type": "bool"}, + "gmsa_profile": {"key": "gmsaProfile", "type": "WindowsGmsaProfile"}, + } + + def __init__( + self, + *, + admin_username: str, + admin_password: Optional[str] = None, + license_type: Optional[Union[str, "_models.LicenseType"]] = None, + enable_csi_proxy: Optional[bool] = None, + gmsa_profile: Optional["_models.WindowsGmsaProfile"] = None, + **kwargs: Any + ) -> None: + """ + :keyword admin_username: Specifies the name of the administrator account. :code:`
`\\ + :code:`
` **Restriction:** Cannot end in "." :code:`
`\\ :code:`
` **Disallowed + values:** "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", + "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", + "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", + "test2", "test3", "user4", "user5". :code:`
`\\ :code:`
` **Minimum-length:** 1 character + :code:`
`\\ :code:`
` **Max-length:** 20 characters. Required. + :paramtype admin_username: str + :keyword admin_password: Specifies the password of the administrator account. :code:`
`\\ + :code:`
` **Minimum-length:** 8 characters :code:`
`\\ :code:`
` **Max-length:** 123 + characters :code:`
`\\ :code:`
` **Complexity requirements:** 3 out of 4 conditions below + need to be fulfilled :code:`
` Has lower characters :code:`
`Has upper characters + :code:`
` Has a digit :code:`
` Has a special character (Regex match [\\W_]) + :code:`
`\\ :code:`
` **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", + "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!". + :paramtype admin_password: str + :keyword license_type: The license type to use for Windows VMs. See `Azure Hybrid User Benefits + `_ for more details. Known values are: + "None" and "Windows_Server". + :paramtype license_type: str or ~azure.mgmt.containerservice.models.LicenseType + :keyword enable_csi_proxy: Whether to enable CSI proxy. For more details on CSI proxy, see the + `CSI proxy GitHub repo `_. + :paramtype enable_csi_proxy: bool + :keyword gmsa_profile: The Windows gMSA Profile in the Managed Cluster. + :paramtype gmsa_profile: ~azure.mgmt.containerservice.models.WindowsGmsaProfile + """ + super().__init__(**kwargs) + self.admin_username = admin_username + self.admin_password = admin_password + self.license_type = license_type + self.enable_csi_proxy = enable_csi_proxy + self.gmsa_profile = gmsa_profile + + +class ManagedClusterWorkloadAutoScalerProfile(_serialization.Model): + """Workload Auto-scaler profile for the managed cluster. + + :ivar keda: KEDA (Kubernetes Event-driven Autoscaling) settings for the workload auto-scaler + profile. + :vartype keda: ~azure.mgmt.containerservice.models.ManagedClusterWorkloadAutoScalerProfileKeda + :ivar vertical_pod_autoscaler: VPA (Vertical Pod Autoscaler) settings for the workload + auto-scaler profile. + :vartype vertical_pod_autoscaler: + ~azure.mgmt.containerservice.models.ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscaler + """ + + _attribute_map = { + "keda": {"key": "keda", "type": "ManagedClusterWorkloadAutoScalerProfileKeda"}, + "vertical_pod_autoscaler": { + "key": "verticalPodAutoscaler", + "type": "ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscaler", + }, + } + + def __init__( + self, + *, + keda: Optional["_models.ManagedClusterWorkloadAutoScalerProfileKeda"] = None, + vertical_pod_autoscaler: Optional[ + "_models.ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscaler" + ] = None, + **kwargs: Any + ) -> None: + """ + :keyword keda: KEDA (Kubernetes Event-driven Autoscaling) settings for the workload auto-scaler + profile. + :paramtype keda: + ~azure.mgmt.containerservice.models.ManagedClusterWorkloadAutoScalerProfileKeda + :keyword vertical_pod_autoscaler: VPA (Vertical Pod Autoscaler) settings for the workload + auto-scaler profile. + :paramtype vertical_pod_autoscaler: + ~azure.mgmt.containerservice.models.ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscaler + """ + super().__init__(**kwargs) + self.keda = keda + self.vertical_pod_autoscaler = vertical_pod_autoscaler + + +class ManagedClusterWorkloadAutoScalerProfileKeda(_serialization.Model): # pylint: disable=name-too-long + """KEDA (Kubernetes Event-driven Autoscaling) settings for the workload auto-scaler profile. + + All required parameters must be populated in order to send to server. + + :ivar enabled: Whether to enable KEDA. Required. + :vartype enabled: bool + """ + + _validation = { + "enabled": {"required": True}, + } + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: bool, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable KEDA. Required. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscaler( + _serialization.Model +): # pylint: disable=name-too-long + """VPA (Vertical Pod Autoscaler) settings for the workload auto-scaler profile. + + All required parameters must be populated in order to send to server. + + :ivar enabled: Whether to enable VPA. Default value is false. Required. + :vartype enabled: bool + """ + + _validation = { + "enabled": {"required": True}, + } + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + } + + def __init__(self, *, enabled: bool = False, **kwargs: Any) -> None: + """ + :keyword enabled: Whether to enable VPA. Default value is false. Required. + :paramtype enabled: bool + """ + super().__init__(**kwargs) + self.enabled = enabled + + +class ManagedNamespace(SubResource): + """Namespace managed by ARM. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource ID. + :vartype id: str + :ivar name: The name of the resource that is unique within a resource group. This name can be + used to access the resource. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar system_data: The system metadata relating to this resource. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + :ivar tags: The tags to be persisted on the managed cluster namespace. + :vartype tags: dict[str, str] + :ivar e_tag: Unique read-only string used to implement optimistic concurrency. The eTag value + will change when the resource is updated. Specify an if-match or if-none-match header with the + eTag value for a subsequent request to enable optimistic concurrency per the normal eTag + convention. + :vartype e_tag: str + :ivar location: The location of the namespace. + :vartype location: str + :ivar properties: Properties of a namespace. + :vartype properties: ~azure.mgmt.containerservice.models.NamespaceProperties + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + "e_tag": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "tags": {"key": "tags", "type": "{str}"}, + "e_tag": {"key": "eTag", "type": "str"}, + "location": {"key": "location", "type": "str"}, + "properties": {"key": "properties", "type": "NamespaceProperties"}, + } + + def __init__( + self, + *, + tags: Optional[dict[str, str]] = None, + location: Optional[str] = None, + properties: Optional["_models.NamespaceProperties"] = None, + **kwargs: Any + ) -> None: + """ + :keyword tags: The tags to be persisted on the managed cluster namespace. + :paramtype tags: dict[str, str] + :keyword location: The location of the namespace. + :paramtype location: str + :keyword properties: Properties of a namespace. + :paramtype properties: ~azure.mgmt.containerservice.models.NamespaceProperties + """ + super().__init__(**kwargs) + self.system_data: Optional["_models.SystemData"] = None + self.tags = tags + self.e_tag: Optional[str] = None + self.location = location + self.properties = properties + + +class ManagedNamespaceListResult(_serialization.Model): + """The result of a request to list managed namespaces in a managed cluster. + + :ivar value: The list of managed namespaces. + :vartype value: list[~azure.mgmt.containerservice.models.ManagedNamespace] + :ivar next_link: The URI to fetch the next page of results, if any. + :vartype next_link: str + """ + + _attribute_map = { + "value": {"key": "value", "type": "[ManagedNamespace]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__( + self, + *, + value: Optional[list["_models.ManagedNamespace"]] = None, + next_link: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword value: The list of managed namespaces. + :paramtype value: list[~azure.mgmt.containerservice.models.ManagedNamespace] + :keyword next_link: The URI to fetch the next page of results, if any. + :paramtype next_link: str + """ + super().__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class ManagedServiceIdentityUserAssignedIdentitiesValue(_serialization.Model): # pylint: disable=name-too-long + """ManagedServiceIdentityUserAssignedIdentitiesValue. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar principal_id: The principal id of user assigned identity. + :vartype principal_id: str + :ivar client_id: The client id of user assigned identity. + :vartype client_id: str + """ + + _validation = { + "principal_id": {"readonly": True}, + "client_id": {"readonly": True}, + } + + _attribute_map = { + "principal_id": {"key": "principalId", "type": "str"}, + "client_id": {"key": "clientId", "type": "str"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.principal_id: Optional[str] = None + self.client_id: Optional[str] = None + + +class ManualScaleProfile(_serialization.Model): + """Specifications on number of machines. + + :ivar size: VM size that AKS will use when creating and scaling e.g. 'Standard_E4s_v3', + 'Standard_E16s_v3' or 'Standard_D16s_v5'. + :vartype size: str + :ivar count: Number of nodes. + :vartype count: int + """ + + _attribute_map = { + "size": {"key": "size", "type": "str"}, + "count": {"key": "count", "type": "int"}, + } + + def __init__(self, *, size: Optional[str] = None, count: Optional[int] = None, **kwargs: Any) -> None: + """ + :keyword size: VM size that AKS will use when creating and scaling e.g. 'Standard_E4s_v3', + 'Standard_E16s_v3' or 'Standard_D16s_v5'. + :paramtype size: str + :keyword count: Number of nodes. + :paramtype count: int + """ + super().__init__(**kwargs) + self.size = size + self.count = count + + +class MeshRevision(_serialization.Model): + """Holds information on upgrades and compatibility for given major.minor mesh release. + + :ivar revision: The revision of the mesh release. + :vartype revision: str + :ivar upgrades: List of revisions available for upgrade of a specific mesh revision. + :vartype upgrades: list[str] + :ivar compatible_with: List of items this revision of service mesh is compatible with, and + their associated versions. + :vartype compatible_with: list[~azure.mgmt.containerservice.models.CompatibleVersions] + """ + + _attribute_map = { + "revision": {"key": "revision", "type": "str"}, + "upgrades": {"key": "upgrades", "type": "[str]"}, + "compatible_with": {"key": "compatibleWith", "type": "[CompatibleVersions]"}, + } + + def __init__( + self, + *, + revision: Optional[str] = None, + upgrades: Optional[list[str]] = None, + compatible_with: Optional[list["_models.CompatibleVersions"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword revision: The revision of the mesh release. + :paramtype revision: str + :keyword upgrades: List of revisions available for upgrade of a specific mesh revision. + :paramtype upgrades: list[str] + :keyword compatible_with: List of items this revision of service mesh is compatible with, and + their associated versions. + :paramtype compatible_with: list[~azure.mgmt.containerservice.models.CompatibleVersions] + """ + super().__init__(**kwargs) + self.revision = revision + self.upgrades = upgrades + self.compatible_with = compatible_with + + +class ProxyResource(Resource): + """The resource model definition for a Azure Resource Manager proxy resource. It will not have + tags and a location. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + """ + + +class MeshRevisionProfile(ProxyResource): + """Mesh revision profile for a mesh. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + :ivar properties: Mesh revision profile properties for a mesh. + :vartype properties: ~azure.mgmt.containerservice.models.MeshRevisionProfileProperties + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "properties": {"key": "properties", "type": "MeshRevisionProfileProperties"}, + } + + def __init__(self, *, properties: Optional["_models.MeshRevisionProfileProperties"] = None, **kwargs: Any) -> None: + """ + :keyword properties: Mesh revision profile properties for a mesh. + :paramtype properties: ~azure.mgmt.containerservice.models.MeshRevisionProfileProperties + """ + super().__init__(**kwargs) + self.properties = properties + + +class MeshRevisionProfileList(_serialization.Model): + """Holds an array of MeshRevisionsProfiles. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: Array of service mesh add-on revision profiles for all supported mesh modes. + :vartype value: list[~azure.mgmt.containerservice.models.MeshRevisionProfile] + :ivar next_link: The URL to get the next set of mesh revision profile. + :vartype next_link: str + """ + + _validation = { + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[MeshRevisionProfile]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, *, value: Optional[list["_models.MeshRevisionProfile"]] = None, **kwargs: Any) -> None: + """ + :keyword value: Array of service mesh add-on revision profiles for all supported mesh modes. + :paramtype value: list[~azure.mgmt.containerservice.models.MeshRevisionProfile] + """ + super().__init__(**kwargs) + self.value = value + self.next_link: Optional[str] = None + + +class MeshRevisionProfileProperties(_serialization.Model): + """Mesh revision profile properties for a mesh. + + :ivar mesh_revisions: + :vartype mesh_revisions: list[~azure.mgmt.containerservice.models.MeshRevision] + """ + + _attribute_map = { + "mesh_revisions": {"key": "meshRevisions", "type": "[MeshRevision]"}, + } + + def __init__(self, *, mesh_revisions: Optional[list["_models.MeshRevision"]] = None, **kwargs: Any) -> None: + """ + :keyword mesh_revisions: + :paramtype mesh_revisions: list[~azure.mgmt.containerservice.models.MeshRevision] + """ + super().__init__(**kwargs) + self.mesh_revisions = mesh_revisions + + +class MeshUpgradeProfile(ProxyResource): + """Upgrade profile for given mesh. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + :ivar properties: Mesh upgrade profile properties for a major.minor release. + :vartype properties: ~azure.mgmt.containerservice.models.MeshUpgradeProfileProperties + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "properties": {"key": "properties", "type": "MeshUpgradeProfileProperties"}, + } + + def __init__(self, *, properties: Optional["_models.MeshUpgradeProfileProperties"] = None, **kwargs: Any) -> None: + """ + :keyword properties: Mesh upgrade profile properties for a major.minor release. + :paramtype properties: ~azure.mgmt.containerservice.models.MeshUpgradeProfileProperties + """ + super().__init__(**kwargs) + self.properties = properties + + +class MeshUpgradeProfileList(_serialization.Model): + """Holds an array of MeshUpgradeProfiles. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: Array of supported service mesh add-on upgrade profiles. + :vartype value: list[~azure.mgmt.containerservice.models.MeshUpgradeProfile] + :ivar next_link: The URL to get the next set of mesh upgrade profile. + :vartype next_link: str + """ + + _validation = { + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[MeshUpgradeProfile]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, *, value: Optional[list["_models.MeshUpgradeProfile"]] = None, **kwargs: Any) -> None: + """ + :keyword value: Array of supported service mesh add-on upgrade profiles. + :paramtype value: list[~azure.mgmt.containerservice.models.MeshUpgradeProfile] + """ + super().__init__(**kwargs) + self.value = value + self.next_link: Optional[str] = None + + +class MeshUpgradeProfileProperties(MeshRevision): + """Mesh upgrade profile properties for a major.minor release. + + :ivar revision: The revision of the mesh release. + :vartype revision: str + :ivar upgrades: List of revisions available for upgrade of a specific mesh revision. + :vartype upgrades: list[str] + :ivar compatible_with: List of items this revision of service mesh is compatible with, and + their associated versions. + :vartype compatible_with: list[~azure.mgmt.containerservice.models.CompatibleVersions] + """ + + +class NamespaceProperties(_serialization.Model): + """Properties of a namespace managed by ARM. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar provisioning_state: The current provisioning state of the namespace. Known values are: + "Updating", "Deleting", "Creating", "Succeeded", "Failed", and "Canceled". + :vartype provisioning_state: str or + ~azure.mgmt.containerservice.models.NamespaceProvisioningState + :ivar labels: The labels of managed namespace. + :vartype labels: dict[str, str] + :ivar annotations: The annotations of managed namespace. + :vartype annotations: dict[str, str] + :ivar portal_fqdn: The special FQDN used by the Azure Portal to access the Managed Cluster. + This FQDN is for use only by the Azure Portal and should not be used by other clients. The + Azure Portal requires certain Cross-Origin Resource Sharing (CORS) headers to be sent in some + responses, which Kubernetes APIServer doesn't handle by default. This special FQDN supports + CORS, allowing the Azure Portal to function properly. + :vartype portal_fqdn: str + :ivar default_resource_quota: The default resource quota enforced upon the namespace. Customers + can have other Kubernetes resource quota objects under the namespace. Resource quotas are + additive; if multiple resource quotas are applied to a given namespace, then the effective + limit will be one such that all quotas on the namespace can be satisfied. + :vartype default_resource_quota: ~azure.mgmt.containerservice.models.ResourceQuota + :ivar default_network_policy: The default network policy enforced upon the namespace. Customers + can have other Kubernetes network policy objects under the namespace. Network policies are + additive; if a policy or policies apply to a given pod for a given direction, the connections + allowed in that direction for the pod is the union of what all applicable policies allow. + :vartype default_network_policy: ~azure.mgmt.containerservice.models.NetworkPolicies + :ivar adoption_policy: Action if Kubernetes namespace with same name already exists. Known + values are: "Never", "IfIdentical", and "Always". + :vartype adoption_policy: str or ~azure.mgmt.containerservice.models.AdoptionPolicy + :ivar delete_policy: Delete options of a namespace. Known values are: "Keep" and "Delete". + :vartype delete_policy: str or ~azure.mgmt.containerservice.models.DeletePolicy + """ + + _validation = { + "provisioning_state": {"readonly": True}, + "portal_fqdn": {"readonly": True}, + } + + _attribute_map = { + "provisioning_state": {"key": "provisioningState", "type": "str"}, + "labels": {"key": "labels", "type": "{str}"}, + "annotations": {"key": "annotations", "type": "{str}"}, + "portal_fqdn": {"key": "portalFqdn", "type": "str"}, + "default_resource_quota": {"key": "defaultResourceQuota", "type": "ResourceQuota"}, + "default_network_policy": {"key": "defaultNetworkPolicy", "type": "NetworkPolicies"}, + "adoption_policy": {"key": "adoptionPolicy", "type": "str"}, + "delete_policy": {"key": "deletePolicy", "type": "str"}, + } + + def __init__( + self, + *, + labels: Optional[dict[str, str]] = None, + annotations: Optional[dict[str, str]] = None, + default_resource_quota: Optional["_models.ResourceQuota"] = None, + default_network_policy: Optional["_models.NetworkPolicies"] = None, + adoption_policy: Optional[Union[str, "_models.AdoptionPolicy"]] = None, + delete_policy: Optional[Union[str, "_models.DeletePolicy"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword labels: The labels of managed namespace. + :paramtype labels: dict[str, str] + :keyword annotations: The annotations of managed namespace. + :paramtype annotations: dict[str, str] + :keyword default_resource_quota: The default resource quota enforced upon the namespace. + Customers can have other Kubernetes resource quota objects under the namespace. Resource quotas + are additive; if multiple resource quotas are applied to a given namespace, then the effective + limit will be one such that all quotas on the namespace can be satisfied. + :paramtype default_resource_quota: ~azure.mgmt.containerservice.models.ResourceQuota + :keyword default_network_policy: The default network policy enforced upon the namespace. + Customers can have other Kubernetes network policy objects under the namespace. Network + policies are additive; if a policy or policies apply to a given pod for a given direction, the + connections allowed in that direction for the pod is the union of what all applicable policies + allow. + :paramtype default_network_policy: ~azure.mgmt.containerservice.models.NetworkPolicies + :keyword adoption_policy: Action if Kubernetes namespace with same name already exists. Known + values are: "Never", "IfIdentical", and "Always". + :paramtype adoption_policy: str or ~azure.mgmt.containerservice.models.AdoptionPolicy + :keyword delete_policy: Delete options of a namespace. Known values are: "Keep" and "Delete". + :paramtype delete_policy: str or ~azure.mgmt.containerservice.models.DeletePolicy + """ + super().__init__(**kwargs) + self.provisioning_state: Optional[Union[str, "_models.NamespaceProvisioningState"]] = None + self.labels = labels + self.annotations = annotations + self.portal_fqdn: Optional[str] = None + self.default_resource_quota = default_resource_quota + self.default_network_policy = default_network_policy + self.adoption_policy = adoption_policy + self.delete_policy = delete_policy + + +class NetworkPolicies(_serialization.Model): + """Default network policy of the namespace, specifying ingress and egress rules. + + :ivar ingress: Ingress policy for the network. Known values are: "DenyAll", "AllowAll", and + "AllowSameNamespace". + :vartype ingress: str or ~azure.mgmt.containerservice.models.PolicyRule + :ivar egress: Egress policy for the network. Known values are: "DenyAll", "AllowAll", and + "AllowSameNamespace". + :vartype egress: str or ~azure.mgmt.containerservice.models.PolicyRule + """ + + _attribute_map = { + "ingress": {"key": "ingress", "type": "str"}, + "egress": {"key": "egress", "type": "str"}, + } + + def __init__( + self, + *, + ingress: Optional[Union[str, "_models.PolicyRule"]] = None, + egress: Optional[Union[str, "_models.PolicyRule"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword ingress: Ingress policy for the network. Known values are: "DenyAll", "AllowAll", and + "AllowSameNamespace". + :paramtype ingress: str or ~azure.mgmt.containerservice.models.PolicyRule + :keyword egress: Egress policy for the network. Known values are: "DenyAll", "AllowAll", and + "AllowSameNamespace". + :paramtype egress: str or ~azure.mgmt.containerservice.models.PolicyRule + """ + super().__init__(**kwargs) + self.ingress = ingress + self.egress = egress + + +class OperationListResult(_serialization.Model): + """The List Operation response. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: The list of operations. + :vartype value: list[~azure.mgmt.containerservice.models.OperationValue] + """ + + _validation = { + "value": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[OperationValue]"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.value: Optional[list["_models.OperationValue"]] = None + + +class OperationValue(_serialization.Model): + """Describes the properties of a Operation value. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar origin: The origin of the operation. + :vartype origin: str + :ivar name: The name of the operation. + :vartype name: str + :ivar operation: The display name of the operation. + :vartype operation: str + :ivar resource: The display name of the resource the operation applies to. + :vartype resource: str + :ivar description: The description of the operation. + :vartype description: str + :ivar provider: The resource provider for the operation. + :vartype provider: str + """ + + _validation = { + "origin": {"readonly": True}, + "name": {"readonly": True}, + "operation": {"readonly": True}, + "resource": {"readonly": True}, + "description": {"readonly": True}, + "provider": {"readonly": True}, + } + + _attribute_map = { + "origin": {"key": "origin", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "operation": {"key": "display.operation", "type": "str"}, + "resource": {"key": "display.resource", "type": "str"}, + "description": {"key": "display.description", "type": "str"}, + "provider": {"key": "display.provider", "type": "str"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.origin: Optional[str] = None + self.name: Optional[str] = None + self.operation: Optional[str] = None + self.resource: Optional[str] = None + self.description: Optional[str] = None + self.provider: Optional[str] = None + + +class OutboundEnvironmentEndpoint(_serialization.Model): + """Egress endpoints which AKS agent nodes connect to for common purpose. + + :ivar category: The category of endpoints accessed by the AKS agent node, e.g. + azure-resource-management, apiserver, etc. + :vartype category: str + :ivar endpoints: The endpoints that AKS agent nodes connect to. + :vartype endpoints: list[~azure.mgmt.containerservice.models.EndpointDependency] + """ + + _attribute_map = { + "category": {"key": "category", "type": "str"}, + "endpoints": {"key": "endpoints", "type": "[EndpointDependency]"}, + } + + def __init__( + self, + *, + category: Optional[str] = None, + endpoints: Optional[list["_models.EndpointDependency"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword category: The category of endpoints accessed by the AKS agent node, e.g. + azure-resource-management, apiserver, etc. + :paramtype category: str + :keyword endpoints: The endpoints that AKS agent nodes connect to. + :paramtype endpoints: list[~azure.mgmt.containerservice.models.EndpointDependency] + """ + super().__init__(**kwargs) + self.category = category + self.endpoints = endpoints + + +class OutboundEnvironmentEndpointCollection(_serialization.Model): + """Collection of OutboundEnvironmentEndpoint. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar value: Collection of resources. Required. + :vartype value: list[~azure.mgmt.containerservice.models.OutboundEnvironmentEndpoint] + :ivar next_link: Link to next page of resources. + :vartype next_link: str + """ + + _validation = { + "value": {"required": True}, + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[OutboundEnvironmentEndpoint]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, *, value: list["_models.OutboundEnvironmentEndpoint"], **kwargs: Any) -> None: + """ + :keyword value: Collection of resources. Required. + :paramtype value: list[~azure.mgmt.containerservice.models.OutboundEnvironmentEndpoint] + """ + super().__init__(**kwargs) + self.value = value + self.next_link: Optional[str] = None + + +class PortRange(_serialization.Model): + """The port range. + + :ivar port_start: The minimum port that is included in the range. It should be ranged from 1 to + 65535, and be less than or equal to portEnd. + :vartype port_start: int + :ivar port_end: The maximum port that is included in the range. It should be ranged from 1 to + 65535, and be greater than or equal to portStart. + :vartype port_end: int + :ivar protocol: The network protocol of the port. Known values are: "TCP" and "UDP". + :vartype protocol: str or ~azure.mgmt.containerservice.models.Protocol + """ + + _validation = { + "port_start": {"maximum": 65535, "minimum": 1}, + "port_end": {"maximum": 65535, "minimum": 1}, + } + + _attribute_map = { + "port_start": {"key": "portStart", "type": "int"}, + "port_end": {"key": "portEnd", "type": "int"}, + "protocol": {"key": "protocol", "type": "str"}, + } + + def __init__( + self, + *, + port_start: Optional[int] = None, + port_end: Optional[int] = None, + protocol: Optional[Union[str, "_models.Protocol"]] = None, + **kwargs: Any + ) -> None: + """ + :keyword port_start: The minimum port that is included in the range. It should be ranged from 1 + to 65535, and be less than or equal to portEnd. + :paramtype port_start: int + :keyword port_end: The maximum port that is included in the range. It should be ranged from 1 + to 65535, and be greater than or equal to portStart. + :paramtype port_end: int + :keyword protocol: The network protocol of the port. Known values are: "TCP" and "UDP". + :paramtype protocol: str or ~azure.mgmt.containerservice.models.Protocol + """ + super().__init__(**kwargs) + self.port_start = port_start + self.port_end = port_end + self.protocol = protocol + + +class PowerState(_serialization.Model): + """Describes the Power State of the cluster. + + :ivar code: Tells whether the cluster is Running or Stopped. Known values are: "Running" and + "Stopped". + :vartype code: str or ~azure.mgmt.containerservice.models.Code + """ + + _attribute_map = { + "code": {"key": "code", "type": "str"}, + } + + def __init__(self, *, code: Optional[Union[str, "_models.Code"]] = None, **kwargs: Any) -> None: + """ + :keyword code: Tells whether the cluster is Running or Stopped. Known values are: "Running" and + "Stopped". + :paramtype code: str or ~azure.mgmt.containerservice.models.Code + """ + super().__init__(**kwargs) + self.code = code + + +class PrivateEndpoint(_serialization.Model): + """Private endpoint which a connection belongs to. + + :ivar id: The resource ID of the private endpoint. + :vartype id: str + """ + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + } + + def __init__(self, *, id: Optional[str] = None, **kwargs: Any) -> None: # pylint: disable=redefined-builtin + """ + :keyword id: The resource ID of the private endpoint. + :paramtype id: str + """ + super().__init__(**kwargs) + self.id = id + + +class PrivateEndpointConnection(_serialization.Model): + """A private endpoint connection. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The ID of the private endpoint connection. + :vartype id: str + :ivar name: The name of the private endpoint connection. + :vartype name: str + :ivar type: The resource type. + :vartype type: str + :ivar provisioning_state: The current provisioning state. Known values are: "Canceled", + "Creating", "Deleting", "Failed", and "Succeeded". + :vartype provisioning_state: str or + ~azure.mgmt.containerservice.models.PrivateEndpointConnectionProvisioningState + :ivar private_endpoint: The resource of private endpoint. + :vartype private_endpoint: ~azure.mgmt.containerservice.models.PrivateEndpoint + :ivar private_link_service_connection_state: A collection of information about the state of the + connection between service consumer and provider. + :vartype private_link_service_connection_state: + ~azure.mgmt.containerservice.models.PrivateLinkServiceConnectionState + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "provisioning_state": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, + "private_endpoint": {"key": "properties.privateEndpoint", "type": "PrivateEndpoint"}, + "private_link_service_connection_state": { + "key": "properties.privateLinkServiceConnectionState", + "type": "PrivateLinkServiceConnectionState", + }, + } + + def __init__( + self, + *, + private_endpoint: Optional["_models.PrivateEndpoint"] = None, + private_link_service_connection_state: Optional["_models.PrivateLinkServiceConnectionState"] = None, + **kwargs: Any + ) -> None: + """ + :keyword private_endpoint: The resource of private endpoint. + :paramtype private_endpoint: ~azure.mgmt.containerservice.models.PrivateEndpoint + :keyword private_link_service_connection_state: A collection of information about the state of + the connection between service consumer and provider. + :paramtype private_link_service_connection_state: + ~azure.mgmt.containerservice.models.PrivateLinkServiceConnectionState + """ + super().__init__(**kwargs) + self.id: Optional[str] = None + self.name: Optional[str] = None + self.type: Optional[str] = None + self.provisioning_state: Optional[Union[str, "_models.PrivateEndpointConnectionProvisioningState"]] = None + self.private_endpoint = private_endpoint + self.private_link_service_connection_state = private_link_service_connection_state + + +class PrivateEndpointConnectionListResult(_serialization.Model): + """A list of private endpoint connections. + + :ivar value: The collection value. + :vartype value: list[~azure.mgmt.containerservice.models.PrivateEndpointConnection] + """ + + _attribute_map = { + "value": {"key": "value", "type": "[PrivateEndpointConnection]"}, + } + + def __init__(self, *, value: Optional[list["_models.PrivateEndpointConnection"]] = None, **kwargs: Any) -> None: + """ + :keyword value: The collection value. + :paramtype value: list[~azure.mgmt.containerservice.models.PrivateEndpointConnection] + """ + super().__init__(**kwargs) + self.value = value + + +class PrivateLinkResource(_serialization.Model): + """A private link resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The ID of the private link resource. + :vartype id: str + :ivar name: The name of the private link resource. + :vartype name: str + :ivar type: The resource type. + :vartype type: str + :ivar group_id: The group ID of the resource. + :vartype group_id: str + :ivar required_members: The RequiredMembers of the resource. + :vartype required_members: list[str] + :ivar private_link_service_id: The private link service ID of the resource, this field is + exposed only to NRP internally. + :vartype private_link_service_id: str + """ + + _validation = { + "private_link_service_id": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "group_id": {"key": "groupId", "type": "str"}, + "required_members": {"key": "requiredMembers", "type": "[str]"}, + "private_link_service_id": {"key": "privateLinkServiceID", "type": "str"}, + } + + def __init__( + self, + *, + id: Optional[str] = None, # pylint: disable=redefined-builtin + name: Optional[str] = None, + type: Optional[str] = None, + group_id: Optional[str] = None, + required_members: Optional[list[str]] = None, + **kwargs: Any + ) -> None: + """ + :keyword id: The ID of the private link resource. + :paramtype id: str + :keyword name: The name of the private link resource. + :paramtype name: str + :keyword type: The resource type. + :paramtype type: str + :keyword group_id: The group ID of the resource. + :paramtype group_id: str + :keyword required_members: The RequiredMembers of the resource. + :paramtype required_members: list[str] + """ + super().__init__(**kwargs) + self.id = id + self.name = name + self.type = type + self.group_id = group_id + self.required_members = required_members + self.private_link_service_id: Optional[str] = None + + +class PrivateLinkResourcesListResult(_serialization.Model): + """A list of private link resources. + + :ivar value: The collection value. + :vartype value: list[~azure.mgmt.containerservice.models.PrivateLinkResource] + """ + + _attribute_map = { + "value": {"key": "value", "type": "[PrivateLinkResource]"}, + } + + def __init__(self, *, value: Optional[list["_models.PrivateLinkResource"]] = None, **kwargs: Any) -> None: + """ + :keyword value: The collection value. + :paramtype value: list[~azure.mgmt.containerservice.models.PrivateLinkResource] + """ + super().__init__(**kwargs) + self.value = value + + +class PrivateLinkServiceConnectionState(_serialization.Model): + """The state of a private link service connection. + + :ivar status: The private link service connection status. Known values are: "Pending", + "Approved", "Rejected", and "Disconnected". + :vartype status: str or ~azure.mgmt.containerservice.models.ConnectionStatus + :ivar description: The private link service connection description. + :vartype description: str + """ + + _attribute_map = { + "status": {"key": "status", "type": "str"}, + "description": {"key": "description", "type": "str"}, + } + + def __init__( + self, + *, + status: Optional[Union[str, "_models.ConnectionStatus"]] = None, + description: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword status: The private link service connection status. Known values are: "Pending", + "Approved", "Rejected", and "Disconnected". + :paramtype status: str or ~azure.mgmt.containerservice.models.ConnectionStatus + :keyword description: The private link service connection description. + :paramtype description: str + """ + super().__init__(**kwargs) + self.status = status + self.description = description + + +class RelativeMonthlySchedule(_serialization.Model): + """For schedules like: 'recur every month on the first Monday' or 'recur every 3 months on last + Friday'. + + All required parameters must be populated in order to send to server. + + :ivar interval_months: Specifies the number of months between each set of occurrences. + Required. + :vartype interval_months: int + :ivar week_index: The week index. Specifies on which week of the month the dayOfWeek applies. + Required. Known values are: "First", "Second", "Third", "Fourth", and "Last". + :vartype week_index: str or ~azure.mgmt.containerservice.models.Type + :ivar day_of_week: Specifies on which day of the week the maintenance occurs. Required. Known + values are: "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", and "Saturday". + :vartype day_of_week: str or ~azure.mgmt.containerservice.models.WeekDay + """ + + _validation = { + "interval_months": {"required": True, "maximum": 6, "minimum": 1}, + "week_index": {"required": True}, + "day_of_week": {"required": True}, + } + + _attribute_map = { + "interval_months": {"key": "intervalMonths", "type": "int"}, + "week_index": {"key": "weekIndex", "type": "str"}, + "day_of_week": {"key": "dayOfWeek", "type": "str"}, + } + + def __init__( + self, + *, + interval_months: int, + week_index: Union[str, "_models.Type"], + day_of_week: Union[str, "_models.WeekDay"], + **kwargs: Any + ) -> None: + """ + :keyword interval_months: Specifies the number of months between each set of occurrences. + Required. + :paramtype interval_months: int + :keyword week_index: The week index. Specifies on which week of the month the dayOfWeek + applies. Required. Known values are: "First", "Second", "Third", "Fourth", and "Last". + :paramtype week_index: str or ~azure.mgmt.containerservice.models.Type + :keyword day_of_week: Specifies on which day of the week the maintenance occurs. Required. + Known values are: "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", and + "Saturday". + :paramtype day_of_week: str or ~azure.mgmt.containerservice.models.WeekDay + """ + super().__init__(**kwargs) + self.interval_months = interval_months + self.week_index = week_index + self.day_of_week = day_of_week + + +class ResourceQuota(_serialization.Model): + """Resource quota for the namespace. + + :ivar cpu_request: CPU request of the namespace in one-thousandth CPU form. See `CPU resource + units + `_ + for more details. + :vartype cpu_request: str + :ivar cpu_limit: CPU limit of the namespace in one-thousandth CPU form. See `CPU resource units + `_ + for more details. + :vartype cpu_limit: str + :ivar memory_request: Memory request of the namespace in the power-of-two equivalents form: Ei, + Pi, Ti, Gi, Mi, Ki. See `Memory resource units + `_ + for more details. + :vartype memory_request: str + :ivar memory_limit: Memory limit of the namespace in the power-of-two equivalents form: Ei, Pi, + Ti, Gi, Mi, Ki. See `Memory resource units + `_ + for more details. + :vartype memory_limit: str + """ + + _attribute_map = { + "cpu_request": {"key": "cpuRequest", "type": "str"}, + "cpu_limit": {"key": "cpuLimit", "type": "str"}, + "memory_request": {"key": "memoryRequest", "type": "str"}, + "memory_limit": {"key": "memoryLimit", "type": "str"}, + } + + def __init__( + self, + *, + cpu_request: Optional[str] = None, + cpu_limit: Optional[str] = None, + memory_request: Optional[str] = None, + memory_limit: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword cpu_request: CPU request of the namespace in one-thousandth CPU form. See `CPU + resource units + `_ + for more details. + :paramtype cpu_request: str + :keyword cpu_limit: CPU limit of the namespace in one-thousandth CPU form. See `CPU resource + units + `_ + for more details. + :paramtype cpu_limit: str + :keyword memory_request: Memory request of the namespace in the power-of-two equivalents form: + Ei, Pi, Ti, Gi, Mi, Ki. See `Memory resource units + `_ + for more details. + :paramtype memory_request: str + :keyword memory_limit: Memory limit of the namespace in the power-of-two equivalents form: Ei, + Pi, Ti, Gi, Mi, Ki. See `Memory resource units + `_ + for more details. + :paramtype memory_limit: str + """ + super().__init__(**kwargs) + self.cpu_request = cpu_request + self.cpu_limit = cpu_limit + self.memory_request = memory_request + self.memory_limit = memory_limit + + +class ResourceReference(_serialization.Model): + """A reference to an Azure resource. + + :ivar id: The fully qualified Azure resource id. + :vartype id: str + """ + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + } + + def __init__(self, *, id: Optional[str] = None, **kwargs: Any) -> None: # pylint: disable=redefined-builtin + """ + :keyword id: The fully qualified Azure resource id. + :paramtype id: str + """ + super().__init__(**kwargs) + self.id = id + + +class RunCommandRequest(_serialization.Model): + """A run command request. + + All required parameters must be populated in order to send to server. + + :ivar command: The command to run. Required. + :vartype command: str + :ivar context: A base64 encoded zip file containing the files required by the command. + :vartype context: str + :ivar cluster_token: AuthToken issued for AKS AAD Server App. + :vartype cluster_token: str + """ + + _validation = { + "command": {"required": True}, + } + + _attribute_map = { + "command": {"key": "command", "type": "str"}, + "context": {"key": "context", "type": "str"}, + "cluster_token": {"key": "clusterToken", "type": "str"}, + } + + def __init__( + self, *, command: str, context: Optional[str] = None, cluster_token: Optional[str] = None, **kwargs: Any + ) -> None: + """ + :keyword command: The command to run. Required. + :paramtype command: str + :keyword context: A base64 encoded zip file containing the files required by the command. + :paramtype context: str + :keyword cluster_token: AuthToken issued for AKS AAD Server App. + :paramtype cluster_token: str + """ + super().__init__(**kwargs) + self.command = command + self.context = context + self.cluster_token = cluster_token + + +class RunCommandResult(_serialization.Model): + """run command result. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The command id. + :vartype id: str + :ivar provisioning_state: provisioning State. + :vartype provisioning_state: str + :ivar exit_code: The exit code of the command. + :vartype exit_code: int + :ivar started_at: The time when the command started. + :vartype started_at: ~datetime.datetime + :ivar finished_at: The time when the command finished. + :vartype finished_at: ~datetime.datetime + :ivar logs: The command output. + :vartype logs: str + :ivar reason: An explanation of why provisioningState is set to failed (if so). + :vartype reason: str + """ + + _validation = { + "id": {"readonly": True}, + "provisioning_state": {"readonly": True}, + "exit_code": {"readonly": True}, + "started_at": {"readonly": True}, + "finished_at": {"readonly": True}, + "logs": {"readonly": True}, + "reason": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, + "exit_code": {"key": "properties.exitCode", "type": "int"}, + "started_at": {"key": "properties.startedAt", "type": "iso-8601"}, + "finished_at": {"key": "properties.finishedAt", "type": "iso-8601"}, + "logs": {"key": "properties.logs", "type": "str"}, + "reason": {"key": "properties.reason", "type": "str"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.id: Optional[str] = None + self.provisioning_state: Optional[str] = None + self.exit_code: Optional[int] = None + self.started_at: Optional[datetime.datetime] = None + self.finished_at: Optional[datetime.datetime] = None + self.logs: Optional[str] = None + self.reason: Optional[str] = None + + +class ScaleProfile(_serialization.Model): + """Specifications on how to scale a VirtualMachines agent pool. + + :ivar manual: Specifications on how to scale the VirtualMachines agent pool to a fixed size. + :vartype manual: list[~azure.mgmt.containerservice.models.ManualScaleProfile] + """ + + _attribute_map = { + "manual": {"key": "manual", "type": "[ManualScaleProfile]"}, + } + + def __init__(self, *, manual: Optional[list["_models.ManualScaleProfile"]] = None, **kwargs: Any) -> None: + """ + :keyword manual: Specifications on how to scale the VirtualMachines agent pool to a fixed size. + :paramtype manual: list[~azure.mgmt.containerservice.models.ManualScaleProfile] + """ + super().__init__(**kwargs) + self.manual = manual + + +class Schedule(_serialization.Model): + """One and only one of the schedule types should be specified. Choose either 'daily', 'weekly', + 'absoluteMonthly' or 'relativeMonthly' for your maintenance schedule. + + :ivar daily: For schedules like: 'recur every day' or 'recur every 3 days'. + :vartype daily: ~azure.mgmt.containerservice.models.DailySchedule + :ivar weekly: For schedules like: 'recur every Monday' or 'recur every 3 weeks on Wednesday'. + :vartype weekly: ~azure.mgmt.containerservice.models.WeeklySchedule + :ivar absolute_monthly: For schedules like: 'recur every month on the 15th' or 'recur every 3 + months on the 20th'. + :vartype absolute_monthly: ~azure.mgmt.containerservice.models.AbsoluteMonthlySchedule + :ivar relative_monthly: For schedules like: 'recur every month on the first Monday' or 'recur + every 3 months on last Friday'. + :vartype relative_monthly: ~azure.mgmt.containerservice.models.RelativeMonthlySchedule + """ + + _attribute_map = { + "daily": {"key": "daily", "type": "DailySchedule"}, + "weekly": {"key": "weekly", "type": "WeeklySchedule"}, + "absolute_monthly": {"key": "absoluteMonthly", "type": "AbsoluteMonthlySchedule"}, + "relative_monthly": {"key": "relativeMonthly", "type": "RelativeMonthlySchedule"}, + } + + def __init__( + self, + *, + daily: Optional["_models.DailySchedule"] = None, + weekly: Optional["_models.WeeklySchedule"] = None, + absolute_monthly: Optional["_models.AbsoluteMonthlySchedule"] = None, + relative_monthly: Optional["_models.RelativeMonthlySchedule"] = None, + **kwargs: Any + ) -> None: + """ + :keyword daily: For schedules like: 'recur every day' or 'recur every 3 days'. + :paramtype daily: ~azure.mgmt.containerservice.models.DailySchedule + :keyword weekly: For schedules like: 'recur every Monday' or 'recur every 3 weeks on + Wednesday'. + :paramtype weekly: ~azure.mgmt.containerservice.models.WeeklySchedule + :keyword absolute_monthly: For schedules like: 'recur every month on the 15th' or 'recur every + 3 months on the 20th'. + :paramtype absolute_monthly: ~azure.mgmt.containerservice.models.AbsoluteMonthlySchedule + :keyword relative_monthly: For schedules like: 'recur every month on the first Monday' or + 'recur every 3 months on last Friday'. + :paramtype relative_monthly: ~azure.mgmt.containerservice.models.RelativeMonthlySchedule + """ + super().__init__(**kwargs) + self.daily = daily + self.weekly = weekly + self.absolute_monthly = absolute_monthly + self.relative_monthly = relative_monthly + + +class ServiceMeshProfile(_serialization.Model): + """Service mesh profile for a managed cluster. + + All required parameters must be populated in order to send to server. + + :ivar mode: Mode of the service mesh. Required. Known values are: "Istio" and "Disabled". + :vartype mode: str or ~azure.mgmt.containerservice.models.ServiceMeshMode + :ivar istio: Istio service mesh configuration. + :vartype istio: ~azure.mgmt.containerservice.models.IstioServiceMesh + """ + + _validation = { + "mode": {"required": True}, + } + + _attribute_map = { + "mode": {"key": "mode", "type": "str"}, + "istio": {"key": "istio", "type": "IstioServiceMesh"}, + } + + def __init__( + self, + *, + mode: Union[str, "_models.ServiceMeshMode"], + istio: Optional["_models.IstioServiceMesh"] = None, + **kwargs: Any + ) -> None: + """ + :keyword mode: Mode of the service mesh. Required. Known values are: "Istio" and "Disabled". + :paramtype mode: str or ~azure.mgmt.containerservice.models.ServiceMeshMode + :keyword istio: Istio service mesh configuration. + :paramtype istio: ~azure.mgmt.containerservice.models.IstioServiceMesh + """ + super().__init__(**kwargs) + self.mode = mode + self.istio = istio + + +class Snapshot(TrackedResource): + """A node pool snapshot resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + :ivar tags: Resource tags. + :vartype tags: dict[str, str] + :ivar location: The geo-location where the resource lives. Required. + :vartype location: str + :ivar creation_data: CreationData to be used to specify the source agent pool resource ID to + create this snapshot. + :vartype creation_data: ~azure.mgmt.containerservice.models.CreationData + :ivar snapshot_type: The type of a snapshot. The default is NodePool. "NodePool" + :vartype snapshot_type: str or ~azure.mgmt.containerservice.models.SnapshotType + :ivar kubernetes_version: The version of Kubernetes. + :vartype kubernetes_version: str + :ivar node_image_version: The version of node image. + :vartype node_image_version: str + :ivar os_type: The operating system type. The default is Linux. Known values are: "Linux" and + "Windows". + :vartype os_type: str or ~azure.mgmt.containerservice.models.OSType + :ivar os_sku: Specifies the OS SKU used by the agent pool. The default is Ubuntu if OSType is + Linux. The default is Windows2019 when Kubernetes <= 1.24 or Windows2022 when Kubernetes >= + 1.25 if OSType is Windows. Known values are: "Ubuntu", "AzureLinux", "AzureLinux3", + "CBLMariner", "Windows2019", "Windows2022", "Ubuntu2204", and "Ubuntu2404". + :vartype os_sku: str or ~azure.mgmt.containerservice.models.OSSKU + :ivar vm_size: The size of the VM. + :vartype vm_size: str + :ivar enable_fips: Whether to use a FIPS-enabled OS. + :vartype enable_fips: bool + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + "location": {"required": True}, + "kubernetes_version": {"readonly": True}, + "node_image_version": {"readonly": True}, + "os_type": {"readonly": True}, + "os_sku": {"readonly": True}, + "vm_size": {"readonly": True}, + "enable_fips": {"readonly": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "tags": {"key": "tags", "type": "{str}"}, + "location": {"key": "location", "type": "str"}, + "creation_data": {"key": "properties.creationData", "type": "CreationData"}, + "snapshot_type": {"key": "properties.snapshotType", "type": "str"}, + "kubernetes_version": {"key": "properties.kubernetesVersion", "type": "str"}, + "node_image_version": {"key": "properties.nodeImageVersion", "type": "str"}, + "os_type": {"key": "properties.osType", "type": "str"}, + "os_sku": {"key": "properties.osSku", "type": "str"}, + "vm_size": {"key": "properties.vmSize", "type": "str"}, + "enable_fips": {"key": "properties.enableFIPS", "type": "bool"}, + } + + def __init__( + self, + *, + location: str, + tags: Optional[dict[str, str]] = None, + creation_data: Optional["_models.CreationData"] = None, + snapshot_type: Union[str, "_models.SnapshotType"] = "NodePool", + **kwargs: Any + ) -> None: + """ + :keyword tags: Resource tags. + :paramtype tags: dict[str, str] + :keyword location: The geo-location where the resource lives. Required. + :paramtype location: str + :keyword creation_data: CreationData to be used to specify the source agent pool resource ID to + create this snapshot. + :paramtype creation_data: ~azure.mgmt.containerservice.models.CreationData + :keyword snapshot_type: The type of a snapshot. The default is NodePool. "NodePool" + :paramtype snapshot_type: str or ~azure.mgmt.containerservice.models.SnapshotType + """ + super().__init__(tags=tags, location=location, **kwargs) + self.creation_data = creation_data + self.snapshot_type = snapshot_type + self.kubernetes_version: Optional[str] = None + self.node_image_version: Optional[str] = None + self.os_type: Optional[Union[str, "_models.OSType"]] = None + self.os_sku: Optional[Union[str, "_models.OSSKU"]] = None + self.vm_size: Optional[str] = None + self.enable_fips: Optional[bool] = None + + +class SnapshotListResult(_serialization.Model): + """The response from the List Snapshots operation. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: The list of snapshots. + :vartype value: list[~azure.mgmt.containerservice.models.Snapshot] + :ivar next_link: The URL to get the next set of snapshot results. + :vartype next_link: str + """ + + _validation = { + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[Snapshot]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, *, value: Optional[list["_models.Snapshot"]] = None, **kwargs: Any) -> None: + """ + :keyword value: The list of snapshots. + :paramtype value: list[~azure.mgmt.containerservice.models.Snapshot] + """ + super().__init__(**kwargs) + self.value = value + self.next_link: Optional[str] = None + + +class SysctlConfig(_serialization.Model): + """Sysctl settings for Linux agent nodes. + + :ivar net_core_somaxconn: Sysctl setting net.core.somaxconn. + :vartype net_core_somaxconn: int + :ivar net_core_netdev_max_backlog: Sysctl setting net.core.netdev_max_backlog. + :vartype net_core_netdev_max_backlog: int + :ivar net_core_rmem_default: Sysctl setting net.core.rmem_default. + :vartype net_core_rmem_default: int + :ivar net_core_rmem_max: Sysctl setting net.core.rmem_max. + :vartype net_core_rmem_max: int + :ivar net_core_wmem_default: Sysctl setting net.core.wmem_default. + :vartype net_core_wmem_default: int + :ivar net_core_wmem_max: Sysctl setting net.core.wmem_max. + :vartype net_core_wmem_max: int + :ivar net_core_optmem_max: Sysctl setting net.core.optmem_max. + :vartype net_core_optmem_max: int + :ivar net_ipv4_tcp_max_syn_backlog: Sysctl setting net.ipv4.tcp_max_syn_backlog. + :vartype net_ipv4_tcp_max_syn_backlog: int + :ivar net_ipv4_tcp_max_tw_buckets: Sysctl setting net.ipv4.tcp_max_tw_buckets. + :vartype net_ipv4_tcp_max_tw_buckets: int + :ivar net_ipv4_tcp_fin_timeout: Sysctl setting net.ipv4.tcp_fin_timeout. + :vartype net_ipv4_tcp_fin_timeout: int + :ivar net_ipv4_tcp_keepalive_time: Sysctl setting net.ipv4.tcp_keepalive_time. + :vartype net_ipv4_tcp_keepalive_time: int + :ivar net_ipv4_tcp_keepalive_probes: Sysctl setting net.ipv4.tcp_keepalive_probes. + :vartype net_ipv4_tcp_keepalive_probes: int + :ivar net_ipv4_tcpkeepalive_intvl: Sysctl setting net.ipv4.tcp_keepalive_intvl. + :vartype net_ipv4_tcpkeepalive_intvl: int + :ivar net_ipv4_tcp_tw_reuse: Sysctl setting net.ipv4.tcp_tw_reuse. + :vartype net_ipv4_tcp_tw_reuse: bool + :ivar net_ipv4_ip_local_port_range: Sysctl setting net.ipv4.ip_local_port_range. + :vartype net_ipv4_ip_local_port_range: str + :ivar net_ipv4_neigh_default_gc_thresh1: Sysctl setting net.ipv4.neigh.default.gc_thresh1. + :vartype net_ipv4_neigh_default_gc_thresh1: int + :ivar net_ipv4_neigh_default_gc_thresh2: Sysctl setting net.ipv4.neigh.default.gc_thresh2. + :vartype net_ipv4_neigh_default_gc_thresh2: int + :ivar net_ipv4_neigh_default_gc_thresh3: Sysctl setting net.ipv4.neigh.default.gc_thresh3. + :vartype net_ipv4_neigh_default_gc_thresh3: int + :ivar net_netfilter_nf_conntrack_max: Sysctl setting net.netfilter.nf_conntrack_max. + :vartype net_netfilter_nf_conntrack_max: int + :ivar net_netfilter_nf_conntrack_buckets: Sysctl setting net.netfilter.nf_conntrack_buckets. + :vartype net_netfilter_nf_conntrack_buckets: int + :ivar fs_inotify_max_user_watches: Sysctl setting fs.inotify.max_user_watches. + :vartype fs_inotify_max_user_watches: int + :ivar fs_file_max: Sysctl setting fs.file-max. + :vartype fs_file_max: int + :ivar fs_aio_max_nr: Sysctl setting fs.aio-max-nr. + :vartype fs_aio_max_nr: int + :ivar fs_nr_open: Sysctl setting fs.nr_open. + :vartype fs_nr_open: int + :ivar kernel_threads_max: Sysctl setting kernel.threads-max. + :vartype kernel_threads_max: int + :ivar vm_max_map_count: Sysctl setting vm.max_map_count. + :vartype vm_max_map_count: int + :ivar vm_swappiness: Sysctl setting vm.swappiness. + :vartype vm_swappiness: int + :ivar vm_vfs_cache_pressure: Sysctl setting vm.vfs_cache_pressure. + :vartype vm_vfs_cache_pressure: int + """ + + _validation = { + "net_ipv4_tcpkeepalive_intvl": {"maximum": 90, "minimum": 10}, + "net_netfilter_nf_conntrack_max": {"maximum": 2097152, "minimum": 131072}, + "net_netfilter_nf_conntrack_buckets": {"maximum": 524288, "minimum": 65536}, + } + + _attribute_map = { + "net_core_somaxconn": {"key": "netCoreSomaxconn", "type": "int"}, + "net_core_netdev_max_backlog": {"key": "netCoreNetdevMaxBacklog", "type": "int"}, + "net_core_rmem_default": {"key": "netCoreRmemDefault", "type": "int"}, + "net_core_rmem_max": {"key": "netCoreRmemMax", "type": "int"}, + "net_core_wmem_default": {"key": "netCoreWmemDefault", "type": "int"}, + "net_core_wmem_max": {"key": "netCoreWmemMax", "type": "int"}, + "net_core_optmem_max": {"key": "netCoreOptmemMax", "type": "int"}, + "net_ipv4_tcp_max_syn_backlog": {"key": "netIpv4TcpMaxSynBacklog", "type": "int"}, + "net_ipv4_tcp_max_tw_buckets": {"key": "netIpv4TcpMaxTwBuckets", "type": "int"}, + "net_ipv4_tcp_fin_timeout": {"key": "netIpv4TcpFinTimeout", "type": "int"}, + "net_ipv4_tcp_keepalive_time": {"key": "netIpv4TcpKeepaliveTime", "type": "int"}, + "net_ipv4_tcp_keepalive_probes": {"key": "netIpv4TcpKeepaliveProbes", "type": "int"}, + "net_ipv4_tcpkeepalive_intvl": {"key": "netIpv4TcpkeepaliveIntvl", "type": "int"}, + "net_ipv4_tcp_tw_reuse": {"key": "netIpv4TcpTwReuse", "type": "bool"}, + "net_ipv4_ip_local_port_range": {"key": "netIpv4IpLocalPortRange", "type": "str"}, + "net_ipv4_neigh_default_gc_thresh1": {"key": "netIpv4NeighDefaultGcThresh1", "type": "int"}, + "net_ipv4_neigh_default_gc_thresh2": {"key": "netIpv4NeighDefaultGcThresh2", "type": "int"}, + "net_ipv4_neigh_default_gc_thresh3": {"key": "netIpv4NeighDefaultGcThresh3", "type": "int"}, + "net_netfilter_nf_conntrack_max": {"key": "netNetfilterNfConntrackMax", "type": "int"}, + "net_netfilter_nf_conntrack_buckets": {"key": "netNetfilterNfConntrackBuckets", "type": "int"}, + "fs_inotify_max_user_watches": {"key": "fsInotifyMaxUserWatches", "type": "int"}, + "fs_file_max": {"key": "fsFileMax", "type": "int"}, + "fs_aio_max_nr": {"key": "fsAioMaxNr", "type": "int"}, + "fs_nr_open": {"key": "fsNrOpen", "type": "int"}, + "kernel_threads_max": {"key": "kernelThreadsMax", "type": "int"}, + "vm_max_map_count": {"key": "vmMaxMapCount", "type": "int"}, + "vm_swappiness": {"key": "vmSwappiness", "type": "int"}, + "vm_vfs_cache_pressure": {"key": "vmVfsCachePressure", "type": "int"}, + } + + def __init__( # pylint: disable=too-many-locals + self, + *, + net_core_somaxconn: Optional[int] = None, + net_core_netdev_max_backlog: Optional[int] = None, + net_core_rmem_default: Optional[int] = None, + net_core_rmem_max: Optional[int] = None, + net_core_wmem_default: Optional[int] = None, + net_core_wmem_max: Optional[int] = None, + net_core_optmem_max: Optional[int] = None, + net_ipv4_tcp_max_syn_backlog: Optional[int] = None, + net_ipv4_tcp_max_tw_buckets: Optional[int] = None, + net_ipv4_tcp_fin_timeout: Optional[int] = None, + net_ipv4_tcp_keepalive_time: Optional[int] = None, + net_ipv4_tcp_keepalive_probes: Optional[int] = None, + net_ipv4_tcpkeepalive_intvl: Optional[int] = None, + net_ipv4_tcp_tw_reuse: Optional[bool] = None, + net_ipv4_ip_local_port_range: Optional[str] = None, + net_ipv4_neigh_default_gc_thresh1: Optional[int] = None, + net_ipv4_neigh_default_gc_thresh2: Optional[int] = None, + net_ipv4_neigh_default_gc_thresh3: Optional[int] = None, + net_netfilter_nf_conntrack_max: Optional[int] = None, + net_netfilter_nf_conntrack_buckets: Optional[int] = None, + fs_inotify_max_user_watches: Optional[int] = None, + fs_file_max: Optional[int] = None, + fs_aio_max_nr: Optional[int] = None, + fs_nr_open: Optional[int] = None, + kernel_threads_max: Optional[int] = None, + vm_max_map_count: Optional[int] = None, + vm_swappiness: Optional[int] = None, + vm_vfs_cache_pressure: Optional[int] = None, + **kwargs: Any + ) -> None: + """ + :keyword net_core_somaxconn: Sysctl setting net.core.somaxconn. + :paramtype net_core_somaxconn: int + :keyword net_core_netdev_max_backlog: Sysctl setting net.core.netdev_max_backlog. + :paramtype net_core_netdev_max_backlog: int + :keyword net_core_rmem_default: Sysctl setting net.core.rmem_default. + :paramtype net_core_rmem_default: int + :keyword net_core_rmem_max: Sysctl setting net.core.rmem_max. + :paramtype net_core_rmem_max: int + :keyword net_core_wmem_default: Sysctl setting net.core.wmem_default. + :paramtype net_core_wmem_default: int + :keyword net_core_wmem_max: Sysctl setting net.core.wmem_max. + :paramtype net_core_wmem_max: int + :keyword net_core_optmem_max: Sysctl setting net.core.optmem_max. + :paramtype net_core_optmem_max: int + :keyword net_ipv4_tcp_max_syn_backlog: Sysctl setting net.ipv4.tcp_max_syn_backlog. + :paramtype net_ipv4_tcp_max_syn_backlog: int + :keyword net_ipv4_tcp_max_tw_buckets: Sysctl setting net.ipv4.tcp_max_tw_buckets. + :paramtype net_ipv4_tcp_max_tw_buckets: int + :keyword net_ipv4_tcp_fin_timeout: Sysctl setting net.ipv4.tcp_fin_timeout. + :paramtype net_ipv4_tcp_fin_timeout: int + :keyword net_ipv4_tcp_keepalive_time: Sysctl setting net.ipv4.tcp_keepalive_time. + :paramtype net_ipv4_tcp_keepalive_time: int + :keyword net_ipv4_tcp_keepalive_probes: Sysctl setting net.ipv4.tcp_keepalive_probes. + :paramtype net_ipv4_tcp_keepalive_probes: int + :keyword net_ipv4_tcpkeepalive_intvl: Sysctl setting net.ipv4.tcp_keepalive_intvl. + :paramtype net_ipv4_tcpkeepalive_intvl: int + :keyword net_ipv4_tcp_tw_reuse: Sysctl setting net.ipv4.tcp_tw_reuse. + :paramtype net_ipv4_tcp_tw_reuse: bool + :keyword net_ipv4_ip_local_port_range: Sysctl setting net.ipv4.ip_local_port_range. + :paramtype net_ipv4_ip_local_port_range: str + :keyword net_ipv4_neigh_default_gc_thresh1: Sysctl setting net.ipv4.neigh.default.gc_thresh1. + :paramtype net_ipv4_neigh_default_gc_thresh1: int + :keyword net_ipv4_neigh_default_gc_thresh2: Sysctl setting net.ipv4.neigh.default.gc_thresh2. + :paramtype net_ipv4_neigh_default_gc_thresh2: int + :keyword net_ipv4_neigh_default_gc_thresh3: Sysctl setting net.ipv4.neigh.default.gc_thresh3. + :paramtype net_ipv4_neigh_default_gc_thresh3: int + :keyword net_netfilter_nf_conntrack_max: Sysctl setting net.netfilter.nf_conntrack_max. + :paramtype net_netfilter_nf_conntrack_max: int + :keyword net_netfilter_nf_conntrack_buckets: Sysctl setting net.netfilter.nf_conntrack_buckets. + :paramtype net_netfilter_nf_conntrack_buckets: int + :keyword fs_inotify_max_user_watches: Sysctl setting fs.inotify.max_user_watches. + :paramtype fs_inotify_max_user_watches: int + :keyword fs_file_max: Sysctl setting fs.file-max. + :paramtype fs_file_max: int + :keyword fs_aio_max_nr: Sysctl setting fs.aio-max-nr. + :paramtype fs_aio_max_nr: int + :keyword fs_nr_open: Sysctl setting fs.nr_open. + :paramtype fs_nr_open: int + :keyword kernel_threads_max: Sysctl setting kernel.threads-max. + :paramtype kernel_threads_max: int + :keyword vm_max_map_count: Sysctl setting vm.max_map_count. + :paramtype vm_max_map_count: int + :keyword vm_swappiness: Sysctl setting vm.swappiness. + :paramtype vm_swappiness: int + :keyword vm_vfs_cache_pressure: Sysctl setting vm.vfs_cache_pressure. + :paramtype vm_vfs_cache_pressure: int + """ + super().__init__(**kwargs) + self.net_core_somaxconn = net_core_somaxconn + self.net_core_netdev_max_backlog = net_core_netdev_max_backlog + self.net_core_rmem_default = net_core_rmem_default + self.net_core_rmem_max = net_core_rmem_max + self.net_core_wmem_default = net_core_wmem_default + self.net_core_wmem_max = net_core_wmem_max + self.net_core_optmem_max = net_core_optmem_max + self.net_ipv4_tcp_max_syn_backlog = net_ipv4_tcp_max_syn_backlog + self.net_ipv4_tcp_max_tw_buckets = net_ipv4_tcp_max_tw_buckets + self.net_ipv4_tcp_fin_timeout = net_ipv4_tcp_fin_timeout + self.net_ipv4_tcp_keepalive_time = net_ipv4_tcp_keepalive_time + self.net_ipv4_tcp_keepalive_probes = net_ipv4_tcp_keepalive_probes + self.net_ipv4_tcpkeepalive_intvl = net_ipv4_tcpkeepalive_intvl + self.net_ipv4_tcp_tw_reuse = net_ipv4_tcp_tw_reuse + self.net_ipv4_ip_local_port_range = net_ipv4_ip_local_port_range + self.net_ipv4_neigh_default_gc_thresh1 = net_ipv4_neigh_default_gc_thresh1 + self.net_ipv4_neigh_default_gc_thresh2 = net_ipv4_neigh_default_gc_thresh2 + self.net_ipv4_neigh_default_gc_thresh3 = net_ipv4_neigh_default_gc_thresh3 + self.net_netfilter_nf_conntrack_max = net_netfilter_nf_conntrack_max + self.net_netfilter_nf_conntrack_buckets = net_netfilter_nf_conntrack_buckets + self.fs_inotify_max_user_watches = fs_inotify_max_user_watches + self.fs_file_max = fs_file_max + self.fs_aio_max_nr = fs_aio_max_nr + self.fs_nr_open = fs_nr_open + self.kernel_threads_max = kernel_threads_max + self.vm_max_map_count = vm_max_map_count + self.vm_swappiness = vm_swappiness + self.vm_vfs_cache_pressure = vm_vfs_cache_pressure + + +class SystemData(_serialization.Model): + """Metadata pertaining to creation and last modification of the resource. + + :ivar created_by: The identity that created the resource. + :vartype created_by: str + :ivar created_by_type: The type of identity that created the resource. Known values are: + "User", "Application", "ManagedIdentity", and "Key". + :vartype created_by_type: str or ~azure.mgmt.containerservice.models.CreatedByType + :ivar created_at: The timestamp of resource creation (UTC). + :vartype created_at: ~datetime.datetime + :ivar last_modified_by: The identity that last modified the resource. + :vartype last_modified_by: str + :ivar last_modified_by_type: The type of identity that last modified the resource. Known values + are: "User", "Application", "ManagedIdentity", and "Key". + :vartype last_modified_by_type: str or ~azure.mgmt.containerservice.models.CreatedByType + :ivar last_modified_at: The timestamp of resource last modification (UTC). + :vartype last_modified_at: ~datetime.datetime + """ + + _attribute_map = { + "created_by": {"key": "createdBy", "type": "str"}, + "created_by_type": {"key": "createdByType", "type": "str"}, + "created_at": {"key": "createdAt", "type": "iso-8601"}, + "last_modified_by": {"key": "lastModifiedBy", "type": "str"}, + "last_modified_by_type": {"key": "lastModifiedByType", "type": "str"}, + "last_modified_at": {"key": "lastModifiedAt", "type": "iso-8601"}, + } + + def __init__( + self, + *, + created_by: Optional[str] = None, + created_by_type: Optional[Union[str, "_models.CreatedByType"]] = None, + created_at: Optional[datetime.datetime] = None, + last_modified_by: Optional[str] = None, + last_modified_by_type: Optional[Union[str, "_models.CreatedByType"]] = None, + last_modified_at: Optional[datetime.datetime] = None, + **kwargs: Any + ) -> None: + """ + :keyword created_by: The identity that created the resource. + :paramtype created_by: str + :keyword created_by_type: The type of identity that created the resource. Known values are: + "User", "Application", "ManagedIdentity", and "Key". + :paramtype created_by_type: str or ~azure.mgmt.containerservice.models.CreatedByType + :keyword created_at: The timestamp of resource creation (UTC). + :paramtype created_at: ~datetime.datetime + :keyword last_modified_by: The identity that last modified the resource. + :paramtype last_modified_by: str + :keyword last_modified_by_type: The type of identity that last modified the resource. Known + values are: "User", "Application", "ManagedIdentity", and "Key". + :paramtype last_modified_by_type: str or ~azure.mgmt.containerservice.models.CreatedByType + :keyword last_modified_at: The timestamp of resource last modification (UTC). + :paramtype last_modified_at: ~datetime.datetime + """ + super().__init__(**kwargs) + self.created_by = created_by + self.created_by_type = created_by_type + self.created_at = created_at + self.last_modified_by = last_modified_by + self.last_modified_by_type = last_modified_by_type + self.last_modified_at = last_modified_at + + +class TagsObject(_serialization.Model): + """Tags object for patch operations. + + :ivar tags: Resource tags. + :vartype tags: dict[str, str] + """ + + _attribute_map = { + "tags": {"key": "tags", "type": "{str}"}, + } + + def __init__(self, *, tags: Optional[dict[str, str]] = None, **kwargs: Any) -> None: + """ + :keyword tags: Resource tags. + :paramtype tags: dict[str, str] + """ + super().__init__(**kwargs) + self.tags = tags + + +class TimeInWeek(_serialization.Model): + """Time in a week. + + :ivar day: The day of the week. Known values are: "Sunday", "Monday", "Tuesday", "Wednesday", + "Thursday", "Friday", and "Saturday". + :vartype day: str or ~azure.mgmt.containerservice.models.WeekDay + :ivar hour_slots: A list of hours in the day used to identify a time range. Each integer hour + represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). + 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - + 02:00 UTC time range. + :vartype hour_slots: list[int] + """ + + _attribute_map = { + "day": {"key": "day", "type": "str"}, + "hour_slots": {"key": "hourSlots", "type": "[int]"}, + } + + def __init__( + self, + *, + day: Optional[Union[str, "_models.WeekDay"]] = None, + hour_slots: Optional[list[int]] = None, + **kwargs: Any + ) -> None: + """ + :keyword day: The day of the week. Known values are: "Sunday", "Monday", "Tuesday", + "Wednesday", "Thursday", "Friday", and "Saturday". + :paramtype day: str or ~azure.mgmt.containerservice.models.WeekDay + :keyword hour_slots: A list of hours in the day used to identify a time range. Each integer + hour represents a time range beginning at 0m after the hour ending at the next hour + (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] + means the 00:00 - 02:00 UTC time range. + :paramtype hour_slots: list[int] + """ + super().__init__(**kwargs) + self.day = day + self.hour_slots = hour_slots + + +class TimeSpan(_serialization.Model): + """A time range. For example, between 2021-05-25T13:00:00Z and 2021-05-25T14:00:00Z. + + :ivar start: The start of a time span. + :vartype start: ~datetime.datetime + :ivar end: The end of a time span. + :vartype end: ~datetime.datetime + """ + + _attribute_map = { + "start": {"key": "start", "type": "iso-8601"}, + "end": {"key": "end", "type": "iso-8601"}, + } + + def __init__( + self, *, start: Optional[datetime.datetime] = None, end: Optional[datetime.datetime] = None, **kwargs: Any + ) -> None: + """ + :keyword start: The start of a time span. + :paramtype start: ~datetime.datetime + :keyword end: The end of a time span. + :paramtype end: ~datetime.datetime + """ + super().__init__(**kwargs) + self.start = start + self.end = end + + +class TrustedAccessRole(_serialization.Model): + """Trusted access role definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar source_resource_type: Resource type of Azure resource. + :vartype source_resource_type: str + :ivar name: Name of role, name is unique under a source resource type. + :vartype name: str + :ivar rules: List of rules for the role. This maps to 'rules' property of `Kubernetes Cluster + Role + `_. + :vartype rules: list[~azure.mgmt.containerservice.models.TrustedAccessRoleRule] + """ + + _validation = { + "source_resource_type": {"readonly": True}, + "name": {"readonly": True}, + "rules": {"readonly": True}, + } + + _attribute_map = { + "source_resource_type": {"key": "sourceResourceType", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "rules": {"key": "rules", "type": "[TrustedAccessRoleRule]"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.source_resource_type: Optional[str] = None + self.name: Optional[str] = None + self.rules: Optional[list["_models.TrustedAccessRoleRule"]] = None + + +class TrustedAccessRoleBinding(Resource): + """Defines binding between a resource and role. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to server. + + :ivar id: Fully qualified resource ID for the resource. E.g. + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + "Microsoft.Storage/storageAccounts". + :vartype type: str + :ivar system_data: Azure Resource Manager metadata containing createdBy and modifiedBy + information. + :vartype system_data: ~azure.mgmt.containerservice.models.SystemData + :ivar provisioning_state: The current provisioning state of trusted access role binding. Known + values are: "Canceled", "Deleting", "Failed", "Succeeded", and "Updating". + :vartype provisioning_state: str or + ~azure.mgmt.containerservice.models.TrustedAccessRoleBindingProvisioningState + :ivar source_resource_id: The ARM resource ID of source resource that trusted access is + configured for. Required. + :vartype source_resource_id: str + :ivar roles: A list of roles to bind, each item is a resource type qualified role name. For + example: 'Microsoft.MachineLearningServices/workspaces/reader'. Required. + :vartype roles: list[str] + """ + + _validation = { + "id": {"readonly": True}, + "name": {"readonly": True}, + "type": {"readonly": True}, + "system_data": {"readonly": True}, + "provisioning_state": {"readonly": True}, + "source_resource_id": {"required": True}, + "roles": {"required": True}, + } + + _attribute_map = { + "id": {"key": "id", "type": "str"}, + "name": {"key": "name", "type": "str"}, + "type": {"key": "type", "type": "str"}, + "system_data": {"key": "systemData", "type": "SystemData"}, + "provisioning_state": {"key": "properties.provisioningState", "type": "str"}, + "source_resource_id": {"key": "properties.sourceResourceId", "type": "str"}, + "roles": {"key": "properties.roles", "type": "[str]"}, + } + + def __init__(self, *, source_resource_id: str, roles: list[str], **kwargs: Any) -> None: + """ + :keyword source_resource_id: The ARM resource ID of source resource that trusted access is + configured for. Required. + :paramtype source_resource_id: str + :keyword roles: A list of roles to bind, each item is a resource type qualified role name. For + example: 'Microsoft.MachineLearningServices/workspaces/reader'. Required. + :paramtype roles: list[str] + """ + super().__init__(**kwargs) + self.provisioning_state: Optional[Union[str, "_models.TrustedAccessRoleBindingProvisioningState"]] = None + self.source_resource_id = source_resource_id + self.roles = roles + + +class TrustedAccessRoleBindingListResult(_serialization.Model): + """List of trusted access role bindings. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: Role binding list. + :vartype value: list[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] + :ivar next_link: Link to next page of resources. + :vartype next_link: str + """ + + _validation = { + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[TrustedAccessRoleBinding]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, *, value: Optional[list["_models.TrustedAccessRoleBinding"]] = None, **kwargs: Any) -> None: + """ + :keyword value: Role binding list. + :paramtype value: list[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] + """ + super().__init__(**kwargs) + self.value = value + self.next_link: Optional[str] = None + + +class TrustedAccessRoleListResult(_serialization.Model): + """List of trusted access roles. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: Role list. + :vartype value: list[~azure.mgmt.containerservice.models.TrustedAccessRole] + :ivar next_link: Link to next page of resources. + :vartype next_link: str + """ + + _validation = { + "value": {"readonly": True}, + "next_link": {"readonly": True}, + } + + _attribute_map = { + "value": {"key": "value", "type": "[TrustedAccessRole]"}, + "next_link": {"key": "nextLink", "type": "str"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.value: Optional[list["_models.TrustedAccessRole"]] = None + self.next_link: Optional[str] = None + + +class TrustedAccessRoleRule(_serialization.Model): + """Rule for trusted access role. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar verbs: List of allowed verbs. + :vartype verbs: list[str] + :ivar api_groups: List of allowed apiGroups. + :vartype api_groups: list[str] + :ivar resources: List of allowed resources. + :vartype resources: list[str] + :ivar resource_names: List of allowed names. + :vartype resource_names: list[str] + :ivar non_resource_ur_ls: List of allowed nonResourceURLs. + :vartype non_resource_ur_ls: list[str] + """ + + _validation = { + "verbs": {"readonly": True}, + "api_groups": {"readonly": True}, + "resources": {"readonly": True}, + "resource_names": {"readonly": True}, + "non_resource_ur_ls": {"readonly": True}, + } + + _attribute_map = { + "verbs": {"key": "verbs", "type": "[str]"}, + "api_groups": {"key": "apiGroups", "type": "[str]"}, + "resources": {"key": "resources", "type": "[str]"}, + "resource_names": {"key": "resourceNames", "type": "[str]"}, + "non_resource_ur_ls": {"key": "nonResourceURLs", "type": "[str]"}, + } + + def __init__(self, **kwargs: Any) -> None: + """ """ + super().__init__(**kwargs) + self.verbs: Optional[list[str]] = None + self.api_groups: Optional[list[str]] = None + self.resources: Optional[list[str]] = None + self.resource_names: Optional[list[str]] = None + self.non_resource_ur_ls: Optional[list[str]] = None + + +class UpgradeOverrideSettings(_serialization.Model): + """Settings for overrides when upgrading a cluster. + + :ivar force_upgrade: Whether to force upgrade the cluster. Note that this option instructs + upgrade operation to bypass upgrade protections such as checking for deprecated API usage. + Enable this option only with caution. + :vartype force_upgrade: bool + :ivar until: Until when the overrides are effective. Note that this only matches the start time + of an upgrade, and the effectiveness won't change once an upgrade starts even if the ``until`` + expires as upgrade proceeds. This field is not set by default. It must be set for the overrides + to take effect. + :vartype until: ~datetime.datetime + """ + + _attribute_map = { + "force_upgrade": {"key": "forceUpgrade", "type": "bool"}, + "until": {"key": "until", "type": "iso-8601"}, + } + + def __init__( + self, *, force_upgrade: Optional[bool] = None, until: Optional[datetime.datetime] = None, **kwargs: Any + ) -> None: + """ + :keyword force_upgrade: Whether to force upgrade the cluster. Note that this option instructs + upgrade operation to bypass upgrade protections such as checking for deprecated API usage. + Enable this option only with caution. + :paramtype force_upgrade: bool + :keyword until: Until when the overrides are effective. Note that this only matches the start + time of an upgrade, and the effectiveness won't change once an upgrade starts even if the + ``until`` expires as upgrade proceeds. This field is not set by default. It must be set for the + overrides to take effect. + :paramtype until: ~datetime.datetime + """ + super().__init__(**kwargs) + self.force_upgrade = force_upgrade + self.until = until + + +class VirtualMachineNodes(_serialization.Model): + """Current status on a group of nodes of the same vm size. + + :ivar size: The VM size of the agents used to host this group of nodes. + :vartype size: str + :ivar count: Number of nodes. + :vartype count: int + """ + + _attribute_map = { + "size": {"key": "size", "type": "str"}, + "count": {"key": "count", "type": "int"}, + } + + def __init__(self, *, size: Optional[str] = None, count: Optional[int] = None, **kwargs: Any) -> None: + """ + :keyword size: The VM size of the agents used to host this group of nodes. + :paramtype size: str + :keyword count: Number of nodes. + :paramtype count: int + """ + super().__init__(**kwargs) + self.size = size + self.count = count + + +class VirtualMachinesProfile(_serialization.Model): + """Specifications on VirtualMachines agent pool. + + :ivar scale: Specifications on how to scale a VirtualMachines agent pool. + :vartype scale: ~azure.mgmt.containerservice.models.ScaleProfile + """ + + _attribute_map = { + "scale": {"key": "scale", "type": "ScaleProfile"}, + } + + def __init__(self, *, scale: Optional["_models.ScaleProfile"] = None, **kwargs: Any) -> None: + """ + :keyword scale: Specifications on how to scale a VirtualMachines agent pool. + :paramtype scale: ~azure.mgmt.containerservice.models.ScaleProfile + """ + super().__init__(**kwargs) + self.scale = scale + + +class WeeklySchedule(_serialization.Model): + """For schedules like: 'recur every Monday' or 'recur every 3 weeks on Wednesday'. + + All required parameters must be populated in order to send to server. + + :ivar interval_weeks: Specifies the number of weeks between each set of occurrences. Required. + :vartype interval_weeks: int + :ivar day_of_week: Specifies on which day of the week the maintenance occurs. Required. Known + values are: "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", and "Saturday". + :vartype day_of_week: str or ~azure.mgmt.containerservice.models.WeekDay + """ + + _validation = { + "interval_weeks": {"required": True, "maximum": 4, "minimum": 1}, + "day_of_week": {"required": True}, + } + + _attribute_map = { + "interval_weeks": {"key": "intervalWeeks", "type": "int"}, + "day_of_week": {"key": "dayOfWeek", "type": "str"}, + } + + def __init__(self, *, interval_weeks: int, day_of_week: Union[str, "_models.WeekDay"], **kwargs: Any) -> None: + """ + :keyword interval_weeks: Specifies the number of weeks between each set of occurrences. + Required. + :paramtype interval_weeks: int + :keyword day_of_week: Specifies on which day of the week the maintenance occurs. Required. + Known values are: "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", and + "Saturday". + :paramtype day_of_week: str or ~azure.mgmt.containerservice.models.WeekDay + """ + super().__init__(**kwargs) + self.interval_weeks = interval_weeks + self.day_of_week = day_of_week + + +class WindowsGmsaProfile(_serialization.Model): + """Windows gMSA Profile in the managed cluster. + + :ivar enabled: Whether to enable Windows gMSA. Specifies whether to enable Windows gMSA in the + managed cluster. + :vartype enabled: bool + :ivar dns_server: Specifies the DNS server for Windows gMSA. :code:`
`\\ :code:`
` Set it + to empty if you have configured the DNS server in the vnet which is used to create the managed + cluster. + :vartype dns_server: str + :ivar root_domain_name: Specifies the root domain name for Windows gMSA. :code:`
`\\ + :code:`
` Set it to empty if you have configured the DNS server in the vnet which is used to + create the managed cluster. + :vartype root_domain_name: str + """ + + _attribute_map = { + "enabled": {"key": "enabled", "type": "bool"}, + "dns_server": {"key": "dnsServer", "type": "str"}, + "root_domain_name": {"key": "rootDomainName", "type": "str"}, + } + + def __init__( + self, + *, + enabled: Optional[bool] = None, + dns_server: Optional[str] = None, + root_domain_name: Optional[str] = None, + **kwargs: Any + ) -> None: + """ + :keyword enabled: Whether to enable Windows gMSA. Specifies whether to enable Windows gMSA in + the managed cluster. + :paramtype enabled: bool + :keyword dns_server: Specifies the DNS server for Windows gMSA. :code:`
`\\ :code:`
` Set + it to empty if you have configured the DNS server in the vnet which is used to create the + managed cluster. + :paramtype dns_server: str + :keyword root_domain_name: Specifies the root domain name for Windows gMSA. :code:`
`\\ + :code:`
` Set it to empty if you have configured the DNS server in the vnet which is used to + create the managed cluster. + :paramtype root_domain_name: str + """ + super().__init__(**kwargs) + self.enabled = enabled + self.dns_server = dns_server + self.root_domain_name = root_domain_name diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/_patch.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/_patch.py new file mode 100644 index 00000000000..8bcb627aa47 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/models/_patch.py @@ -0,0 +1,21 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/__init__.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/__init__.py new file mode 100644 index 00000000000..70b2a677e7b --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/__init__.py @@ -0,0 +1,47 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=wrong-import-position + +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from ._patch import * # pylint: disable=unused-wildcard-import + +from ._operations import Operations # type: ignore +from ._managed_clusters_operations import ManagedClustersOperations # type: ignore +from ._maintenance_configurations_operations import MaintenanceConfigurationsOperations # type: ignore +from ._managed_namespaces_operations import ManagedNamespacesOperations # type: ignore +from ._agent_pools_operations import AgentPoolsOperations # type: ignore +from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations # type: ignore +from ._private_link_resources_operations import PrivateLinkResourcesOperations # type: ignore +from ._resolve_private_link_service_id_operations import ResolvePrivateLinkServiceIdOperations # type: ignore +from ._snapshots_operations import SnapshotsOperations # type: ignore +from ._trusted_access_role_bindings_operations import TrustedAccessRoleBindingsOperations # type: ignore +from ._trusted_access_roles_operations import TrustedAccessRolesOperations # type: ignore +from ._machines_operations import MachinesOperations # type: ignore + +from ._patch import __all__ as _patch_all +from ._patch import * +from ._patch import patch_sdk as _patch_sdk + +__all__ = [ + "Operations", + "ManagedClustersOperations", + "MaintenanceConfigurationsOperations", + "ManagedNamespacesOperations", + "AgentPoolsOperations", + "PrivateEndpointConnectionsOperations", + "PrivateLinkResourcesOperations", + "ResolvePrivateLinkServiceIdOperations", + "SnapshotsOperations", + "TrustedAccessRoleBindingsOperations", + "TrustedAccessRolesOperations", + "MachinesOperations", +] +__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore +_patch_sdk() diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_agent_pools_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_agent_pools_operations.py new file mode 100644 index 00000000000..203a6ca90b7 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_agent_pools_operations.py @@ -0,0 +1,1612 @@ +# pylint: disable=line-too-long,useless-suppression,too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +import urllib.parse + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + StreamClosedError, + StreamConsumedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_abort_latest_operation_request( + resource_group_name: str, resource_name: str, agent_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclusters/{resourceName}/agentPools/{agentPoolName}/abort", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "agentPoolName": _SERIALIZER.url( + "agent_pool_name", agent_pool_name, "str", max_length=12, min_length=1, pattern=r"^[a-z][a-z0-9]{0,11}$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_request( + resource_group_name: str, resource_name: str, agent_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "agentPoolName": _SERIALIZER.url( + "agent_pool_name", agent_pool_name, "str", max_length=12, min_length=1, pattern=r"^[a-z][a-z0-9]{0,11}$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_create_or_update_request( + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + subscription_id: str, + *, + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "agentPoolName": _SERIALIZER.url( + "agent_pool_name", agent_pool_name, "str", max_length=12, min_length=1, pattern=r"^[a-z][a-z0-9]{0,11}$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if if_match is not None: + _headers["If-Match"] = _SERIALIZER.header("if_match", if_match, "str") + if if_none_match is not None: + _headers["If-None-Match"] = _SERIALIZER.header("if_none_match", if_none_match, "str") + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PUT", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_delete_request( + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + subscription_id: str, + *, + ignore_pod_disruption_budget: Optional[bool] = None, + if_match: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "agentPoolName": _SERIALIZER.url( + "agent_pool_name", agent_pool_name, "str", max_length=12, min_length=1, pattern=r"^[a-z][a-z0-9]{0,11}$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + if ignore_pod_disruption_budget is not None: + _params["ignore-pod-disruption-budget"] = _SERIALIZER.query( + "ignore_pod_disruption_budget", ignore_pod_disruption_budget, "bool" + ) + + # Construct headers + if if_match is not None: + _headers["If-Match"] = _SERIALIZER.header("if_match", if_match, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="DELETE", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_upgrade_profile_request( + resource_group_name: str, resource_name: str, agent_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeProfiles/default", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "agentPoolName": _SERIALIZER.url( + "agent_pool_name", agent_pool_name, "str", max_length=12, min_length=1, pattern=r"^[a-z][a-z0-9]{0,11}$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_delete_machines_request( + resource_group_name: str, resource_name: str, agent_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/deleteMachines", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "agentPoolName": _SERIALIZER.url( + "agent_pool_name", agent_pool_name, "str", max_length=12, min_length=1, pattern=r"^[a-z][a-z0-9]{0,11}$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_available_agent_pool_versions_request( # pylint: disable=name-too-long + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/availableAgentPoolVersions", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_upgrade_node_image_version_request( + resource_group_name: str, resource_name: str, agent_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "agentPoolName": _SERIALIZER.url( + "agent_pool_name", agent_pool_name, "str", max_length=12, min_length=1, pattern=r"^[a-z][a-z0-9]{0,11}$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +class AgentPoolsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`agent_pools` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + def _abort_latest_operation_initial( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_abort_latest_operation_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_abort_latest_operation( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> LROPoller[None]: + """Aborts last operation running on agent pool. + + Aborts the currently running operation on the agent pool. The Agent Pool will be moved to a + Canceling state and eventually to a Canceled state when cancellation finishes. If the operation + completes before cancellation can take place, a 409 error code is returned. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._abort_latest_operation_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + @distributed_trace + def list(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> ItemPaged["_models.AgentPool"]: + """Gets a list of agent pools in the specified managed cluster. + + Gets a list of agent pools in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either AgentPool or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.AgentPool] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.AgentPoolListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("AgentPoolListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def get( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> _models.AgentPool: + """Gets the specified managed cluster agent pool. + + Gets the specified managed cluster agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :return: AgentPool or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.AgentPool + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.AgentPool] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("AgentPool", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + def _create_or_update_initial( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + parameters: Union[_models.AgentPool, IO[bytes]], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "AgentPool") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + if_match=if_match, + if_none_match=if_none_match, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + parameters: _models.AgentPool, + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.AgentPool]: + """Creates or updates an agent pool in the specified managed cluster. + + Creates or updates an agent pool in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param parameters: The agent pool to create or update. Required. + :type parameters: ~azure.mgmt.containerservice.models.AgentPool + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either AgentPool or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.AgentPool] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + parameters: IO[bytes], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.AgentPool]: + """Creates or updates an agent pool in the specified managed cluster. + + Creates or updates an agent pool in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param parameters: The agent pool to create or update. Required. + :type parameters: IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either AgentPool or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.AgentPool] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + parameters: Union[_models.AgentPool, IO[bytes]], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs: Any + ) -> LROPoller[_models.AgentPool]: + """Creates or updates an agent pool in the specified managed cluster. + + Creates or updates an agent pool in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param parameters: The agent pool to create or update. Is either a AgentPool type or a + IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.AgentPool or IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :return: An instance of LROPoller that returns either AgentPool or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.AgentPool] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.AgentPool] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + parameters=parameters, + if_match=if_match, + if_none_match=if_none_match, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("AgentPool", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + return deserialized + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[_models.AgentPool].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[_models.AgentPool]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + def _delete_initial( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + ignore_pod_disruption_budget: Optional[bool] = None, + if_match: Optional[str] = None, + **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + ignore_pod_disruption_budget=ignore_pod_disruption_budget, + if_match=if_match, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_delete( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + ignore_pod_disruption_budget: Optional[bool] = None, + if_match: Optional[str] = None, + **kwargs: Any + ) -> LROPoller[None]: + """Deletes an agent pool in the specified managed cluster. + + Deletes an agent pool in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param ignore_pod_disruption_budget: ignore-pod-disruption-budget=true to delete those pods on + a node without considering Pod Disruption Budget. Default value is None. + :type ignore_pod_disruption_budget: bool + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + ignore_pod_disruption_budget=ignore_pod_disruption_budget, + if_match=if_match, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + @distributed_trace + def get_upgrade_profile( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> _models.AgentPoolUpgradeProfile: + """Gets the upgrade profile for an agent pool. + + Gets the upgrade profile for an agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :return: AgentPoolUpgradeProfile or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.AgentPoolUpgradeProfile + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.AgentPoolUpgradeProfile] = kwargs.pop("cls", None) + + _request = build_get_upgrade_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("AgentPoolUpgradeProfile", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + def _delete_machines_initial( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + machines: Union[_models.AgentPoolDeleteMachinesParameter, IO[bytes]], + **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(machines, (IOBase, bytes)): + _content = machines + else: + _json = self._serialize.body(machines, "AgentPoolDeleteMachinesParameter") + + _request = build_delete_machines_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @overload + def begin_delete_machines( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + machines: _models.AgentPoolDeleteMachinesParameter, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[None]: + """Deletes specific machines in an agent pool. + + Deletes specific machines in an agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param machines: A list of machines from the agent pool to be deleted. Required. + :type machines: ~azure.mgmt.containerservice.models.AgentPoolDeleteMachinesParameter + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_delete_machines( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + machines: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[None]: + """Deletes specific machines in an agent pool. + + Deletes specific machines in an agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param machines: A list of machines from the agent pool to be deleted. Required. + :type machines: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_delete_machines( + self, + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + machines: Union[_models.AgentPoolDeleteMachinesParameter, IO[bytes]], + **kwargs: Any + ) -> LROPoller[None]: + """Deletes specific machines in an agent pool. + + Deletes specific machines in an agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param machines: A list of machines from the agent pool to be deleted. Is either a + AgentPoolDeleteMachinesParameter type or a IO[bytes] type. Required. + :type machines: ~azure.mgmt.containerservice.models.AgentPoolDeleteMachinesParameter or + IO[bytes] + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._delete_machines_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + machines=machines, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + @distributed_trace + def get_available_agent_pool_versions( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> _models.AgentPoolAvailableVersions: + """Gets a list of supported Kubernetes versions for the specified agent pool. + + See `supported Kubernetes versions + `_ for more details about + the version lifecycle. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: AgentPoolAvailableVersions or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.AgentPoolAvailableVersions + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.AgentPoolAvailableVersions] = kwargs.pop("cls", None) + + _request = build_get_available_agent_pool_versions_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("AgentPoolAvailableVersions", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + def _upgrade_node_image_version_initial( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_upgrade_node_image_version_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_upgrade_node_image_version( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> LROPoller[_models.AgentPool]: + """Upgrades the node image version of an agent pool to the latest. + + Upgrading the node image version of an agent pool applies the newest OS and runtime updates to + the nodes. AKS provides one new image per week with the latest updates. For more details on + node image versions, see: https://docs.microsoft.com/azure/aks/node-image-upgrade. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :return: An instance of LROPoller that returns either AgentPool or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.AgentPool] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._upgrade_node_image_version_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + response_headers = {} + response = pipeline_response.http_response + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = self._deserialize("AgentPool", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + return deserialized + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[_models.AgentPool].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[_models.AgentPool]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_machines_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_machines_operations.py new file mode 100644 index 00000000000..48bbc9dc786 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_machines_operations.py @@ -0,0 +1,313 @@ +# pylint: disable=line-too-long,useless-suppression +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from typing import Any, Callable, Optional, TypeVar +import urllib.parse + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_request( + resource_group_name: str, resource_name: str, agent_pool_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/machines", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "agentPoolName": _SERIALIZER.url( + "agent_pool_name", agent_pool_name, "str", max_length=12, min_length=1, pattern=r"^[a-z][a-z0-9]{0,11}$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_request( + resource_group_name: str, + resource_name: str, + agent_pool_name: str, + machine_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/machines/{machineName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "agentPoolName": _SERIALIZER.url( + "agent_pool_name", agent_pool_name, "str", max_length=12, min_length=1, pattern=r"^[a-z][a-z0-9]{0,11}$" + ), + "machineName": _SERIALIZER.url( + "machine_name", machine_name, "str", pattern=r"^[a-zA-Z0-9][-_a-zA-Z0-9]{0,39}$" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +class MachinesOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`machines` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any + ) -> ItemPaged["_models.Machine"]: + """Gets a list of machines in the specified agent pool. + + Gets a list of machines in the specified agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :return: An iterator like instance of either Machine or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.Machine] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MachineListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("MachineListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def get( + self, resource_group_name: str, resource_name: str, agent_pool_name: str, machine_name: str, **kwargs: Any + ) -> _models.Machine: + """Get a specific machine in the specified agent pool. + + Get a specific machine in the specified agent pool. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. Required. + :type agent_pool_name: str + :param machine_name: host name of the machine. Required. + :type machine_name: str + :return: Machine or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Machine + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.Machine] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + machine_name=machine_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("Machine", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_maintenance_configurations_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_maintenance_configurations_operations.py new file mode 100644 index 00000000000..5a1763a2421 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_maintenance_configurations_operations.py @@ -0,0 +1,599 @@ +# pylint: disable=line-too-long,useless-suppression +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +import urllib.parse + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_by_managed_cluster_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_request( + resource_group_name: str, resource_name: str, config_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "configName": _SERIALIZER.url("config_name", config_name, "str"), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_create_or_update_request( + resource_group_name: str, resource_name: str, config_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "configName": _SERIALIZER.url("config_name", config_name, "str"), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PUT", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_delete_request( + resource_group_name: str, resource_name: str, config_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/maintenanceConfigurations/{configName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "configName": _SERIALIZER.url("config_name", config_name, "str"), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="DELETE", url=_url, params=_params, headers=_headers, **kwargs) + + +class MaintenanceConfigurationsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`maintenance_configurations` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list_by_managed_cluster( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> ItemPaged["_models.MaintenanceConfiguration"]: + """Gets a list of maintenance configurations in the specified managed cluster. + + Gets a list of maintenance configurations in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either MaintenanceConfiguration or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.MaintenanceConfiguration] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MaintenanceConfigurationListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_by_managed_cluster_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("MaintenanceConfigurationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def get( + self, resource_group_name: str, resource_name: str, config_name: str, **kwargs: Any + ) -> _models.MaintenanceConfiguration: + """Gets the specified maintenance configuration of a managed cluster. + + Gets the specified maintenance configuration of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. + :type config_name: str + :return: MaintenanceConfiguration or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MaintenanceConfiguration + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MaintenanceConfiguration] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + config_name=config_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("MaintenanceConfiguration", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + def create_or_update( + self, + resource_group_name: str, + resource_name: str, + config_name: str, + parameters: _models.MaintenanceConfiguration, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.MaintenanceConfiguration: + """Creates or updates a maintenance configuration in the specified managed cluster. + + Creates or updates a maintenance configuration in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. + :type config_name: str + :param parameters: The maintenance configuration to create or update. Required. + :type parameters: ~azure.mgmt.containerservice.models.MaintenanceConfiguration + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: MaintenanceConfiguration or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MaintenanceConfiguration + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def create_or_update( + self, + resource_group_name: str, + resource_name: str, + config_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.MaintenanceConfiguration: + """Creates or updates a maintenance configuration in the specified managed cluster. + + Creates or updates a maintenance configuration in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. + :type config_name: str + :param parameters: The maintenance configuration to create or update. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: MaintenanceConfiguration or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MaintenanceConfiguration + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def create_or_update( + self, + resource_group_name: str, + resource_name: str, + config_name: str, + parameters: Union[_models.MaintenanceConfiguration, IO[bytes]], + **kwargs: Any + ) -> _models.MaintenanceConfiguration: + """Creates or updates a maintenance configuration in the specified managed cluster. + + Creates or updates a maintenance configuration in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. + :type config_name: str + :param parameters: The maintenance configuration to create or update. Is either a + MaintenanceConfiguration type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.MaintenanceConfiguration or IO[bytes] + :return: MaintenanceConfiguration or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MaintenanceConfiguration + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.MaintenanceConfiguration] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "MaintenanceConfiguration") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + config_name=config_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("MaintenanceConfiguration", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def delete( # pylint: disable=inconsistent-return-statements + self, resource_group_name: str, resource_name: str, config_name: str, **kwargs: Any + ) -> None: + """Deletes a maintenance configuration. + + Deletes a maintenance configuration. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. + :type config_name: str + :return: None or the result of cls(response) + :rtype: None + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + config_name=config_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_managed_clusters_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_managed_clusters_operations.py new file mode 100644 index 00000000000..e32ef0b8666 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_managed_clusters_operations.py @@ -0,0 +1,3985 @@ +# pylint: disable=line-too-long,useless-suppression,too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +import urllib.parse + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + StreamClosedError, + StreamConsumedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_kubernetes_versions_request(location: str, subscription_id: str, **kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/kubernetesVersions", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "location": _SERIALIZER.url("location", location, "str", min_length=1), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_request(subscription_id: str, **kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedClusters" + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_by_resource_group_request(resource_group_name: str, subscription_id: str, **kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_upgrade_profile_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/upgradeProfiles/default", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_access_profile_request( + resource_group_name: str, resource_name: str, role_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/accessProfiles/{roleName}/listCredential", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "roleName": _SERIALIZER.url("role_name", role_name, "str"), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_cluster_admin_credentials_request( # pylint: disable=name-too-long + resource_group_name: str, + resource_name: str, + subscription_id: str, + *, + server_fqdn: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterAdminCredential", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + if server_fqdn is not None: + _params["server-fqdn"] = _SERIALIZER.query("server_fqdn", server_fqdn, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_cluster_user_credentials_request( # pylint: disable=name-too-long + resource_group_name: str, + resource_name: str, + subscription_id: str, + *, + server_fqdn: Optional[str] = None, + format: Optional[Union[str, _models.Format]] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterUserCredential", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + if server_fqdn is not None: + _params["server-fqdn"] = _SERIALIZER.query("server_fqdn", server_fqdn, "str") + if format is not None: + _params["format"] = _SERIALIZER.query("format", format, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_cluster_monitoring_user_credentials_request( # pylint: disable=name-too-long + resource_group_name: str, + resource_name: str, + subscription_id: str, + *, + server_fqdn: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterMonitoringUserCredential", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + if server_fqdn is not None: + _params["server-fqdn"] = _SERIALIZER.query("server_fqdn", server_fqdn, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_request(resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_create_or_update_request( + resource_group_name: str, + resource_name: str, + subscription_id: str, + *, + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if if_match is not None: + _headers["If-Match"] = _SERIALIZER.header("if_match", if_match, "str") + if if_none_match is not None: + _headers["If-None-Match"] = _SERIALIZER.header("if_none_match", if_none_match, "str") + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PUT", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_update_tags_request( + resource_group_name: str, resource_name: str, subscription_id: str, *, if_match: Optional[str] = None, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if if_match is not None: + _headers["If-Match"] = _SERIALIZER.header("if_match", if_match, "str") + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PATCH", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_delete_request( + resource_group_name: str, resource_name: str, subscription_id: str, *, if_match: Optional[str] = None, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if if_match is not None: + _headers["If-Match"] = _SERIALIZER.header("if_match", if_match, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="DELETE", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_reset_service_principal_profile_request( # pylint: disable=name-too-long + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_reset_aad_profile_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_rotate_cluster_certificates_request( # pylint: disable=name-too-long + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_abort_latest_operation_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedclusters/{resourceName}/abort", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_rotate_service_account_signing_keys_request( # pylint: disable=name-too-long + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateServiceAccountSigningKeys", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_stop_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/stop", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_start_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_run_command_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/runCommand", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_command_result_request( + resource_group_name: str, resource_name: str, command_id: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/commandResults/{commandId}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "commandId": _SERIALIZER.url("command_id", command_id, "str"), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_outbound_network_dependencies_endpoints_request( # pylint: disable=name-too-long + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/outboundNetworkDependenciesEndpoints", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_mesh_revision_profiles_request( # pylint: disable=name-too-long + location: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/meshRevisionProfiles", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "location": _SERIALIZER.url("location", location, "str", min_length=1), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_mesh_revision_profile_request( + location: str, mode: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/meshRevisionProfiles/{mode}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "location": _SERIALIZER.url("location", location, "str", min_length=1), + "mode": _SERIALIZER.url( + "mode", + mode, + "str", + max_length=24, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_mesh_upgrade_profiles_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/meshUpgradeProfiles", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_mesh_upgrade_profile_request( + resource_group_name: str, resource_name: str, mode: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/meshUpgradeProfiles/{mode}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "mode": _SERIALIZER.url( + "mode", + mode, + "str", + max_length=24, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +class ManagedClustersOperations: # pylint: disable=too-many-public-methods + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`managed_clusters` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list_kubernetes_versions(self, location: str, **kwargs: Any) -> _models.KubernetesVersionListResult: + """Gets a list of supported Kubernetes versions in the specified subscription. + + Contains extra metadata on the version, including supported patch versions, capabilities, + available upgrades, and details on preview status of the version. + + :param location: The name of the Azure region. Required. + :type location: str + :return: KubernetesVersionListResult or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.KubernetesVersionListResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.KubernetesVersionListResult] = kwargs.pop("cls", None) + + _request = build_list_kubernetes_versions_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("KubernetesVersionListResult", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def list(self, **kwargs: Any) -> ItemPaged["_models.ManagedCluster"]: + """Gets a list of managed clusters in the specified subscription. + + Gets a list of managed clusters in the specified subscription. + + :return: An iterator like instance of either ManagedCluster or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedClusterListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ManagedClusterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) -> ItemPaged["_models.ManagedCluster"]: + """Lists managed clusters in the specified subscription and resource group. + + Lists managed clusters in the specified subscription and resource group. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :return: An iterator like instance of either ManagedCluster or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedClusterListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ManagedClusterListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def get_upgrade_profile( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> _models.ManagedClusterUpgradeProfile: + """Gets the upgrade profile of a managed cluster. + + Gets the upgrade profile of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: ManagedClusterUpgradeProfile or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedClusterUpgradeProfile + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedClusterUpgradeProfile] = kwargs.pop("cls", None) + + _request = build_get_upgrade_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ManagedClusterUpgradeProfile", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def get_access_profile( + self, resource_group_name: str, resource_name: str, role_name: str, **kwargs: Any + ) -> _models.ManagedClusterAccessProfile: + """Gets an access profile of a managed cluster. + + **WARNING**\\ : This API will be deprecated. Instead use `ListClusterUserCredentials + `_ or + `ListClusterAdminCredentials + `_ . + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param role_name: The name of the role for managed cluster accessProfile resource. Required. + :type role_name: str + :return: ManagedClusterAccessProfile or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedClusterAccessProfile + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedClusterAccessProfile] = kwargs.pop("cls", None) + + _request = build_get_access_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + role_name=role_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ManagedClusterAccessProfile", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def list_cluster_admin_credentials( + self, resource_group_name: str, resource_name: str, server_fqdn: Optional[str] = None, **kwargs: Any + ) -> _models.CredentialResults: + """Lists the admin credentials of a managed cluster. + + Lists the admin credentials of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. + :type server_fqdn: str + :return: CredentialResults or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.CredentialResults + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.CredentialResults] = kwargs.pop("cls", None) + + _request = build_list_cluster_admin_credentials_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + server_fqdn=server_fqdn, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def list_cluster_user_credentials( + self, + resource_group_name: str, + resource_name: str, + server_fqdn: Optional[str] = None, + format: Optional[Union[str, _models.Format]] = None, + **kwargs: Any + ) -> _models.CredentialResults: + """Lists the user credentials of a managed cluster. + + Lists the user credentials of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. + :type server_fqdn: str + :param format: Only apply to AAD clusters, specifies the format of returned kubeconfig. Format + 'azure' will return azure auth-provider kubeconfig; format 'exec' will return exec format + kubeconfig, which requires kubelogin binary in the path. Known values are: "azure", "exec", and + "exec". Default value is None. + :type format: str or ~azure.mgmt.containerservice.models.Format + :return: CredentialResults or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.CredentialResults + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.CredentialResults] = kwargs.pop("cls", None) + + _request = build_list_cluster_user_credentials_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + server_fqdn=server_fqdn, + format=format, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def list_cluster_monitoring_user_credentials( + self, resource_group_name: str, resource_name: str, server_fqdn: Optional[str] = None, **kwargs: Any + ) -> _models.CredentialResults: + """Lists the cluster monitoring user credentials of a managed cluster. + + Lists the cluster monitoring user credentials of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param server_fqdn: server fqdn type for credentials to be returned. Default value is None. + :type server_fqdn: str + :return: CredentialResults or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.CredentialResults + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.CredentialResults] = kwargs.pop("cls", None) + + _request = build_list_cluster_monitoring_user_credentials_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + server_fqdn=server_fqdn, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def get(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> _models.ManagedCluster: + """Gets a managed cluster. + + Gets a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: ManagedCluster or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedCluster + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedCluster] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ManagedCluster", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + def _create_or_update_initial( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedCluster, IO[bytes]], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "ManagedCluster") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + if_match=if_match, + if_none_match=if_none_match, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.ManagedCluster, + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ManagedCluster]: + """Creates or updates a managed cluster. + + Creates or updates a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The managed cluster to create or update. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedCluster + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ManagedCluster]: + """Creates or updates a managed cluster. + + Creates or updates a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The managed cluster to create or update. Required. + :type parameters: IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedCluster, IO[bytes]], + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs: Any + ) -> LROPoller[_models.ManagedCluster]: + """Creates or updates a managed cluster. + + Creates or updates a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The managed cluster to create or update. Is either a ManagedCluster type or + a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedCluster or IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :param if_none_match: The request should only proceed if no entity matches this string. Default + value is None. + :type if_none_match: str + :return: An instance of LROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ManagedCluster] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + parameters=parameters, + if_match=if_match, + if_none_match=if_none_match, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("ManagedCluster", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + return deserialized + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[_models.ManagedCluster].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[_models.ManagedCluster]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + def _update_tags_initial( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.TagsObject, IO[bytes]], + if_match: Optional[str] = None, + **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "TagsObject") + + _request = build_update_tags_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + if_match=if_match, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + def begin_update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.TagsObject, + if_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ManagedCluster]: + """Updates tags on a managed cluster. + + Updates tags on a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update Managed Cluster Tags operation. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + if_match: Optional[str] = None, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ManagedCluster]: + """Updates tags on a managed cluster. + + Updates tags on a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update Managed Cluster Tags operation. Required. + :type parameters: IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.TagsObject, IO[bytes]], + if_match: Optional[str] = None, + **kwargs: Any + ) -> LROPoller[_models.ManagedCluster]: + """Updates tags on a managed cluster. + + Updates tags on a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update Managed Cluster Tags operation. Is either + a TagsObject type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject or IO[bytes] + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :return: An instance of LROPoller that returns either ManagedCluster or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.ManagedCluster] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ManagedCluster] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._update_tags_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + parameters=parameters, + if_match=if_match, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("ManagedCluster", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + return deserialized + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[_models.ManagedCluster].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[_models.ManagedCluster]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + def _delete_initial( + self, resource_group_name: str, resource_name: str, if_match: Optional[str] = None, **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + if_match=if_match, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_delete( + self, resource_group_name: str, resource_name: str, if_match: Optional[str] = None, **kwargs: Any + ) -> LROPoller[None]: + """Deletes a managed cluster. + + Deletes a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param if_match: The request should only proceed if an entity matches this string. Default + value is None. + :type if_match: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + if_match=if_match, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + def _reset_service_principal_profile_initial( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedClusterServicePrincipalProfile, IO[bytes]], + **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "ManagedClusterServicePrincipalProfile") + + _request = build_reset_service_principal_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @overload + def begin_reset_service_principal_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.ManagedClusterServicePrincipalProfile, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[None]: + """Reset the Service Principal Profile of a managed cluster. + + This action cannot be performed on a cluster that is not using a service principal. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The service principal profile to set on the managed cluster. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedClusterServicePrincipalProfile + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_reset_service_principal_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[None]: + """Reset the Service Principal Profile of a managed cluster. + + This action cannot be performed on a cluster that is not using a service principal. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The service principal profile to set on the managed cluster. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_reset_service_principal_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedClusterServicePrincipalProfile, IO[bytes]], + **kwargs: Any + ) -> LROPoller[None]: + """Reset the Service Principal Profile of a managed cluster. + + This action cannot be performed on a cluster that is not using a service principal. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The service principal profile to set on the managed cluster. Is either a + ManagedClusterServicePrincipalProfile type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedClusterServicePrincipalProfile or + IO[bytes] + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._reset_service_principal_profile_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + def _reset_aad_profile_initial( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedClusterAADProfile, IO[bytes]], + **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "ManagedClusterAADProfile") + + _request = build_reset_aad_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @overload + def begin_reset_aad_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.ManagedClusterAADProfile, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[None]: + """Reset the AAD Profile of a managed cluster. + + **WARNING**\\ : This API will be deprecated. Please see `AKS-managed Azure Active Directory + integration `_ to update your cluster with AKS-managed Azure + AD. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The AAD profile to set on the Managed Cluster. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedClusterAADProfile + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_reset_aad_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[None]: + """Reset the AAD Profile of a managed cluster. + + **WARNING**\\ : This API will be deprecated. Please see `AKS-managed Azure Active Directory + integration `_ to update your cluster with AKS-managed Azure + AD. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The AAD profile to set on the Managed Cluster. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_reset_aad_profile( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.ManagedClusterAADProfile, IO[bytes]], + **kwargs: Any + ) -> LROPoller[None]: + """Reset the AAD Profile of a managed cluster. + + **WARNING**\\ : This API will be deprecated. Please see `AKS-managed Azure Active Directory + integration `_ to update your cluster with AKS-managed Azure + AD. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The AAD profile to set on the Managed Cluster. Is either a + ManagedClusterAADProfile type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedClusterAADProfile or IO[bytes] + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._reset_aad_profile_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + def _rotate_cluster_certificates_initial( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_rotate_cluster_certificates_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_rotate_cluster_certificates( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> LROPoller[None]: + """Rotates the certificates of a managed cluster. + + See `Certificate rotation `_ for + more details about rotating managed cluster certificates. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._rotate_cluster_certificates_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + def _abort_latest_operation_initial( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_abort_latest_operation_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["location"] = self._deserialize("str", response.headers.get("location")) + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_abort_latest_operation( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> LROPoller[None]: + """Aborts last operation running on managed cluster. + + Aborts the currently running operation on the managed cluster. The Managed Cluster will be + moved to a Canceling state and eventually to a Canceled state when cancellation finishes. If + the operation completes before cancellation can take place, a 409 error code is returned. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._abort_latest_operation_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + def _rotate_service_account_signing_keys_initial( # pylint: disable=name-too-long + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_rotate_service_account_signing_keys_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_rotate_service_account_signing_keys( # pylint: disable=name-too-long + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> LROPoller[None]: + """Rotates the service account signing keys of a managed cluster. + + Rotates the service account signing keys of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._rotate_service_account_signing_keys_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + def _stop_initial(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_stop_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_stop(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> LROPoller[None]: + """Stops a Managed Cluster. + + This can only be performed on Azure Virtual Machine Scale set backed clusters. Stopping a + cluster stops the control plane and agent nodes entirely, while maintaining all object and + cluster state. A cluster does not accrue charges while it is stopped. See `stopping a cluster + `_ for more details about stopping a + cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._stop_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + def _start_initial(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_start_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_start(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> LROPoller[None]: + """Starts a previously stopped Managed Cluster. + + See `starting a cluster `_ for more + details about starting a cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._start_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + def _run_command_initial( + self, + resource_group_name: str, + resource_name: str, + request_payload: Union[_models.RunCommandRequest, IO[bytes]], + **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(request_payload, (IOBase, bytes)): + _content = request_payload + else: + _json = self._serialize.body(request_payload, "RunCommandRequest") + + _request = build_run_command_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @overload + def begin_run_command( + self, + resource_group_name: str, + resource_name: str, + request_payload: _models.RunCommandRequest, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.RunCommandResult]: + """Submits a command to run against the Managed Cluster. + + AKS will create a pod to run the command. This is primarily useful for private clusters. For + more information see `AKS Run Command + `_. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param request_payload: The run command request. Required. + :type request_payload: ~azure.mgmt.containerservice.models.RunCommandRequest + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either RunCommandResult or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.RunCommandResult] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_run_command( + self, + resource_group_name: str, + resource_name: str, + request_payload: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.RunCommandResult]: + """Submits a command to run against the Managed Cluster. + + AKS will create a pod to run the command. This is primarily useful for private clusters. For + more information see `AKS Run Command + `_. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param request_payload: The run command request. Required. + :type request_payload: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either RunCommandResult or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.RunCommandResult] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_run_command( + self, + resource_group_name: str, + resource_name: str, + request_payload: Union[_models.RunCommandRequest, IO[bytes]], + **kwargs: Any + ) -> LROPoller[_models.RunCommandResult]: + """Submits a command to run against the Managed Cluster. + + AKS will create a pod to run the command. This is primarily useful for private clusters. For + more information see `AKS Run Command + `_. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param request_payload: The run command request. Is either a RunCommandRequest type or a + IO[bytes] type. Required. + :type request_payload: ~azure.mgmt.containerservice.models.RunCommandRequest or IO[bytes] + :return: An instance of LROPoller that returns either RunCommandResult or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.RunCommandResult] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.RunCommandResult] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._run_command_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + request_payload=request_payload, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("RunCommandResult", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + return deserialized + + if polling is True: + polling_method: PollingMethod = cast( + PollingMethod, ARMPolling(lro_delay, lro_options={"final-state-via": "location"}, **kwargs) + ) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[_models.RunCommandResult].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[_models.RunCommandResult]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + @distributed_trace + def get_command_result( + self, resource_group_name: str, resource_name: str, command_id: str, **kwargs: Any + ) -> Optional[_models.RunCommandResult]: + """Gets the results of a command which has been run on the Managed Cluster. + + Gets the results of a command which has been run on the Managed Cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param command_id: Id of the command. Required. + :type command_id: str + :return: RunCommandResult or None or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.RunCommandResult or None + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Optional[_models.RunCommandResult]] = kwargs.pop("cls", None) + + _request = build_get_command_result_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + command_id=command_id, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = None + response_headers = {} + if response.status_code == 200: + deserialized = self._deserialize("RunCommandResult", pipeline_response.http_response) + + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def list_outbound_network_dependencies_endpoints( # pylint: disable=name-too-long + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> ItemPaged["_models.OutboundEnvironmentEndpoint"]: + """Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the + specified managed cluster. + + Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the + specified managed cluster. The operation returns properties of each egress endpoint. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either OutboundEnvironmentEndpoint or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.OutboundEnvironmentEndpoint] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.OutboundEnvironmentEndpointCollection] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_outbound_network_dependencies_endpoints_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("OutboundEnvironmentEndpointCollection", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def list_mesh_revision_profiles(self, location: str, **kwargs: Any) -> ItemPaged["_models.MeshRevisionProfile"]: + """Lists mesh revision profiles for all meshes in the specified location. + + Contains extra metadata on each revision, including supported revisions, cluster compatibility + and available upgrades. + + :param location: The name of the Azure region. Required. + :type location: str + :return: An iterator like instance of either MeshRevisionProfile or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.MeshRevisionProfile] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MeshRevisionProfileList] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_mesh_revision_profiles_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("MeshRevisionProfileList", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def get_mesh_revision_profile(self, location: str, mode: str, **kwargs: Any) -> _models.MeshRevisionProfile: + """Gets a mesh revision profile for a specified mesh in the specified location. + + Contains extra metadata on the revision, including supported revisions, cluster compatibility + and available upgrades. + + :param location: The name of the Azure region. Required. + :type location: str + :param mode: The mode of the mesh. Required. + :type mode: str + :return: MeshRevisionProfile or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MeshRevisionProfile + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MeshRevisionProfile] = kwargs.pop("cls", None) + + _request = build_get_mesh_revision_profile_request( + location=location, + mode=mode, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("MeshRevisionProfile", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def list_mesh_upgrade_profiles( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> ItemPaged["_models.MeshUpgradeProfile"]: + """Lists available upgrades for all service meshes in a specific cluster. + + Lists available upgrades for all service meshes in a specific cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either MeshUpgradeProfile or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.MeshUpgradeProfile] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MeshUpgradeProfileList] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_mesh_upgrade_profiles_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("MeshUpgradeProfileList", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def get_mesh_upgrade_profile( + self, resource_group_name: str, resource_name: str, mode: str, **kwargs: Any + ) -> _models.MeshUpgradeProfile: + """Gets available upgrades for a service mesh in a cluster. + + Gets available upgrades for a service mesh in a cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param mode: The mode of the mesh. Required. + :type mode: str + :return: MeshUpgradeProfile or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.MeshUpgradeProfile + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.MeshUpgradeProfile] = kwargs.pop("cls", None) + + _request = build_get_mesh_upgrade_profile_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + mode=mode, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("MeshUpgradeProfile", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_managed_namespaces_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_managed_namespaces_operations.py new file mode 100644 index 00000000000..8dfe5b99e86 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_managed_namespaces_operations.py @@ -0,0 +1,1086 @@ +# pylint: disable=line-too-long,useless-suppression,too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +import urllib.parse + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + StreamClosedError, + StreamConsumedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_by_managed_cluster_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/managedNamespaces", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_request( + resource_group_name: str, resource_name: str, managed_namespace_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/managedNamespaces/{managedNamespaceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "managedNamespaceName": _SERIALIZER.url( + "managed_namespace_name", + managed_namespace_name, + "str", + max_length=63, + min_length=1, + pattern=r"[a-z0-9]([-a-z0-9]*[a-z0-9])?", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_create_or_update_request( + resource_group_name: str, resource_name: str, managed_namespace_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/managedNamespaces/{managedNamespaceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "managedNamespaceName": _SERIALIZER.url( + "managed_namespace_name", + managed_namespace_name, + "str", + max_length=63, + min_length=1, + pattern=r"[a-z0-9]([-a-z0-9]*[a-z0-9])?", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PUT", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_delete_request( + resource_group_name: str, resource_name: str, managed_namespace_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/managedNamespaces/{managedNamespaceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "managedNamespaceName": _SERIALIZER.url( + "managed_namespace_name", + managed_namespace_name, + "str", + max_length=63, + min_length=1, + pattern=r"[a-z0-9]([-a-z0-9]*[a-z0-9])?", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="DELETE", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_update_request( + resource_group_name: str, resource_name: str, managed_namespace_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/managedNamespaces/{managedNamespaceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "managedNamespaceName": _SERIALIZER.url( + "managed_namespace_name", + managed_namespace_name, + "str", + max_length=63, + min_length=1, + pattern=r"[a-z0-9]([-a-z0-9]*[a-z0-9])?", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PATCH", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_credential_request( + resource_group_name: str, resource_name: str, managed_namespace_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/managedNamespaces/{managedNamespaceName}/listCredential", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "managedNamespaceName": _SERIALIZER.url( + "managed_namespace_name", + managed_namespace_name, + "str", + max_length=63, + min_length=1, + pattern=r"[a-z0-9]([-a-z0-9]*[a-z0-9])?", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +class ManagedNamespacesOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`managed_namespaces` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list_by_managed_cluster( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> ItemPaged["_models.ManagedNamespace"]: + """Gets a list of managed namespaces in the specified managed cluster. + + Gets a list of managed namespaces in the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either ManagedNamespace or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.ManagedNamespace] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedNamespaceListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_by_managed_cluster_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("ManagedNamespaceListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def get( + self, resource_group_name: str, resource_name: str, managed_namespace_name: str, **kwargs: Any + ) -> _models.ManagedNamespace: + """Gets the specified namespace of a managed cluster. + + Gets the specified namespace of a managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :return: ManagedNamespace or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedNamespace + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.ManagedNamespace] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ManagedNamespace", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + def _create_or_update_initial( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: Union[_models.ManagedNamespace, IO[bytes]], + **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "ManagedNamespace") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @overload + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: _models.ManagedNamespace, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ManagedNamespace]: + """Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: The namespace to create or update. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedNamespace + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either ManagedNamespace or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.ManagedNamespace] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.ManagedNamespace]: + """Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: The namespace to create or update. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either ManagedNamespace or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.ManagedNamespace] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: Union[_models.ManagedNamespace, IO[bytes]], + **kwargs: Any + ) -> LROPoller[_models.ManagedNamespace]: + """Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + Creates or updates a namespace managed by ARM for the specified managed cluster. Users can + configure aspects like resource quotas, network ingress/egress policies, and more. See + aka.ms/aks/managed-namespaces for more details. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: The namespace to create or update. Is either a ManagedNamespace type or a + IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.ManagedNamespace or IO[bytes] + :return: An instance of LROPoller that returns either ManagedNamespace or the result of + cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.ManagedNamespace] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ManagedNamespace] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + parameters=parameters, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + response_headers = {} + response = pipeline_response.http_response + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = self._deserialize("ManagedNamespace", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + return deserialized + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[_models.ManagedNamespace].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[_models.ManagedNamespace]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + def _delete_initial( + self, resource_group_name: str, resource_name: str, managed_namespace_name: str, **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + if response.status_code == 204: + response_headers["Azure-AsyncOperation"] = self._deserialize( + "str", response.headers.get("Azure-AsyncOperation") + ) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_delete( + self, resource_group_name: str, resource_name: str, managed_namespace_name: str, **kwargs: Any + ) -> LROPoller[None]: + """Deletes a namespace. + + Deletes a namespace. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore + + @overload + def update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: _models.TagsObject, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.ManagedNamespace: + """Updates tags on a managed namespace. + + Updates tags on a managed namespace. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: Parameters supplied to the patch namespace operation, we only support patch + tags for now. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: ManagedNamespace or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedNamespace + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.ManagedNamespace: + """Updates tags on a managed namespace. + + Updates tags on a managed namespace. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: Parameters supplied to the patch namespace operation, we only support patch + tags for now. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: ManagedNamespace or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedNamespace + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def update( + self, + resource_group_name: str, + resource_name: str, + managed_namespace_name: str, + parameters: Union[_models.TagsObject, IO[bytes]], + **kwargs: Any + ) -> _models.ManagedNamespace: + """Updates tags on a managed namespace. + + Updates tags on a managed namespace. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :param parameters: Parameters supplied to the patch namespace operation, we only support patch + tags for now. Is either a TagsObject type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject or IO[bytes] + :return: ManagedNamespace or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.ManagedNamespace + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.ManagedNamespace] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "TagsObject") + + _request = build_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("ManagedNamespace", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def list_credential( + self, resource_group_name: str, resource_name: str, managed_namespace_name: str, **kwargs: Any + ) -> _models.CredentialResults: + """Lists the credentials of a namespace. + + Lists the credentials of a namespace. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param managed_namespace_name: The name of the managed namespace. Required. + :type managed_namespace_name: str + :return: CredentialResults or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.CredentialResults + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.CredentialResults] = kwargs.pop("cls", None) + + _request = build_list_credential_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + managed_namespace_name=managed_namespace_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_operations.py new file mode 100644 index 00000000000..204312518ba --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_operations.py @@ -0,0 +1,155 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from typing import Any, Callable, Optional, TypeVar +import urllib.parse + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_request(**kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/providers/Microsoft.ContainerService/operations") + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +class Operations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`operations` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list(self, **kwargs: Any) -> ItemPaged["_models.OperationValue"]: + """Gets a list of operations. + + Gets a list of operations. + + :return: An iterator like instance of either OperationValue or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.OperationValue] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.OperationListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("OperationListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_patch.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_patch.py new file mode 100644 index 00000000000..8bcb627aa47 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_patch.py @@ -0,0 +1,21 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- +"""Customize generated code here. + +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" +from typing import List + +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level + + +def patch_sdk(): + """Do not remove from this file. + + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_private_endpoint_connections_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_private_endpoint_connections_operations.py new file mode 100644 index 00000000000..a0e8fc786f9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_private_endpoint_connections_operations.py @@ -0,0 +1,641 @@ +# pylint: disable=line-too-long,useless-suppression +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + StreamClosedError, + StreamConsumedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_request( + resource_group_name: str, + resource_name: str, + private_endpoint_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "privateEndpointConnectionName": _SERIALIZER.url( + "private_endpoint_connection_name", private_endpoint_connection_name, "str" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_update_request( + resource_group_name: str, + resource_name: str, + private_endpoint_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "privateEndpointConnectionName": _SERIALIZER.url( + "private_endpoint_connection_name", private_endpoint_connection_name, "str" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PUT", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_delete_request( + resource_group_name: str, + resource_name: str, + private_endpoint_connection_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "privateEndpointConnectionName": _SERIALIZER.url( + "private_endpoint_connection_name", private_endpoint_connection_name, "str" + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="DELETE", url=_url, params=_params, headers=_headers, **kwargs) + + +class PrivateEndpointConnectionsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`private_endpoint_connections` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> _models.PrivateEndpointConnectionListResult: + """Gets a list of private endpoint connections in the specified managed cluster. + + To learn more about private clusters, see: + https://docs.microsoft.com/azure/aks/private-clusters. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: PrivateEndpointConnectionListResult or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateEndpointConnectionListResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.PrivateEndpointConnectionListResult] = kwargs.pop("cls", None) + + _request = build_list_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("PrivateEndpointConnectionListResult", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def get( + self, resource_group_name: str, resource_name: str, private_endpoint_connection_name: str, **kwargs: Any + ) -> _models.PrivateEndpointConnection: + """Gets the specified private endpoint connection. + + To learn more about private clusters, see: + https://docs.microsoft.com/azure/aks/private-clusters. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private endpoint connection. Required. + :type private_endpoint_connection_name: str + :return: PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateEndpointConnection + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.PrivateEndpointConnection] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + private_endpoint_connection_name=private_endpoint_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("PrivateEndpointConnection", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + def update( + self, + resource_group_name: str, + resource_name: str, + private_endpoint_connection_name: str, + parameters: _models.PrivateEndpointConnection, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.PrivateEndpointConnection: + """Updates a private endpoint connection. + + Updates a private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private endpoint connection. Required. + :type private_endpoint_connection_name: str + :param parameters: The updated private endpoint connection. Required. + :type parameters: ~azure.mgmt.containerservice.models.PrivateEndpointConnection + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateEndpointConnection + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def update( + self, + resource_group_name: str, + resource_name: str, + private_endpoint_connection_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.PrivateEndpointConnection: + """Updates a private endpoint connection. + + Updates a private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private endpoint connection. Required. + :type private_endpoint_connection_name: str + :param parameters: The updated private endpoint connection. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateEndpointConnection + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def update( + self, + resource_group_name: str, + resource_name: str, + private_endpoint_connection_name: str, + parameters: Union[_models.PrivateEndpointConnection, IO[bytes]], + **kwargs: Any + ) -> _models.PrivateEndpointConnection: + """Updates a private endpoint connection. + + Updates a private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private endpoint connection. Required. + :type private_endpoint_connection_name: str + :param parameters: The updated private endpoint connection. Is either a + PrivateEndpointConnection type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.PrivateEndpointConnection or IO[bytes] + :return: PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateEndpointConnection + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.PrivateEndpointConnection] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "PrivateEndpointConnection") + + _request = build_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + private_endpoint_connection_name=private_endpoint_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("PrivateEndpointConnection", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + def _delete_initial( + self, resource_group_name: str, resource_name: str, private_endpoint_connection_name: str, **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + private_endpoint_connection_name=private_endpoint_connection_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_delete( + self, resource_group_name: str, resource_name: str, private_endpoint_connection_name: str, **kwargs: Any + ) -> LROPoller[None]: + """Deletes a private endpoint connection. + + Deletes a private endpoint connection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param private_endpoint_connection_name: The name of the private endpoint connection. Required. + :type private_endpoint_connection_name: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + private_endpoint_connection_name=private_endpoint_connection_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_private_link_resources_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_private_link_resources_operations.py new file mode 100644 index 00000000000..88a56faf5fa --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_private_link_resources_operations.py @@ -0,0 +1,160 @@ +# pylint: disable=line-too-long,useless-suppression +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from typing import Any, Callable, Optional, TypeVar + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/privateLinkResources", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +class PrivateLinkResourcesOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`private_link_resources` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> _models.PrivateLinkResourcesListResult: + """Gets a list of private link resources in the specified managed cluster. + + To learn more about private clusters, see: + https://docs.microsoft.com/azure/aks/private-clusters. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: PrivateLinkResourcesListResult or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateLinkResourcesListResult + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.PrivateLinkResourcesListResult] = kwargs.pop("cls", None) + + _request = build_list_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("PrivateLinkResourcesListResult", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_resolve_private_link_service_id_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_resolve_private_link_service_id_operations.py new file mode 100644 index 00000000000..f8b8ab7cfd1 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_resolve_private_link_service_id_operations.py @@ -0,0 +1,240 @@ +# pylint: disable=line-too-long,useless-suppression +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Optional, TypeVar, Union, overload + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.pipeline import PipelineResponse +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_post_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resolvePrivateLinkServiceId", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="POST", url=_url, params=_params, headers=_headers, **kwargs) + + +class ResolvePrivateLinkServiceIdOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`resolve_private_link_service_id` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @overload + def post( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.PrivateLinkResource, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.PrivateLinkResource: + """Gets the private link service ID for the specified managed cluster. + + Gets the private link service ID for the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters required in order to resolve a private link service ID. Required. + :type parameters: ~azure.mgmt.containerservice.models.PrivateLinkResource + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: PrivateLinkResource or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateLinkResource + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def post( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.PrivateLinkResource: + """Gets the private link service ID for the specified managed cluster. + + Gets the private link service ID for the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters required in order to resolve a private link service ID. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: PrivateLinkResource or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateLinkResource + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def post( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.PrivateLinkResource, IO[bytes]], + **kwargs: Any + ) -> _models.PrivateLinkResource: + """Gets the private link service ID for the specified managed cluster. + + Gets the private link service ID for the specified managed cluster. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters required in order to resolve a private link service ID. Is either + a PrivateLinkResource type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.PrivateLinkResource or IO[bytes] + :return: PrivateLinkResource or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.PrivateLinkResource + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.PrivateLinkResource] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "PrivateLinkResource") + + _request = build_post_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("PrivateLinkResource", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_snapshots_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_snapshots_operations.py new file mode 100644 index 00000000000..805ed298bed --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_snapshots_operations.py @@ -0,0 +1,841 @@ +# pylint: disable=line-too-long,useless-suppression +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +import urllib.parse + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_request(subscription_id: str, **kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/snapshots") + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_list_by_resource_group_request(resource_group_name: str, subscription_id: str, **kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_request(resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_create_or_update_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PUT", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_update_tags_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PATCH", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_delete_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/snapshots/{resourceName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="DELETE", url=_url, params=_params, headers=_headers, **kwargs) + + +class SnapshotsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`snapshots` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list(self, **kwargs: Any) -> ItemPaged["_models.Snapshot"]: + """Gets a list of snapshots in the specified subscription. + + Gets a list of snapshots in the specified subscription. + + :return: An iterator like instance of either Snapshot or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.Snapshot] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.SnapshotListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("SnapshotListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) -> ItemPaged["_models.Snapshot"]: + """Lists snapshots in the specified subscription and resource group. + + Lists snapshots in the specified subscription and resource group. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :return: An iterator like instance of either Snapshot or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.Snapshot] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.SnapshotListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_by_resource_group_request( + resource_group_name=resource_group_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("SnapshotListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def get(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> _models.Snapshot: + """Gets a snapshot. + + Gets a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.Snapshot] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("Snapshot", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + def create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.Snapshot, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.Snapshot: + """Creates or updates a snapshot. + + Creates or updates a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The snapshot to create or update. Required. + :type parameters: ~azure.mgmt.containerservice.models.Snapshot + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.Snapshot: + """Creates or updates a snapshot. + + Creates or updates a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The snapshot to create or update. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def create_or_update( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.Snapshot, IO[bytes]], + **kwargs: Any + ) -> _models.Snapshot: + """Creates or updates a snapshot. + + Creates or updates a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: The snapshot to create or update. Is either a Snapshot type or a IO[bytes] + type. Required. + :type parameters: ~azure.mgmt.containerservice.models.Snapshot or IO[bytes] + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.Snapshot] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "Snapshot") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("Snapshot", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + def update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: _models.TagsObject, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.Snapshot: + """Updates tags on a snapshot. + + Updates tags on a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update snapshot Tags operation. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> _models.Snapshot: + """Updates tags on a snapshot. + + Updates tags on a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update snapshot Tags operation. Required. + :type parameters: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def update_tags( + self, + resource_group_name: str, + resource_name: str, + parameters: Union[_models.TagsObject, IO[bytes]], + **kwargs: Any + ) -> _models.Snapshot: + """Updates tags on a snapshot. + + Updates tags on a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param parameters: Parameters supplied to the Update snapshot Tags operation. Is either a + TagsObject type or a IO[bytes] type. Required. + :type parameters: ~azure.mgmt.containerservice.models.TagsObject or IO[bytes] + :return: Snapshot or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.Snapshot + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.Snapshot] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(parameters, (IOBase, bytes)): + _content = parameters + else: + _json = self._serialize.body(parameters, "TagsObject") + + _request = build_update_tags_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("Snapshot", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def delete( # pylint: disable=inconsistent-return-statements + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> None: + """Deletes a snapshot. + + Deletes a snapshot. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: None or the result of cls(response) + :rtype: None + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_trusted_access_role_bindings_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_trusted_access_role_bindings_operations.py new file mode 100644 index 00000000000..4e7e2f450c6 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_trusted_access_role_bindings_operations.py @@ -0,0 +1,756 @@ +# pylint: disable=line-too-long,useless-suppression +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from io import IOBase +from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +import urllib.parse + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + StreamClosedError, + StreamConsumedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_request( + resource_group_name: str, resource_name: str, subscription_id: str, **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_get_request( + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "trustedAccessRoleBindingName": _SERIALIZER.url( + "trusted_access_role_binding_name", + trusted_access_role_binding_name, + "str", + max_length=24, + min_length=1, + pattern=r"^([A-Za-z0-9-])+$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_create_or_update_request( + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "trustedAccessRoleBindingName": _SERIALIZER.url( + "trusted_access_role_binding_name", + trusted_access_role_binding_name, + "str", + max_length=24, + min_length=1, + pattern=r"^([A-Za-z0-9-])+$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + if content_type is not None: + _headers["Content-Type"] = _SERIALIZER.header("content_type", content_type, "str") + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="PUT", url=_url, params=_params, headers=_headers, **kwargs) + + +def build_delete_request( + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + subscription_id: str, + **kwargs: Any +) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/trustedAccessRoleBindings/{trustedAccessRoleBindingName}", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "resourceGroupName": _SERIALIZER.url( + "resource_group_name", resource_group_name, "str", max_length=90, min_length=1 + ), + "resourceName": _SERIALIZER.url( + "resource_name", + resource_name, + "str", + max_length=63, + min_length=1, + pattern=r"^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$", + ), + "trustedAccessRoleBindingName": _SERIALIZER.url( + "trusted_access_role_binding_name", + trusted_access_role_binding_name, + "str", + max_length=24, + min_length=1, + pattern=r"^([A-Za-z0-9-])+$", + ), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="DELETE", url=_url, params=_params, headers=_headers, **kwargs) + + +class TrustedAccessRoleBindingsOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`trusted_access_role_bindings` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list( + self, resource_group_name: str, resource_name: str, **kwargs: Any + ) -> ItemPaged["_models.TrustedAccessRoleBinding"]: + """List trusted access role bindings. + + List trusted access role bindings. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :return: An iterator like instance of either TrustedAccessRoleBinding or the result of + cls(response) + :rtype: + ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.TrustedAccessRoleBindingListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("TrustedAccessRoleBindingListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) + + @distributed_trace + def get( + self, resource_group_name: str, resource_name: str, trusted_access_role_binding_name: str, **kwargs: Any + ) -> _models.TrustedAccessRoleBinding: + """Get a trusted access role binding. + + Get a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. Required. + :type trusted_access_role_binding_name: str + :return: TrustedAccessRoleBinding or the result of cls(response) + :rtype: ~azure.mgmt.containerservice.models.TrustedAccessRoleBinding + :raises ~azure.core.exceptions.HttpResponseError: + """ + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.TrustedAccessRoleBinding] = kwargs.pop("cls", None) + + _request = build_get_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize("TrustedAccessRoleBinding", pipeline_response.http_response) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + def _create_or_update_initial( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + trusted_access_role_binding: Union[_models.TrustedAccessRoleBinding, IO[bytes]], + **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + content_type = content_type or "application/json" + _json = None + _content = None + if isinstance(trusted_access_role_binding, (IOBase, bytes)): + _content = trusted_access_role_binding + else: + _json = self._serialize.body(trusted_access_role_binding, "TrustedAccessRoleBinding") + + _request = build_create_or_update_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + content_type=content_type, + json=_json, + content=_content, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + + return deserialized # type: ignore + + @overload + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + trusted_access_role_binding: _models.TrustedAccessRoleBinding, + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.TrustedAccessRoleBinding]: + """Create or update a trusted access role binding. + + Create or update a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. Required. + :type trusted_access_role_binding_name: str + :param trusted_access_role_binding: A trusted access role binding. Required. + :type trusted_access_role_binding: ~azure.mgmt.containerservice.models.TrustedAccessRoleBinding + :keyword content_type: Body Parameter content-type. Content type parameter for JSON body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either TrustedAccessRoleBinding or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @overload + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + trusted_access_role_binding: IO[bytes], + *, + content_type: str = "application/json", + **kwargs: Any + ) -> LROPoller[_models.TrustedAccessRoleBinding]: + """Create or update a trusted access role binding. + + Create or update a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. Required. + :type trusted_access_role_binding_name: str + :param trusted_access_role_binding: A trusted access role binding. Required. + :type trusted_access_role_binding: IO[bytes] + :keyword content_type: Body Parameter content-type. Content type parameter for binary body. + Default value is "application/json". + :paramtype content_type: str + :return: An instance of LROPoller that returns either TrustedAccessRoleBinding or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] + :raises ~azure.core.exceptions.HttpResponseError: + """ + + @distributed_trace + def begin_create_or_update( + self, + resource_group_name: str, + resource_name: str, + trusted_access_role_binding_name: str, + trusted_access_role_binding: Union[_models.TrustedAccessRoleBinding, IO[bytes]], + **kwargs: Any + ) -> LROPoller[_models.TrustedAccessRoleBinding]: + """Create or update a trusted access role binding. + + Create or update a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. Required. + :type trusted_access_role_binding_name: str + :param trusted_access_role_binding: A trusted access role binding. Is either a + TrustedAccessRoleBinding type or a IO[bytes] type. Required. + :type trusted_access_role_binding: ~azure.mgmt.containerservice.models.TrustedAccessRoleBinding + or IO[bytes] + :return: An instance of LROPoller that returns either TrustedAccessRoleBinding or the result of + cls(response) + :rtype: + ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) + cls: ClsType[_models.TrustedAccessRoleBinding] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + trusted_access_role_binding=trusted_access_role_binding, + api_version=api_version, + content_type=content_type, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize("TrustedAccessRoleBinding", pipeline_response.http_response) + if cls: + return cls(pipeline_response, deserialized, {}) # type: ignore + return deserialized + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[_models.TrustedAccessRoleBinding].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[_models.TrustedAccessRoleBinding]( + self._client, raw_result, get_long_running_output, polling_method # type: ignore + ) + + def _delete_initial( + self, resource_group_name: str, resource_name: str, trusted_access_role_binding_name: str, **kwargs: Any + ) -> Iterator[bytes]: + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[Iterator[bytes]] = kwargs.pop("cls", None) + + _request = build_delete_request( + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + _decompress = kwargs.pop("decompress", True) + _stream = True + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + + response = pipeline_response.http_response + + if response.status_code not in [202, 204]: + try: + response.read() # Load the body in memory and close the socket + except (StreamConsumedError, StreamClosedError): + pass + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 202: + response_headers["Location"] = self._deserialize("str", response.headers.get("Location")) + + deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) + + if cls: + return cls(pipeline_response, deserialized, response_headers) # type: ignore + + return deserialized # type: ignore + + @distributed_trace + def begin_delete( + self, resource_group_name: str, resource_name: str, trusted_access_role_binding_name: str, **kwargs: Any + ) -> LROPoller[None]: + """Delete a trusted access role binding. + + Delete a trusted access role binding. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + Required. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. Required. + :type resource_name: str + :param trusted_access_role_binding_name: The name of trusted access role binding. Required. + :type trusted_access_role_binding_name: str + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[None] = kwargs.pop("cls", None) + polling: Union[bool, PollingMethod] = kwargs.pop("polling", True) + lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) + cont_token: Optional[str] = kwargs.pop("continuation_token", None) + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + trusted_access_role_binding_name=trusted_access_role_binding_name, + api_version=api_version, + cls=lambda x, y, z: x, + headers=_headers, + params=_params, + **kwargs + ) + raw_result.http_response.read() # type: ignore + kwargs.pop("error_map", None) + + def get_long_running_output(pipeline_response): # pylint: disable=inconsistent-return-statements + if cls: + return cls(pipeline_response, None, {}) # type: ignore + + if polling is True: + polling_method: PollingMethod = cast(PollingMethod, ARMPolling(lro_delay, **kwargs)) + elif polling is False: + polling_method = cast(PollingMethod, NoPolling()) + else: + polling_method = polling + if cont_token: + return LROPoller[None].from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output, + ) + return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_trusted_access_roles_operations.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_trusted_access_roles_operations.py new file mode 100644 index 00000000000..b0f3eedfd6f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/operations/_trusted_access_roles_operations.py @@ -0,0 +1,168 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from collections.abc import MutableMapping +from typing import Any, Callable, Optional, TypeVar +import urllib.parse + +from azure.core import PipelineClient +from azure.core.exceptions import ( + ClientAuthenticationError, + HttpResponseError, + ResourceExistsError, + ResourceNotFoundError, + ResourceNotModifiedError, + map_error, +) +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.rest import HttpRequest, HttpResponse +from azure.core.tracing.decorator import distributed_trace +from azure.core.utils import case_insensitive_dict +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models +from .._configuration import ContainerServiceClientConfiguration +from .._utils.serialization import Deserializer, Serializer + +T = TypeVar("T") +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] +List = list + +_SERIALIZER = Serializer() +_SERIALIZER.client_side_validation = False + + +def build_list_request(location: str, subscription_id: str, **kwargs: Any) -> HttpRequest: + _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-01")) + accept = _headers.pop("Accept", "application/json") + + # Construct URL + _url = kwargs.pop( + "template_url", + "/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/locations/{location}/trustedAccessRoles", + ) + path_format_arguments = { + "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, "str"), + "location": _SERIALIZER.url("location", location, "str", min_length=1), + } + + _url: str = _url.format(**path_format_arguments) # type: ignore + + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + # Construct headers + _headers["Accept"] = _SERIALIZER.header("accept", accept, "str") + + return HttpRequest(method="GET", url=_url, params=_params, headers=_headers, **kwargs) + + +class TrustedAccessRolesOperations: + """ + .. warning:: + **DO NOT** instantiate this class directly. + + Instead, you should access the following operations through + :class:`~azure.mgmt.containerservice.ContainerServiceClient`'s + :attr:`trusted_access_roles` attribute. + """ + + models = _models + + def __init__(self, *args, **kwargs) -> None: + input_args = list(args) + self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") + self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") + self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer") + self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") + + @distributed_trace + def list(self, location: str, **kwargs: Any) -> ItemPaged["_models.TrustedAccessRole"]: + """List supported trusted access roles. + + List supported trusted access roles. + + :param location: The name of the Azure region. Required. + :type location: str + :return: An iterator like instance of either TrustedAccessRole or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.models.TrustedAccessRole] + :raises ~azure.core.exceptions.HttpResponseError: + """ + _headers = kwargs.pop("headers", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) + cls: ClsType[_models.TrustedAccessRoleListResult] = kwargs.pop("cls", None) + + error_map: MutableMapping = { + 401: ClientAuthenticationError, + 404: ResourceNotFoundError, + 409: ResourceExistsError, + 304: ResourceNotModifiedError, + } + error_map.update(kwargs.pop("error_map", {}) or {}) + + def prepare_request(next_link=None): + if not next_link: + + _request = build_list_request( + location=location, + subscription_id=self._config.subscription_id, + api_version=api_version, + headers=_headers, + params=_params, + ) + _request.url = self._client.format_url(_request.url) + + else: + # make call to next link with the client's api-version + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) + _next_request_params["api-version"] = self._config.api_version + _request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) + _request.url = self._client.format_url(_request.url) + _request.method = "GET" + return _request + + def extract_data(pipeline_response): + deserialized = self._deserialize("TrustedAccessRoleListResult", pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) # type: ignore + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + _request = prepare_request(next_link) + + _stream = False + pipeline_response: PipelineResponse = self._client._pipeline.run( # pylint: disable=protected-access + _request, stream=_stream, **kwargs + ) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize( + _models.ErrorResponse, + pipeline_response, + ) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged(get_next, extract_data) diff --git a/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/py.typed b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/py.typed new file mode 100644 index 00000000000..e5aff4f83af --- /dev/null +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/2025_10_01/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561. \ No newline at end of file diff --git a/src/mobile-network/azext_mobile_network/tests/latest/__init__.py b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/__init__.py similarity index 90% rename from src/mobile-network/azext_mobile_network/tests/latest/__init__.py rename to src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/__init__.py index 5757aea3175..34913fb394d 100644 --- a/src/mobile-network/azext_mobile_network/tests/latest/__init__.py +++ b/src/aks-agent/azext_aks_agent/vendored_sdks/azure_mgmt_containerservice/__init__.py @@ -1,6 +1,4 @@ # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools # -------------------------------------------------------------------------------------------- diff --git a/src/aks-agent/setup.py b/src/aks-agent/setup.py index 2f1ed295726..bb99dbaac88 100644 --- a/src/aks-agent/setup.py +++ b/src/aks-agent/setup.py @@ -9,7 +9,7 @@ from setuptools import find_packages, setup -VERSION = "1.0.0b11" +VERSION = "1.0.0b13" CLASSIFIERS = [ "Development Status :: 4 - Beta", @@ -25,8 +25,7 @@ DEPENDENCIES = [ "rich==13.9.4", - "supabase==2.8.0", - "holmesgpt==0.15.0; python_version >= '3.10'", + "kubernetes", ] with open1("README.rst", "r", encoding="utf-8") as f: diff --git a/src/aks-preview/HISTORY.rst b/src/aks-preview/HISTORY.rst index ac1758e2653..765cc13f063 100644 --- a/src/aks-preview/HISTORY.rst +++ b/src/aks-preview/HISTORY.rst @@ -11,7 +11,15 @@ To release a new version, please select a new version number (usually plus 1 to Pending +++++++ + +19.0.0b18 ++++++++ +* Vendor new SDK and bump API version to 2025-10-02-preview. + +19.0.0b17 ++++++++ * `az aks bastion`: Correctly configure `$KUBECONFIG` values for tunneling traffic into a private AKS cluster. +* Update user prompt for `az aks upgrade` command to clarify the implication of the `--control-plane-only` options. 19.0.0b16 +++++++ @@ -40,7 +48,7 @@ Pending 19.0.0b10 +++++++ -* Vendor new SDK and bump API version to 2025-08-02-preview. +* Vendor new SDK and bump API version to 2025-09-02-preview. * `az aks update`: Fix `--azure-keyvault-kms-key-vault-network-access` parameter not being correctly applied during cluster creation and updates. 19.0.0b9 diff --git a/src/aks-preview/README.rst b/src/aks-preview/README.rst index 142a0f69032..b8e755ab3ef 100644 --- a/src/aks-preview/README.rst +++ b/src/aks-preview/README.rst @@ -217,6 +217,9 @@ Released version and adopted API version * - 18.0.0b44 ~ 19.0.0b9 - 2025-08-02-preview - - * - 19.0.0b10 ~ latest + * - 19.0.0b10 ~ 19.0.0b17 - 2025-09-02-preview + - + * - 19.0.0b18 ~ latest + - 2025-10-02-preview - \ No newline at end of file diff --git a/src/aks-preview/azext_aks_preview/custom.py b/src/aks-preview/azext_aks_preview/custom.py index 217c5610986..370877a15f0 100644 --- a/src/aks-preview/azext_aks_preview/custom.py +++ b/src/aks-preview/azext_aks_preview/custom.py @@ -1708,8 +1708,10 @@ def aks_upgrade(cmd, upgrade_all = True else: msg = ( - "Since control-plane-only argument is specified, this will upgrade only the control plane to " - f"{instance.kubernetes_version}. Node pool will not change. Continue?" + "Since --control-plane-only parameter is specified, this will upgrade only the kubernetes version of the control plane to " + f"{instance.kubernetes_version}. Kubernetes versions of the node pools will remain unchanged, " + "but node image version may be upgraded if there has been cluster config change that requires VM reimage. " + "Continue?" ) if not yes and not prompt_y_n(msg, default="n"): return None diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_abort.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_abort.yaml index 9d00de407f3..5cf82256a7d 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_abort.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_abort.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -119,7 +119,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -211,7 +211,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -301,7 +301,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cliakstest000002/abort?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cliakstest000002/abort?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -529,7 +529,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml index 4a859bee3e2..e140eab78f5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -120,7 +120,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -905,7 +905,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1004,7 +1004,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1130,7 +1130,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2363,7 +2363,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml index 236f9d6b429..86c8f36d33a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -594,7 +594,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -688,7 +688,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -813,7 +813,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1122,7 +1122,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml index 38eeec8c1f4..a01a56d33ba 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -880,7 +880,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -971,7 +971,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1091,7 +1091,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1429,7 +1429,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml index 06b2c4c76ee..9a070f6002d 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -736,7 +736,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -827,7 +827,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -947,7 +947,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1285,7 +1285,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1380,7 +1380,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1504,7 +1504,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1841,7 +1841,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1933,7 +1933,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2054,7 +2054,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2392,7 +2392,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2489,7 +2489,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml index 56004822f40..137f827d175 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -784,7 +784,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -875,7 +875,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -995,7 +995,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1332,7 +1332,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml index c0d166cb88a..38cd6279441 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -119,7 +119,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -926,7 +926,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1017,7 +1017,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml index 8a476deda0a..819136fc4f9 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -787,7 +787,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -880,7 +880,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml index 53040745246..b28cb6b2fbf 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -738,7 +738,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -830,7 +830,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml index 530d78234bb..3caa1eb9495 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -784,7 +784,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -875,7 +875,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml index 3a5261a82ec..38881289aa9 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -787,7 +787,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -880,7 +880,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml index 8b38cb06792..868690eec58 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1026,7 +1026,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1118,7 +1118,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml index 473cef3c8cc..4f2fd8ae057 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -736,7 +736,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -827,7 +827,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml index 65e92f60e9d..208199e2938 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -832,7 +832,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -923,7 +923,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1043,7 +1043,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1381,7 +1381,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1476,7 +1476,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1571,7 +1571,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1695,7 +1695,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2033,7 +2033,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2130,7 +2130,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml index 1715ebdc6a1..2bd0ff94ddd 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -736,7 +736,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -827,7 +827,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -947,7 +947,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1285,7 +1285,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1378,7 +1378,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1471,7 +1471,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1593,7 +1593,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1931,7 +1931,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2026,7 +2026,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_and_agentpool_with_static_egress_gateway.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_and_agentpool_with_static_egress_gateway.yaml index 7a7582a1277..80a8635cc74 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_and_agentpool_with_static_egress_gateway.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_and_agentpool_with_static_egress_gateway.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.29\",\n \"capabilities\": @@ -74,7 +74,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -146,7 +146,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -709,7 +709,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -814,7 +814,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -954,7 +954,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1294,7 +1294,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1399,7 +1399,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1539,7 +1539,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1925,7 +1925,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2030,7 +2030,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -2049,7 +2049,7 @@ interactions: false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"120dc566-cf9b-48f3-8cc5-62df12a93083\"\n - \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=627577\\u0026api-version=2025-09-02-preview\\u0026skipToken=627577\"\n + \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=627577\\u0026api-version=2025-10-02-preview\\u0026skipToken=627577\"\n }" headers: cache-control: @@ -2092,7 +2092,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=627577&api-version=2025-09-02-preview&skipToken=627577 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=627577&api-version=2025-10-02-preview&skipToken=627577 response: body: string: "{\n \"value\": []\n }" @@ -2150,7 +2150,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/gwnp?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/gwnp?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/gwnp\",\n @@ -2584,7 +2584,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/gwnp?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/gwnp?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/gwnp\",\n @@ -2646,7 +2646,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.11.7 (Linux-5.15.0-1049-azure-x86_64-with-glibc2.31) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_disable.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_disable.yaml index 7ce543fe57b..49f71dc4ee3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_disable.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_disable.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -587,7 +587,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -685,7 +685,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -817,7 +817,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1149,7 +1149,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1252,7 +1252,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1389,7 +1389,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1723,7 +1723,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1826,7 +1826,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_with_internal_nginx_then_disable.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_with_internal_nginx_then_disable.yaml index bf6127ffdd4..c0442782400 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_with_internal_nginx_then_disable.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_with_internal_nginx_then_disable.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.30\",\n \"capabilities\": @@ -126,7 +126,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -194,7 +194,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -869,7 +869,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -968,7 +968,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1102,7 +1102,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1570,7 +1570,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1674,7 +1674,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1813,7 +1813,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2193,7 +2193,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2297,7 +2297,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_with_keyvault_secrets_provider_addon_and_keyvault_id.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_with_keyvault_secrets_provider_addon_and_keyvault_id.yaml index e1dbaa5dc64..04f400cfb1c 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_with_keyvault_secrets_provider_addon_and_keyvault_id.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_enable_with_keyvault_secrets_provider_addon_and_keyvault_id.yaml @@ -216,7 +216,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -283,7 +283,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -874,7 +874,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -970,7 +970,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1099,7 +1099,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1448,7 +1448,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1852,7 +1852,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_zone_add_delete_list.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_zone_add_delete_list.yaml index d3b98f59484..7a23da043cc 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_zone_add_delete_list.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_zone_add_delete_list.yaml @@ -115,7 +115,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -184,7 +184,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -691,7 +691,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -794,7 +794,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -932,7 +932,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1266,7 +1266,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1369,7 +1369,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2568,7 +2568,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2858,7 +2858,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2962,7 +2962,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3066,7 +3066,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3205,7 +3205,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3539,7 +3539,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3644,7 +3644,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_zone_update.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_zone_update.yaml index dcf2c2a0fed..0386a4a6f52 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_zone_update.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_approuting_zone_update.yaml @@ -115,7 +115,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -184,7 +184,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -736,7 +736,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -839,7 +839,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -977,7 +977,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1311,7 +1311,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1414,7 +1414,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1552,7 +1552,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1931,7 +1931,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2036,7 +2036,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_automatic_sku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_automatic_sku.yaml index aba9895074e..597093547da 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_automatic_sku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_automatic_sku.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -572,7 +572,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1635,7 +1635,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4203,7 +4203,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4334,7 +4334,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4469,7 +4469,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4604,7 +4604,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4739,7 +4739,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4874,7 +4874,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -5059,7 +5059,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -5589,7 +5589,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -5724,7 +5724,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -5909,7 +5909,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -6341,7 +6341,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -6478,7 +6478,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.8 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_automatic_sku_with_hosted_system_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_automatic_sku_with_hosted_system_enabled.yaml index 646b559fd9d..d8241de4918 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_automatic_sku_with_hosted_system_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_automatic_sku_with_hosted_system_enabled.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -567,7 +567,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1985,7 +1985,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4841,7 +4841,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -5007,7 +5007,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -5177,7 +5177,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -5347,7 +5347,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -5517,7 +5517,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -5687,7 +5687,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -5857,7 +5857,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -6027,7 +6027,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -6197,7 +6197,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -6367,7 +6367,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -6537,7 +6537,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -6707,7 +6707,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -6877,7 +6877,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -7097,7 +7097,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -7267,7 +7267,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -7437,7 +7437,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -7607,7 +7607,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -7777,7 +7777,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -7947,7 +7947,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -8117,7 +8117,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -8287,7 +8287,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -8457,7 +8457,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -8627,7 +8627,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -8797,7 +8797,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -8967,7 +8967,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -9137,7 +9137,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -9307,7 +9307,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -9477,7 +9477,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -9647,7 +9647,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -9817,7 +9817,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -9987,7 +9987,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -10157,7 +10157,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -10327,7 +10327,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -10497,7 +10497,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -10667,7 +10667,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -10837,7 +10837,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -11007,7 +11007,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -11177,7 +11177,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -11347,7 +11347,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -11517,7 +11517,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -11687,7 +11687,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -11857,7 +11857,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -12027,7 +12027,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -12197,7 +12197,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -12367,7 +12367,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -12537,7 +12537,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -12707,7 +12707,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -12877,7 +12877,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -13047,7 +13047,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -13217,7 +13217,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -13387,7 +13387,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -13557,7 +13557,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -13727,7 +13727,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -13897,7 +13897,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -14067,7 +14067,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -14237,7 +14237,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -14407,7 +14407,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -14577,7 +14577,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -14751,7 +14751,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-85-generic-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_availability_zones.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_availability_zones.yaml index bc131dd8a78..8f554324f57 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_availability_zones.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_availability_zones.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -120,7 +120,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -592,7 +592,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -686,7 +686,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -705,7 +705,7 @@ interactions: \"AKSUbuntu-2204gen2containerd-202401.09.2\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\"\n }\n }\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=6048\\u0026api-version=2025-09-02-preview\\u0026skipToken=6048\"\n + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=6048\\u0026api-version=2025-10-02-preview\\u0026skipToken=6048\"\n }" headers: cache-control: @@ -744,7 +744,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=6048&api-version=2025-09-02-preview&skipToken=6048 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=6048&api-version=2025-10-02-preview&skipToken=6048 response: body: string: "{\n \"value\": []\n }" @@ -795,7 +795,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -1150,7 +1150,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -1208,7 +1208,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_cni_overlay_migration.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_cni_overlay_migration.yaml index c18ffa8eac8..3ba6d41d604 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_cni_overlay_migration.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_cni_overlay_migration.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.27\",\n \"capabilities\": @@ -81,7 +81,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -147,7 +147,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -873,7 +873,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -965,7 +965,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1088,7 +1088,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3250,7 +3250,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3345,7 +3345,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_cni_overlay_migration_from_kubenet.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_cni_overlay_migration_from_kubenet.yaml index 4daf31e11f4..7342aa7fcd3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_cni_overlay_migration_from_kubenet.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_cni_overlay_migration_from_kubenet.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.1 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.10.12 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.28\",\n \"capabilities\": @@ -79,7 +79,7 @@ interactions: - AZURECLI/2.53.1 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.10.12 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -143,7 +143,7 @@ interactions: - AZURECLI/2.53.1 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.10.12 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -706,7 +706,7 @@ interactions: - AZURECLI/2.53.1 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.10.12 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -802,7 +802,7 @@ interactions: - AZURECLI/2.53.1 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.10.12 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -930,7 +930,7 @@ interactions: - AZURECLI/2.53.1 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.10.12 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2031,7 +2031,7 @@ interactions: - AZURECLI/2.53.1 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.10.12 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2130,7 +2130,7 @@ interactions: - AZURECLI/2.53.1 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.10.12 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_canary_upgrade.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_canary_upgrade.yaml index c8f6c32bea5..99c0450e3cf 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_canary_upgrade.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_canary_upgrade.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -75,7 +75,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -147,7 +147,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -897,7 +897,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1004,7 +1004,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/meshUpgradeProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/meshUpgradeProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/meshUpgradeProfiles/istio\"\ @@ -1054,7 +1054,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1194,7 +1194,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1546,7 +1546,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1653,7 +1653,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1760,7 +1760,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -1852,7 +1852,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2189,7 +2189,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2296,7 +2296,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2436,7 +2436,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2818,7 +2818,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2925,7 +2925,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3032,7 +3032,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -3124,7 +3124,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3476,7 +3476,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3585,7 +3585,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_enable_disable.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_enable_disable.yaml index 5ecca84954f..1b743ce8d50 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_enable_disable.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_enable_disable.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -74,7 +74,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -144,7 +144,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -832,7 +832,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -937,7 +937,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1042,7 +1042,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1147,7 +1147,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -1239,7 +1239,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1666,7 +1666,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1773,7 +1773,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1913,7 +1913,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2248,7 +2248,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2355,7 +2355,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_enable_disable_istio_cni.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_enable_disable_istio_cni.yaml index f894300dcfc..6b240a15f41 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_enable_disable_istio_cni.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_enable_disable_istio_cni.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\",\n @@ -137,7 +137,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -208,7 +208,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1068,7 +1068,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1173,7 +1173,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1278,7 +1278,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\",\n @@ -1435,7 +1435,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1793,7 +1793,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1898,7 +1898,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2003,7 +2003,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\",\n @@ -2160,7 +2160,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2567,7 +2567,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2674,7 +2674,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.8.0-1034-azure-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_get_revisions.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_get_revisions.yaml index f5f78fce4de..14e275b2ac5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_get_revisions.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_get_revisions.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_get_upgrades.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_get_upgrades.yaml index 45dc9a276db..c9cc280c2ad 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_get_upgrades.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_get_upgrades.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -74,7 +74,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -144,7 +144,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -742,7 +742,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -847,7 +847,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -952,7 +952,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1057,7 +1057,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -1149,7 +1149,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1597,7 +1597,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1704,7 +1704,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/meshUpgradeProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/meshUpgradeProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/meshUpgradeProfiles/istio\"\ @@ -1756,7 +1756,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_with_ingress_gateway.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_with_ingress_gateway.yaml index 654e1415e05..250c7c4f088 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_with_ingress_gateway.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_with_ingress_gateway.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -75,7 +75,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -147,7 +147,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -989,7 +989,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1096,7 +1096,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1203,7 +1203,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -1296,7 +1296,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1725,7 +1725,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1834,7 +1834,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1943,7 +1943,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -2036,7 +2036,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2533,7 +2533,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2643,7 +2643,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_with_pluginca.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_with_pluginca.yaml index 9c09f18865c..5033217fdd5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_with_pluginca.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_azure_service_mesh_with_pluginca.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -74,7 +74,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -144,7 +144,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -742,7 +742,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -847,7 +847,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -985,7 +985,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1323,7 +1323,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1435,7 +1435,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1547,7 +1547,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1659,7 +1659,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/meshRevisionProfiles/istio\"\ @@ -1756,7 +1756,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2704,7 +2704,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2823,7 +2823,7 @@ interactions: User-Agent: - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1021-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_check_network.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_check_network.yaml index 37113b4aea2..a869390e2cc 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_check_network.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_check_network.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1025-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1025-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -584,7 +584,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1025-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -692,7 +692,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1025-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -846,7 +846,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1025-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -867,7 +867,7 @@ interactions: : {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \ \ \"enableSecureBoot\": false\n },\n \"eTag\": \"c57550e3-9b0c-4162-9b4e-b5b3ef11f97d\"\ \n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=3544587\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=3544587\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=3544587\"\n}" headers: cache-control: - no-cache @@ -912,7 +912,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1025-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=3544587&api-version=2025-09-02-preview&skipToken=3544587 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=3544587&api-version=2025-10-02-preview&skipToken=3544587 response: body: string: "{\n \"value\": []\n}" @@ -1547,7 +1547,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1025-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -2117,7 +2117,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1025-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_cluster_kata.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_cluster_kata.yaml index 03f5faed8f1..f3f6a171997 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_cluster_kata.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_cluster_kata.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -842,7 +842,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -947,7 +947,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_cluster_kata_mshv_vm_isolation.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_cluster_kata_mshv_vm_isolation.yaml index 81faafb7bcb..ff984f91492 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_cluster_kata_mshv_vm_isolation.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_cluster_kata_mshv_vm_isolation.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -842,7 +842,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -947,7 +947,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_acns_with_flow_logs.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_acns_with_flow_logs.yaml index 2b6126d4907..35b0522b702 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_acns_with_flow_logs.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_acns_with_flow_logs.yaml @@ -17,7 +17,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -642,7 +642,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1580,7 +1580,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1927,7 +1927,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2085,7 +2085,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2455,7 +2455,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2572,7 +2572,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2730,7 +2730,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3100,7 +3100,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3217,7 +3217,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3375,7 +3375,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3745,7 +3745,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3864,7 +3864,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_custom_ca_trust_certificates.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_custom_ca_trust_certificates.yaml index 03ec9de74de..a3c7daa774e 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_custom_ca_trust_certificates.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_custom_ca_trust_certificates.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -128,7 +128,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1002,7 +1002,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1097,7 +1097,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_motd.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_motd.yaml index ec4ad221fc3..de75dccefc1 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_motd.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_add_nodepool_with_motd.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -690,7 +690,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -782,7 +782,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -853,7 +853,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1267,7 +1267,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1326,7 +1326,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml index 61ed30adb5e..146f42dc7d0 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -125,7 +125,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -754,7 +754,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -851,7 +851,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_again_should_fail.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_again_should_fail.yaml index 9826fe6cb31..9b10a4162c3 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_again_should_fail.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_again_should_fail.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -79,7 +79,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1014,7 +1014,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1105,7 +1105,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1198,7 +1198,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_csi_driver_to_v2.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_csi_driver_to_v2.yaml index 88f78c7ba70..3378289fe5b 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_csi_driver_to_v2.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_csi_driver_to_v2.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -126,7 +126,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -508,7 +508,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -598,7 +598,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -715,7 +715,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -954,7 +954,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1046,7 +1046,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml index 6152c91afef..1f380b78be6 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\": @@ -82,7 +82,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -153,7 +153,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -892,7 +892,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -985,7 +985,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1108,7 +1108,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1446,7 +1446,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1543,7 +1543,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml index 468881fa765..2cfad10d803 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml @@ -529,7 +529,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.11.8 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -600,7 +600,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.11.8 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1149,7 +1149,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.11.8 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1254,7 +1254,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.11.8 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1392,7 +1392,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.11.8 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1798,7 +1798,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.11.8 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1903,7 +1903,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.11.8 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2041,7 +2041,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.11.8 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2447,7 +2447,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.11.8 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2554,7 +2554,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.11.8 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ssh_public_key.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ssh_public_key.yaml index 157183da53c..6be460ef6c4 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ssh_public_key.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ssh_public_key.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1120,7 +1120,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1211,7 +1211,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1329,7 +1329,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2672,7 +2672,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2764,7 +2764,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_blob_csi_driver.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_blob_csi_driver.yaml index 814ef6542d2..b2613c9ea85 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_blob_csi_driver.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_blob_csi_driver.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -123,7 +123,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1217,7 +1217,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1307,7 +1307,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1426,7 +1426,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1761,7 +1761,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1851,7 +1851,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1970,7 +1970,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2305,7 +2305,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2395,7 +2395,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2514,7 +2514,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2849,7 +2849,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2939,7 +2939,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3058,7 +3058,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3393,7 +3393,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3483,7 +3483,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3602,7 +3602,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3937,7 +3937,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -4029,7 +4029,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml index 8f01f023a73..dd8e8b2248a 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -125,7 +125,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -933,7 +933,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1020,7 +1020,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1138,7 +1138,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1474,7 +1474,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1565,7 +1565,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1684,7 +1684,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2068,7 +2068,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2159,7 +2159,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2277,7 +2277,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2613,7 +2613,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2705,7 +2705,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2825,7 +2825,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3167,7 +3167,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3260,7 +3260,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml index 486c4247533..cd1235ed2d9 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml @@ -3128,7 +3128,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -3468,7 +3468,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -3985,7 +3985,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -4102,7 +4102,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -4255,7 +4255,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -4673,7 +4673,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -4790,7 +4790,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -4942,7 +4942,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -5409,7 +5409,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -6262,7 +6262,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml index fc3aa386ac9..503a003d046 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -125,7 +125,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1049,7 +1049,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1143,7 +1143,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1266,7 +1266,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1701,7 +1701,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml index 3b37af4635f..f3f6c1e8713 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -125,7 +125,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -706,7 +706,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -800,7 +800,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -923,7 +923,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1358,7 +1358,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1452,7 +1452,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1575,7 +1575,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2058,7 +2058,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml index 9a6036c1d2e..06089f4c0c9 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -785,7 +785,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -877,7 +877,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -997,7 +997,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1334,7 +1334,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_node_restriction.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_node_restriction.yaml index 665092b2803..5ada6f18e2f 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_node_restriction.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_node_restriction.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.27\",\n \"capabilities\": diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_nrg_restriction_level.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_nrg_restriction_level.yaml index 82d94b6284b..ac30207a848 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_nrg_restriction_level.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_nrg_restriction_level.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -957,7 +957,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1049,7 +1049,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1171,7 +1171,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1508,7 +1508,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1602,7 +1602,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_vpa.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_vpa.yaml index c709a10c8d4..65d3cb116d8 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_vpa.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_vpa.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.25\",\n \"capabilities\": @@ -81,7 +81,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -191,7 +191,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1016,7 +1016,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1109,7 +1109,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1232,7 +1232,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1570,7 +1570,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1663,7 +1663,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1786,7 +1786,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2124,7 +2124,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_autoscaler_then_update_vms_pool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_autoscaler_then_update_vms_pool.yaml index 3315bd598d8..f79fdc4f94c 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_autoscaler_then_update_vms_pool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_autoscaler_then_update_vms_pool.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -695,7 +695,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -814,7 +814,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -837,7 +837,7 @@ interactions: 3\n }\n }\n },\n \"virtualMachineNodesStatus\": [\n {\n \ \"size\": \"Standard_D2s_v3\",\n \"count\": 1\n }\n ],\n \ \"eTag\": \"7046262d-65f2-435b-89a8-e2f2b6d20ae8\"\n }\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2658642\\u0026api-version=2025-09-02-preview\\u0026skipToken=2658642\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2658642\\u0026api-version=2025-10-02-preview\\u0026skipToken=2658642\"\n}" headers: cache-control: - no-cache @@ -883,7 +883,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2658642&api-version=2025-09-02-preview&skipToken=2658642 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2658642&api-version=2025-10-02-preview&skipToken=2658642 response: body: string: "{\n \"value\": []\n}" @@ -943,7 +943,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -1114,7 +1114,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -1180,7 +1180,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -1259,7 +1259,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -1980,7 +1980,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -2046,7 +2046,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -2126,7 +2126,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -2295,7 +2295,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -2361,7 +2361,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -2441,7 +2441,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -2610,7 +2610,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/vmspool\",\n @@ -2678,7 +2678,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.11.9 (Linux-6.8.0-78-generic-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_cluster_with_taints.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_cluster_with_taints.yaml index e9f98a131d4..dd6dc84ce26 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_cluster_with_taints.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_cluster_with_taints.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -88,7 +88,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -595,7 +595,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -699,7 +699,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -721,7 +721,7 @@ interactions: \"0\"\n },\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"68c16b5d-6d71-4080-9e61-878810685d31\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=3550078\\u0026api-version=2025-09-02-preview\\u0026skipToken=3550078\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=3550078\\u0026api-version=2025-10-02-preview\\u0026skipToken=3550078\"\n}" headers: cache-control: - no-cache @@ -766,7 +766,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=3550078&api-version=2025-09-02-preview&skipToken=3550078 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=3550078&api-version=2025-10-02-preview&skipToken=3550078 response: body: string: "{\n \"value\": []\n}" @@ -827,7 +827,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n @@ -1090,7 +1090,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n @@ -1153,7 +1153,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1319,7 +1319,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1699,7 +1699,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1820,7 +1820,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n @@ -1901,7 +1901,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"SystemPoolHasRestrictedTaint\",\n \"details\": null,\n @@ -1955,7 +1955,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2118,7 +2118,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2487,7 +2487,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml index ca89d313eed..8e47bdb75c8 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.28\",\n \"capabilities\": @@ -72,7 +72,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -137,7 +137,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -664,7 +664,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -762,7 +762,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_node_provisioning_profile.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_node_provisioning_profile.yaml index 079bc809fda..72b160b14c9 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_node_provisioning_profile.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_node_provisioning_profile.yaml @@ -17,7 +17,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -87,7 +87,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -860,7 +860,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -967,7 +967,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml index adcd6766dd8..778728eecc5 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -736,7 +736,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -828,7 +828,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -948,7 +948,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1391,7 +1391,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml index d577cfae16d..7cb5c49188f 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -125,7 +125,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -789,7 +789,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -895,7 +895,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_normal_cluster_then_add_managed_system_pool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_normal_cluster_then_add_managed_system_pool.yaml index 589b0a08407..31a5977cda3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_normal_cluster_then_add_managed_system_pool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_normal_cluster_then_add_managed_system_pool.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -778,7 +778,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -887,7 +887,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -908,7 +908,7 @@ interactions: \ \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\"\ : false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"9946c07b-9a26-4fb2-9607-c31e1031bf31\"\ \n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2430004\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=2430004\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=2430004\"\n}" headers: cache-control: - no-cache @@ -953,7 +953,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2430004&api-version=2025-09-02-preview&skipToken=2430004 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2430004&api-version=2025-10-02-preview&skipToken=2430004 response: body: string: "{\n \"value\": []\n}" @@ -1005,7 +1005,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/msnp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/msnp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/msnp000003\"\ @@ -1314,7 +1314,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/msnp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/msnp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/msnp000003\"\ @@ -1378,7 +1378,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1503,7 +1503,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -1541,7 +1541,7 @@ interactions: : [\n {\n \"size\": \"Standard_D4s_v3\",\n \"count\": 1\n \ \ }\n ],\n \"eTag\": \"97c15a7c-257a-4bff-ac6b-185c34b6acdc\"\n \ \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2430017\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=2430017\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=2430017\"\n}" headers: cache-control: - no-cache @@ -1588,7 +1588,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/msnp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/msnp000003?api-version=2025-10-02-preview response: body: string: '' @@ -1741,7 +1741,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_or_update_with_health_probe_mode.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_or_update_with_health_probe_mode.yaml index 80e8a5ddd92..ef7f12f379e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_or_update_with_health_probe_mode.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_or_update_with_health_probe_mode.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/30.0.0b Python/3.11.8 (macOS-14.4.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.27\",\n \"capabilities\": @@ -81,7 +81,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/30.0.0b Python/3.11.8 (macOS-14.4.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -153,7 +153,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/30.0.0b Python/3.11.8 (macOS-14.4.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -631,7 +631,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/30.0.0b Python/3.11.8 (macOS-14.4.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_or_update_with_load_balancer_backend_pool_type.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_or_update_with_load_balancer_backend_pool_type.yaml index c69469e09c3..3189ca0753f 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_or_update_with_load_balancer_backend_pool_type.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_or_update_with_load_balancer_backend_pool_type.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.28\",\n \"capabilities\": @@ -72,7 +72,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -139,7 +139,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -665,7 +665,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -759,7 +759,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -886,7 +886,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1195,7 +1195,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml index c4db3f35e21..ec9e76e0b3a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -120,7 +120,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -849,7 +849,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -949,7 +949,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1084,7 +1084,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1398,7 +1398,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_fips_flow.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_fips_flow.yaml index 649e173abbd..ac01ca8802a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_fips_flow.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_fips_flow.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -86,7 +86,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -844,7 +844,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -946,7 +946,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -1022,7 +1022,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -1187,7 +1187,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -1249,7 +1249,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -1325,7 +1325,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -1490,7 +1490,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -1552,7 +1552,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -1628,7 +1628,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -4096,7 +4096,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -4158,7 +4158,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -4177,7 +4177,7 @@ interactions: \"0\"\n },\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"6d2702ad-93d9-4a5a-8980-5679e49f5cb6\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=2834901\\u0026api-version=2025-09-02-preview\\u0026skipToken=2834901\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=2834901\\u0026api-version=2025-10-02-preview\\u0026skipToken=2834901\"\n}" headers: cache-control: - no-cache @@ -4222,7 +4222,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=2834901&api-version=2025-09-02-preview&skipToken=2834901 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=2834901&api-version=2025-10-02-preview&skipToken=2834901 response: body: string: "{\n \"value\": []\n}" @@ -4283,7 +4283,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -4938,7 +4938,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -5000,7 +5000,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -5076,7 +5076,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -5241,7 +5241,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -5303,7 +5303,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -5379,7 +5379,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -5544,7 +5544,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -5606,7 +5606,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -5682,7 +5682,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -15922,7 +15922,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -15986,7 +15986,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_secure_boot_flow.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_secure_boot_flow.yaml index 4abe737f354..61509b08030 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_secure_boot_flow.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_secure_boot_flow.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -86,7 +86,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -781,7 +781,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -877,7 +877,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -895,7 +895,7 @@ interactions: \ \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": true\n }\n }\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=896623\\u0026api-version=2025-09-02-preview\\u0026skipToken=896623\"\n + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=896623\\u0026api-version=2025-10-02-preview\\u0026skipToken=896623\"\n }" headers: cache-control: @@ -937,7 +937,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=896623&api-version=2025-09-02-preview&skipToken=896623 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=896623&api-version=2025-10-02-preview&skipToken=896623 response: body: string: "{\n \"value\": []\n }" @@ -994,7 +994,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -1462,7 +1462,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -1520,7 +1520,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -1591,7 +1591,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -3184,7 +3184,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -3244,7 +3244,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_taint_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_taint_msi.yaml index 98a8317b84e..72bb4cd98c9 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_taint_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_taint_msi.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1021-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1021-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -557,7 +557,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1021-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -661,7 +661,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1021-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -797,7 +797,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1021-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1086,7 +1086,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1021-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1189,7 +1189,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1021-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1324,7 +1324,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1021-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1612,7 +1612,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1021-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_vtpm_flow.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_vtpm_flow.yaml index c0cca4d3f03..0cfcd24c4e5 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_vtpm_flow.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_update_vtpm_flow.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -86,7 +86,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -735,7 +735,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -831,7 +831,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -849,7 +849,7 @@ interactions: \ \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": true,\n \"enableSecureBoot\": false\n }\n }\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=896624\\u0026api-version=2025-09-02-preview\\u0026skipToken=896624\"\n + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=896624\\u0026api-version=2025-10-02-preview\\u0026skipToken=896624\"\n }" headers: cache-control: @@ -891,7 +891,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=896624&api-version=2025-09-02-preview&skipToken=896624 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=896624&api-version=2025-10-02-preview&skipToken=896624 response: body: string: "{\n \"value\": []\n }" @@ -948,7 +948,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -1420,7 +1420,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -1478,7 +1478,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -1549,7 +1549,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -3054,7 +3054,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -3114,7 +3114,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml index 89f7c59c77c..3d2f1ee8827 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -983,7 +983,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1072,7 +1072,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1196,7 +1196,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1534,7 +1534,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1627,7 +1627,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1751,7 +1751,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2089,7 +2089,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2182,7 +2182,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2308,7 +2308,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2648,7 +2648,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2743,7 +2743,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2872,7 +2872,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3212,7 +3212,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3307,7 +3307,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3434,7 +3434,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3772,7 +3772,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3867,7 +3867,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_web_application_routing_with_private_dns_zone.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_web_application_routing_with_private_dns_zone.yaml index c1da5cc7b16..5d30e0784a4 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_web_application_routing_with_private_dns_zone.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_web_application_routing_with_private_dns_zone.yaml @@ -259,7 +259,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.10.12 (Linux-5.15.133.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -367,7 +367,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.10.12 (Linux-5.15.133.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -839,7 +839,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.10.12 (Linux-5.15.133.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_acns_performance.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_acns_performance.yaml index 937c05ffe1c..ed9baa46cc5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_acns_performance.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_acns_performance.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.32\",\n \"capabilities\": @@ -271,7 +271,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -344,7 +344,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1071,7 +1071,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1182,7 +1182,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1330,7 +1330,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1693,7 +1693,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1806,7 +1806,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.10.12 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_advanced_networkpolicies.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_advanced_networkpolicies.yaml index 65f11714d32..f74f2ac73a2 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_advanced_networkpolicies.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_advanced_networkpolicies.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -86,7 +86,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -949,7 +949,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1057,7 +1057,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1199,7 +1199,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1609,7 +1609,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1719,7 +1719,7 @@ interactions: User-Agent: - AZURECLI/2.72.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml index 94e529e09d4..4387a6b68d3 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml @@ -18,7 +18,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -673,7 +673,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -765,7 +765,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -835,7 +835,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1472,7 +1472,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1532,7 +1532,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1671,7 +1671,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3076,7 +3076,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3180,7 +3180,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -3255,7 +3255,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: '' @@ -3304,7 +3304,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_apiserver_vnet_integration.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_apiserver_vnet_integration.yaml index 1e85848730a..aaaf0ed1cbf 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_apiserver_vnet_integration.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_apiserver_vnet_integration.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -911,7 +911,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1008,7 +1008,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_apiserver_vnet_integration_public.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_apiserver_vnet_integration_public.yaml index 712f59dd662..179aac39d0c 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_apiserver_vnet_integration_public.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_apiserver_vnet_integration_public.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -956,7 +956,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1049,7 +1049,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled.yaml index 664fdb3ecf0..3d26fc8766f 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -84,7 +84,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -546,7 +546,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled_and_nginx_specified.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled_and_nginx_specified.yaml index 4ff44b9b997..1219dc3f7c0 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled_and_nginx_specified.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled_and_nginx_specified.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.30\",\n \"capabilities\": @@ -132,7 +132,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -202,7 +202,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -719,7 +719,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -825,7 +825,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled_and_nginx_specified_abbrv.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled_and_nginx_specified_abbrv.yaml index e874d28717d..8511bf04620 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled_and_nginx_specified_abbrv.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_app_routing_enabled_and_nginx_specified_abbrv.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centralus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.30\",\n \"capabilities\": @@ -132,7 +132,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -202,7 +202,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"FailedIdentityOperation","message":"Identity operation @@ -275,7 +275,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -884,7 +884,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -990,7 +990,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.9.6 (macOS-14.6.1-arm64-arm-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml index d50819e1d94..a8a9177bc16 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -82,7 +82,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -759,7 +759,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -851,7 +851,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -970,7 +970,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1307,7 +1307,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1401,7 +1401,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel_and_node_os_upgrade_channel.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel_and_node_os_upgrade_channel.yaml index 10c880b4364..6f20cfa8332 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel_and_node_os_upgrade_channel.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel_and_node_os_upgrade_channel.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -713,7 +713,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -806,7 +806,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -929,7 +929,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2803,7 +2803,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2898,7 +2898,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml index d74a2b72a7d..f0d5ec5e9a4 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -835,7 +835,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -932,7 +932,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azuremonitorappmonitoring.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azuremonitorappmonitoring.yaml index 88d28b86ee9..ba4484899c4 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azuremonitorappmonitoring.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azuremonitorappmonitoring.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -86,7 +86,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -609,7 +609,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -716,7 +716,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azuremonitormetrics.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azuremonitormetrics.yaml index 5cdb258bc67..0c5e82db60f 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azuremonitormetrics.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azuremonitormetrics.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -87,7 +87,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -950,7 +950,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3515,7 +3515,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3627,7 +3627,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3739,7 +3739,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3851,7 +3851,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -3963,7 +3963,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -4075,7 +4075,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -4189,7 +4189,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_basiclb_and_update_to_standardlb.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_basiclb_and_update_to_standardlb.yaml index df5e10dc59f..a4603ebae36 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_basiclb_and_update_to_standardlb.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_basiclb_and_update_to_standardlb.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.10 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -128,7 +128,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.10 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -669,7 +669,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.10 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -766,7 +766,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.10 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -894,7 +894,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.10 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2176,7 +2176,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.10 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_block_and_update_to_none_outbound.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_block_and_update_to_none_outbound.yaml index d0940405f3b..0231dea1eb2 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_block_and_update_to_none_outbound.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_block_and_update_to_none_outbound.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.12.1 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -132,7 +132,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.12.1 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1707,7 +1707,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.12.1 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1806,7 +1806,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.12.1 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1939,7 +1939,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.12.1 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2224,7 +2224,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.12.1 (Linux-6.5.0-1025-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_blue_green_upgrade_nodepool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_blue_green_upgrade_nodepool.yaml index 8465b304cb0..d37851eca8c 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_blue_green_upgrade_nodepool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_blue_green_upgrade_nodepool.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -128,7 +128,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -873,7 +873,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -978,7 +978,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -998,7 +998,7 @@ interactions: {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"14eff166-69eb-413f-a911-d38e018f45b0\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2662052\\u0026api-version=2025-09-02-preview\\u0026skipToken=2662052\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2662052\\u0026api-version=2025-10-02-preview\\u0026skipToken=2662052\"\n}" headers: cache-control: - no-cache @@ -1044,7 +1044,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2662052&api-version=2025-09-02-preview&skipToken=2662052 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2662052&api-version=2025-10-02-preview&skipToken=2662052 response: body: string: "{\n \"value\": []\n}" @@ -1106,7 +1106,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -1528,7 +1528,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -1594,7 +1594,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -1661,7 +1661,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -1742,7 +1742,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -1964,7 +1964,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -2030,7 +2030,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -2110,7 +2110,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -2279,7 +2279,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -2345,7 +2345,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -2384,7 +2384,7 @@ interactions: 5\n },\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"8be63a29-a048-4cf5-b39b-944d79a45c85\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2662085\\u0026api-version=2025-09-02-preview\\u0026skipToken=2662085\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2662085\\u0026api-version=2025-10-02-preview\\u0026skipToken=2662085\"\n}" headers: cache-control: - no-cache @@ -2429,7 +2429,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2662085&api-version=2025-09-02-preview&skipToken=2662085 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2662085&api-version=2025-10-02-preview&skipToken=2662085 response: body: string: "{\n \"value\": []\n}" @@ -2488,7 +2488,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000004\",\n @@ -2949,7 +2949,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000004\",\n @@ -3015,7 +3015,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml index c1682a61f30..d7dab7d5fef 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1075,7 +1075,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml index 17080b7fbc1..04b74e546c7 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -125,7 +125,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -705,7 +705,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_crg_id.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_crg_id.yaml index 11bb21ca6f1..e4cae247efd 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_crg_id.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_crg_id.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -82,7 +82,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -512,7 +512,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -604,7 +604,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ @@ -673,7 +673,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\"\ @@ -1070,7 +1070,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\"\ @@ -1132,7 +1132,7 @@ interactions: - AZURECLI/2.33.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.5.0 Python/3.9.6 (Linux-5.10.76-linuxkit-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_csi_driver_v2.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_csi_driver_v2.yaml index a4ea89dff9f..4065da3ab8c 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_csi_driver_v2.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_csi_driver_v2.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -126,7 +126,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -508,7 +508,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -600,7 +600,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_custom_headers.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_custom_headers.yaml index 84649555a1d..84c1cecd468 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_custom_headers.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_custom_headers.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.25\",\n \"capabilities\": @@ -80,7 +80,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -185,7 +185,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -896,7 +896,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -987,7 +987,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1106,7 +1106,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1682,7 +1682,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1773,7 +1773,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1842,7 +1842,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -2050,7 +2050,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -2109,7 +2109,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2202,7 +2202,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml index a21b457bfc2..9b01627b6e0 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -82,7 +82,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -808,7 +808,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -901,7 +901,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_acns.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_acns.yaml index a41291fcc05..445fda5eb51 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_acns.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_acns.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -769,7 +769,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -877,7 +877,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' @@ -927,7 +927,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -995,7 +995,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1663,7 +1663,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1769,7 +1769,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_acns_complex.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_acns_complex.yaml index 476e388491c..9e218e046ab 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_acns_complex.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_acns_complex.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -86,7 +86,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -818,7 +818,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -924,7 +924,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1064,7 +1064,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1411,7 +1411,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1517,7 +1517,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1658,7 +1658,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2052,7 +2052,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2158,7 +2158,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2299,7 +2299,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2646,7 +2646,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2752,7 +2752,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2892,7 +2892,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3239,7 +3239,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3347,7 +3347,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' @@ -3397,7 +3397,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -3465,7 +3465,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4133,7 +4133,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4237,7 +4237,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4374,7 +4374,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4672,7 +4672,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4778,7 +4778,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_ai_toolchain_operator.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_ai_toolchain_operator.yaml index 235a5490321..1a2c1f84880 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_ai_toolchain_operator.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_ai_toolchain_operator.yaml @@ -18,7 +18,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -87,7 +87,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -580,7 +580,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -677,7 +677,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_cilium_dataplane.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_cilium_dataplane.yaml index f311c3864bd..e795a767edc 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_cilium_dataplane.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_cilium_dataplane.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -610,7 +610,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -708,7 +708,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_cost_analysis.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_cost_analysis.yaml index 13d1fc048f1..9c6ee976d56 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_cost_analysis.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_cost_analysis.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -88,7 +88,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -700,7 +700,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -796,7 +796,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_upstream_kubescheduler_user_configuration.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_upstream_kubescheduler_user_configuration.yaml index 6bd1e41b02c..cbf39e587e8 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_upstream_kubescheduler_user_configuration.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_enable_upstream_kubescheduler_user_configuration.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.30\",\n \"capabilities\": @@ -248,7 +248,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -320,7 +320,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1079,7 +1079,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1186,7 +1186,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml index 4cd5d24c6cf..eb77a39e3d5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -123,7 +123,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -561,7 +561,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml index 14708a248b8..551f78fd0fa 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -119,7 +119,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -548,7 +548,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -641,7 +641,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -658,7 +658,7 @@ interactions: \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2004gen2fipscontainerd-202401.09.2\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": true,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\"\n }\n - \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=6052\\u0026api-version=2025-09-02-preview\\u0026skipToken=6052\"\n + \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=6052\\u0026api-version=2025-10-02-preview\\u0026skipToken=6052\"\n }" headers: cache-control: @@ -697,7 +697,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=6052&api-version=2025-09-02-preview&skipToken=6052 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=6052&api-version=2025-10-02-preview&skipToken=6052 response: body: string: "{\n \"value\": []\n }" @@ -748,7 +748,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\",\n @@ -1144,7 +1144,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\",\n @@ -1201,7 +1201,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gateway_api_and_azureservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gateway_api_and_azureservicemesh.yaml index e49c530e568..39d2f8eb18a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gateway_api_and_azureservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gateway_api_and_azureservicemesh.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.33\",\n \"capabilities\"\ @@ -181,7 +181,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/meshRevisionProfiles?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/meshRevisionProfiles?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/meshRevisionProfiles/istio\"\ @@ -310,7 +310,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -429,7 +429,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1256,7 +1256,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1371,7 +1371,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1524,7 +1524,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1944,7 +1944,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2059,7 +2059,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2212,7 +2212,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2632,7 +2632,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_default_interval_hours.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_default_interval_hours.yaml index 51f363f6b19..94889be307c 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_default_interval_hours.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_default_interval_hours.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1055,7 +1055,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_interval_hours.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_interval_hours.yaml index 6be1978264c..15fbe1b6386 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_interval_hours.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_interval_hours.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1251,7 +1251,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_integrity_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_integrity_enabled.yaml index 2692a8ef2dd..2cd14852fa5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_integrity_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_image_integrity_enabled.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -737,7 +737,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml index 2253be8bba6..fe2caabb537 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.11.0-1015-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -134,7 +134,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.11.0-1015-azure-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -744,7 +744,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.11.0-1015-azure-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_keda.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_keda.yaml index c05b30b9d26..ec1640904f6 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_keda.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_keda.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2448,7 +2448,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2542,7 +2542,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_kube_proxy_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_kube_proxy_config.yaml index 7ab417827f3..b3a16e643c8 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_kube_proxy_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_kube_proxy_config.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -127,7 +127,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1050,7 +1050,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1144,7 +1144,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml index 500bae2cac3..86f0326321e 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -785,7 +785,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_system_pool_multiple_fails.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_system_pool_multiple_fails.yaml index 09f8135a28b..799cb0169aa 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_system_pool_multiple_fails.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_system_pool_multiple_fails.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -126,7 +126,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -883,7 +883,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -992,7 +992,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -1013,7 +1013,7 @@ interactions: : [\n {\n \"size\": \"Standard_D4s_v3\",\n \"count\": 1\n \ \ }\n ],\n \"eTag\": \"275e990c-521b-4cd4-a495-9312a5a8415d\"\n \ \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2430003\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=2430003\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=2430003\"\n}" headers: cache-control: - no-cache @@ -1058,7 +1058,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2430003&api-version=2025-09-02-preview&skipToken=2430003 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2430003&api-version=2025-10-02-preview&skipToken=2430003 response: body: string: "{\n \"value\": []\n}" @@ -1110,7 +1110,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np2000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np2000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1164,7 +1164,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml index 2d12e09b406..f38a86eaba0 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -557,7 +557,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1317,7 +1317,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1539,7 +1539,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1738,7 +1738,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2097,7 +2097,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2205,7 +2205,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_dataplane_cilium.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_dataplane_cilium.yaml index 411f653e960..4652e60663c 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_dataplane_cilium.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_dataplane_cilium.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -714,7 +714,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -810,7 +810,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml index 91a39276d5e..91fa7eb77bf 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -78,7 +78,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -885,7 +885,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_no_ssh_key_and_update_ssh_public_key.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_no_ssh_key_and_update_ssh_public_key.yaml index 892b4320ec8..fad5d497733 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_no_ssh_key_and_update_ssh_public_key.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_no_ssh_key_and_update_ssh_public_key.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -119,7 +119,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -731,7 +731,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -819,7 +819,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -934,7 +934,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2517,7 +2517,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2609,7 +2609,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml index 6814cf257c9..02254875fb4 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -133,7 +133,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -819,7 +819,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -921,7 +921,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1011,7 +1011,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -1572,7 +1572,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_os_upgrade_channel.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_os_upgrade_channel.yaml index b4a1fbd97e2..9bcb4372b34 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_os_upgrade_channel.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_os_upgrade_channel.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -663,7 +663,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -755,7 +755,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -876,7 +876,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2845,7 +2845,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2939,7 +2939,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_nsg_control.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_nsg_control.yaml index d13b0791453..3bd3bc13ad1 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_nsg_control.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_nsg_control.yaml @@ -423,7 +423,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -495,7 +495,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2862,7 +2862,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2965,7 +2965,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml index b526425f2ff..7cf7b6ae938 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -957,7 +957,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml index f8a52e10262..09c46f4f843 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -127,7 +127,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -755,7 +755,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_optimized_addon_scaling.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_optimized_addon_scaling.yaml index 2ce45ca45e6..e228be71bcf 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_optimized_addon_scaling.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_optimized_addon_scaling.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.28\",\n \"capabilities\": @@ -81,7 +81,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -191,7 +191,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -756,7 +756,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -856,7 +856,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml index c94c4e89aa5..3366f0456c4 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -127,7 +127,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -589,7 +589,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -694,7 +694,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_overlay_network_plugin_mode.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_overlay_network_plugin_mode.yaml index 6b3ad8580b0..e0f3bb3f93e 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_overlay_network_plugin_mode.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_overlay_network_plugin_mode.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -808,7 +808,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -901,7 +901,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml index 7074ee33ef5..b522e005ae8 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -909,7 +909,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1001,7 +1001,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1123,7 +1123,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1460,7 +1460,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1553,7 +1553,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1677,7 +1677,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2020,7 +2020,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2112,7 +2112,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2237,7 +2237,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2577,7 +2577,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2672,7 +2672,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2800,7 +2800,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3140,7 +3140,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3235,7 +3235,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3362,7 +3362,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3699,7 +3699,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3793,7 +3793,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_premium_sku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_premium_sku.yaml index 1d0e272b9b0..c2f2f0830cb 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_premium_sku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_premium_sku.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.28\",\n \"capabilities\": @@ -79,7 +79,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -147,7 +147,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -799,7 +799,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -901,7 +901,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_blob_csi_driver.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_blob_csi_driver.yaml index 78bc638b95a..143ef6ee789 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_blob_csi_driver.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_blob_csi_driver.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -838,7 +838,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -927,7 +927,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1043,7 +1043,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1473,7 +1473,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1564,7 +1564,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml index bbd201fc86b..a94539f6764 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -784,7 +784,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -875,7 +875,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -993,7 +993,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1329,7 +1329,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1422,7 +1422,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_sku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_sku.yaml index c52b7f7c476..7949194324d 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_sku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_sku.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -80,7 +80,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -647,7 +647,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -740,7 +740,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_transit_encryption_type.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_transit_encryption_type.yaml index b2116425a74..526ded32845 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_transit_encryption_type.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_transit_encryption_type.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -86,7 +86,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -749,7 +749,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -860,7 +860,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_transit_encryption_type_and_advanced_networkpolicies.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_transit_encryption_type_and_advanced_networkpolicies.yaml index efd9ce69e3b..0b0628c5a1d 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_transit_encryption_type_and_advanced_networkpolicies.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_transit_encryption_type_and_advanced_networkpolicies.yaml @@ -17,7 +17,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -90,7 +90,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -816,7 +816,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -927,7 +927,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_web_application_routing.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_web_application_routing.yaml index 615ca84428d..3ff5dd07813 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_web_application_routing.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_web_application_routing.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1891,7 +1891,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml index ecba5032d51..e0579a0a182 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml @@ -18,7 +18,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -623,7 +623,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -715,7 +715,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -785,7 +785,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1518,7 +1518,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1578,7 +1578,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1717,7 +1717,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3074,7 +3074,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3178,7 +3178,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -3253,7 +3253,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: '' @@ -3302,7 +3302,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml index c1030e50fb9..20ebf689482 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml @@ -18,7 +18,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -86,7 +86,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -827,7 +827,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -920,7 +920,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -990,7 +990,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -2011,7 +2011,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -2071,7 +2071,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -2146,7 +2146,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: '' @@ -2195,7 +2195,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml index 832e08939f3..bff7ebece5d 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -909,7 +909,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_argument_validation.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_argument_validation.yaml index cd9f80ab011..51ffe0195d3 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_argument_validation.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_argument_validation.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/aksval-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/aksval-000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/aksval-000002'' @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/aksval-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/aksval-000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/aksval-000002\",\n @@ -1218,7 +1218,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/aksval-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/aksval-000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/aksval-000002\",\n @@ -1789,7 +1789,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/aksval-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/aksval-000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_basic.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_basic.yaml index 075d8794420..c1023e500d9 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_basic.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_basic.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akssafeguards-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akssafeguards-000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/akssafeguards-000002'' @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akssafeguards-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akssafeguards-000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akssafeguards-000002\",\n @@ -1121,7 +1121,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akssafeguards-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akssafeguards-000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akssafeguards-000002\",\n @@ -2391,7 +2391,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akssafeguards-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akssafeguards-000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_with_pss.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_with_pss.yaml index 4a248b8b865..935b9cc391e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_with_pss.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_deployment_safeguards_with_pss.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akspss-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akspss-000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/akspss-000002'' @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akspss-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akspss-000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akspss-000002\",\n @@ -1316,7 +1316,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akspss-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akspss-000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akspss-000002\",\n @@ -2883,7 +2883,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.12.12 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.41) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akspss-000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-000001/providers/Microsoft.ContainerService/managedClusters/akspss-000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml index 196a765ef46..25ac5fe19d8 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1074,7 +1074,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1166,7 +1166,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1287,7 +1287,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1624,7 +1624,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_web_app_routing.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_web_app_routing.yaml index 9ee21dcb42e..fe89cb879a1 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_web_app_routing.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_web_app_routing.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -979,7 +979,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1074,7 +1074,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1198,7 +1198,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1538,7 +1538,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml index 6f438b2cbe9..767fb5f8f73 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -827,7 +827,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -916,7 +916,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1038,7 +1038,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1375,7 +1375,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml index d8b9696003e..0f59ae742de 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -125,7 +125,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1000,7 +1000,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1094,7 +1094,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1217,7 +1217,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1556,7 +1556,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1652,7 +1652,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_ssh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_ssh.yaml index c474d5cf750..dfa4f08f78e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_ssh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_ssh.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -633,7 +633,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -730,7 +730,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -801,7 +801,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -954,7 +954,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1012,7 +1012,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1031,7 +1031,7 @@ interactions: false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n \ },\n \"eTag\": \"781bcdb4-6367-46ef-b49c-85e66aa5ee83\"\n }\n }\n - ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2014490\\u0026api-version=2025-09-02-preview\\u0026skipToken=2014490\"\n}" + ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2014490\\u0026api-version=2025-10-02-preview\\u0026skipToken=2014490\"\n}" headers: cache-control: - no-cache @@ -1072,7 +1072,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2014490&api-version=2025-09-02-preview&skipToken=2014490 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2014490&api-version=2025-10-02-preview&skipToken=2014490 response: body: string: "{\n \"value\": []\n}" @@ -1129,7 +1129,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -1462,7 +1462,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -1522,7 +1522,7 @@ interactions: User-Agent: - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1064-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml index d4ba4009a35..91926d60691 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -928,7 +928,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1019,7 +1019,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1139,7 +1139,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1525,7 +1525,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1621,7 +1621,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1746,7 +1746,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2090,7 +2090,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2185,7 +2185,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2309,7 +2309,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2647,7 +2647,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2742,7 +2742,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2866,7 +2866,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3203,7 +3203,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3296,7 +3296,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3418,7 +3418,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3762,7 +3762,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3859,7 +3859,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml index 172cb5a5d1b..44664b31075 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -976,7 +976,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1067,7 +1067,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1187,7 +1187,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1524,7 +1524,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml index 0e195943aaf..602b245d12f 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -832,7 +832,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -923,7 +923,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1043,7 +1043,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1381,7 +1381,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_imds_restriction.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_imds_restriction.yaml index b557d0ef50e..d91d05eab02 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_imds_restriction.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_imds_restriction.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.66.1 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.33\",\n \"capabilities\": @@ -215,7 +215,7 @@ interactions: User-Agent: - AZURECLI/2.66.1 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -286,7 +286,7 @@ interactions: User-Agent: - AZURECLI/2.66.1 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -794,7 +794,7 @@ interactions: User-Agent: - AZURECLI/2.66.1 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -899,7 +899,7 @@ interactions: User-Agent: - AZURECLI/2.66.1 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1038,7 +1038,7 @@ interactions: User-Agent: - AZURECLI/2.66.1 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1400,7 +1400,7 @@ interactions: User-Agent: - AZURECLI/2.66.1 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1506,7 +1506,7 @@ interactions: User-Agent: - AZURECLI/2.66.1 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml index fdea65c1f20..f466caad78d 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -122,7 +122,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -786,7 +786,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -880,7 +880,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_entraid_ssh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_entraid_ssh.yaml index 970e9a145d6..65d3c688849 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_entraid_ssh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_entraid_ssh.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -84,7 +84,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -878,7 +878,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -981,7 +981,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1059,7 +1059,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1225,7 +1225,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1288,7 +1288,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1366,7 +1366,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1679,7 +1679,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1742,7 +1742,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1762,7 +1762,7 @@ interactions: {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"EntraId\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"a2823bbc-d439-4bdf-9b50-66cac1c4af58\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2080695\\u0026api-version=2025-09-02-preview\\u0026skipToken=2080695\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2080695\\u0026api-version=2025-10-02-preview\\u0026skipToken=2080695\"\n}" headers: cache-control: - no-cache @@ -1807,7 +1807,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2080695&api-version=2025-09-02-preview&skipToken=2080695 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2080695&api-version=2025-10-02-preview&skipToken=2080695 response: body: string: "{\n \"value\": []\n}" @@ -1868,7 +1868,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -2426,7 +2426,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -2491,7 +2491,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.5 (Linux-5.15.0-1089-azure-x86_64-with-glibc2.31) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_extension_backup.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_extension_backup.yaml index bb60fdad7a7..75578184b6e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_extension_backup.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_extension_backup.yaml @@ -62241,7 +62241,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -62354,7 +62354,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -63047,7 +63047,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_extension_type_backup.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_extension_type_backup.yaml index a6745572a92..592a20cb53b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_extension_type_backup.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_extension_type_backup.yaml @@ -62341,7 +62341,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -62454,7 +62454,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -63049,7 +63049,7 @@ interactions: User-Agent: - AZURECLI/2.71.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_get_upgrades.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_get_upgrades.yaml index f3195f6d68a..e3cafc6d8a5 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_get_upgrades.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_get_upgrades.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.30.1 Python/3.8.10 (Linux-5.15.0-1045-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -83,7 +83,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.30.1 Python/3.8.10 (Linux-5.15.0-1045-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -730,7 +730,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.30.1 Python/3.8.10 (Linux-5.15.0-1045-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -829,7 +829,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.30.1 Python/3.8.10 (Linux-5.15.0-1045-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/upgradeProfiles/default?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/upgradeProfiles/default?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/upgradeprofiles/default\",\n @@ -884,7 +884,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.30.1 Python/3.8.10 (Linux-5.15.0-1045-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1/upgradeProfiles/default?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1/upgradeProfiles/default?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1/upgradeProfiles/default\",\n @@ -935,7 +935,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.30.1 Python/3.8.10 (Linux-5.15.0-1045-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_gpu_driver_type.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_gpu_driver_type.yaml index 628e9cea210..d3192c198b9 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_gpu_driver_type.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_gpu_driver_type.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.30\",\n \"capabilities\": @@ -127,7 +127,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -196,7 +196,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -664,7 +664,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -764,7 +764,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -783,7 +783,7 @@ interactions: false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n \ },\n \"eTag\": \"4f088774-cc2b-4dbe-890a-d4900257472c\"\n }\n }\n - ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=5063700\\u0026api-version=2025-09-02-preview\\u0026skipToken=5063700\"\n}" + ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=5063700\\u0026api-version=2025-10-02-preview\\u0026skipToken=5063700\"\n}" headers: cache-control: - no-cache @@ -825,7 +825,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=5063700&api-version=2025-09-02-preview&skipToken=5063700 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=5063700&api-version=2025-10-02-preview&skipToken=5063700 response: body: string: "{\n \"value\": []\n}" @@ -882,7 +882,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1500,7 +1500,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1560,7 +1560,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1633,7 +1633,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1788,7 +1788,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1849,7 +1849,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1886,7 +1886,7 @@ interactions: \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n \ },\n \"gpuProfile\": {\n \"installGPUDriver\": true,\n \"driverType\": \"GRID\"\n },\n \"eTag\": \"8710f19c-7e30-447c-b9ec-7502d1695d13\"\n - \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=5063801\\u0026api-version=2025-09-02-preview\\u0026skipToken=5063801\"\n}" + \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=5063801\\u0026api-version=2025-10-02-preview\\u0026skipToken=5063801\"\n}" headers: cache-control: - no-cache @@ -1928,7 +1928,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=5063801&api-version=2025-09-02-preview&skipToken=5063801 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=5063801&api-version=2025-10-02-preview&skipToken=5063801 response: body: string: "{\n \"value\": []\n}" @@ -1984,7 +1984,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004\",\n @@ -2464,7 +2464,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004\",\n @@ -2526,7 +2526,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.9.19 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_jwtauthenticator_cmds.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_jwtauthenticator_cmds.yaml index b0a444d2d10..f9a7aa1e9aa 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_jwtauthenticator_cmds.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_jwtauthenticator_cmds.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1045,7 +1045,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1151,7 +1151,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"NotFound\",\n \"details\": [\n {\n \"code\": @@ -1217,7 +1217,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1281,7 +1281,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1343,7 +1343,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1405,7 +1405,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1467,7 +1467,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1529,7 +1529,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1591,7 +1591,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1653,7 +1653,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1724,7 +1724,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1783,7 +1783,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1840,7 +1840,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1897,7 +1897,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -1954,7 +1954,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -2011,7 +2011,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -2068,7 +2068,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -2125,7 +2125,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002\",\n @@ -2138,7 +2138,7 @@ interactions: \"claims.exp - claims.nbf \\u003c= 7200\",\n \"message\": \"total token lifetime must not exceed 2 hours\"\n }\n ],\n \"claimMappings\": {\n \"username\": {\n \"expression\": \"'aks:jwt:google:' + claims.sub\"\n - \ }\n }\n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators?%24skipToken=528\\u0026api-version=2025-09-02-preview\\u0026skipToken=528\"\n}" + \ }\n }\n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators?%24skipToken=528\\u0026api-version=2025-10-02-preview\\u0026skipToken=528\"\n}" headers: cache-control: - no-cache @@ -2183,7 +2183,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators?$skipToken=528&api-version=2025-09-02-preview&skipToken=528 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators?$skipToken=528&api-version=2025-10-02-preview&skipToken=528 response: body: string: "{\n \"value\": []\n}" @@ -2233,7 +2233,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators/jwt000002?api-version=2025-10-02-preview response: body: string: '' @@ -2481,7 +2481,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/jwtAuthenticators?api-version=2025-10-02-preview response: body: string: "{\n \"value\": []\n}" diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_loadbalancer_commands.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_loadbalancer_commands.yaml index 848f4c20f33..8d8c1092f82 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_loadbalancer_commands.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_loadbalancer_commands.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -134,7 +134,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -643,7 +643,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -747,7 +747,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -766,7 +766,7 @@ interactions: \"0\"\n },\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"8c4a6ba1-bce5-46a4-9c2d-270d32c77766\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=2454052\\u0026api-version=2025-09-02-preview\\u0026skipToken=2454052\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=2454052\\u0026api-version=2025-10-02-preview\\u0026skipToken=2454052\"\n}" headers: cache-control: - no-cache @@ -811,7 +811,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=2454052&api-version=2025-09-02-preview&skipToken=2454052 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=2454052&api-version=2025-10-02-preview&skipToken=2454052 response: body: string: "{\n \"value\": []\n}" @@ -870,7 +870,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n @@ -1182,7 +1182,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n @@ -1245,7 +1245,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": []\n}" @@ -1301,7 +1301,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/kubernetes?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/kubernetes?api-version=2025-10-02-preview response: body: string: "{\n \"properties\": {\n \"name\": \"kubernetes\",\n \"primaryAgentPoolName\": @@ -1360,7 +1360,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -1368,7 +1368,7 @@ interactions: true,\n \"provisioningState\": \"Creating\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/kubernetes\",\n \ \"name\": \"kubernetes\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"5cd6a6a2-22cf-4ec3-967a-a05289b161cb\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-09-02-preview\\u0026skipToken=531\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-10-02-preview\\u0026skipToken=531\"\n}" headers: cache-control: - no-cache @@ -1414,7 +1414,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-09-02-preview&skipToken=531 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-10-02-preview&skipToken=531 response: body: string: "{\n \"value\": []\n}" @@ -1463,7 +1463,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -1471,7 +1471,7 @@ interactions: true,\n \"provisioningState\": \"Creating\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/kubernetes\",\n \ \"name\": \"kubernetes\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"5cd6a6a2-22cf-4ec3-967a-a05289b161cb\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-09-02-preview\\u0026skipToken=531\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-10-02-preview\\u0026skipToken=531\"\n}" headers: cache-control: - no-cache @@ -1517,7 +1517,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-09-02-preview&skipToken=531 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-10-02-preview&skipToken=531 response: body: string: "{\n \"value\": []\n}" @@ -1566,7 +1566,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -1574,7 +1574,7 @@ interactions: true,\n \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/kubernetes\",\n \ \"name\": \"kubernetes\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"d0fa40a6-253a-40e5-9a11-8ac4fcb661fe\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-09-02-preview\\u0026skipToken=531\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-10-02-preview\\u0026skipToken=531\"\n}" headers: cache-control: - no-cache @@ -1620,7 +1620,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-09-02-preview&skipToken=531 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-10-02-preview&skipToken=531 response: body: string: "{\n \"value\": []\n}" @@ -1668,7 +1668,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -1676,7 +1676,7 @@ interactions: true,\n \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/kubernetes\",\n \ \"name\": \"kubernetes\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"d0fa40a6-253a-40e5-9a11-8ac4fcb661fe\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-09-02-preview\\u0026skipToken=531\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-10-02-preview\\u0026skipToken=531\"\n}" headers: cache-control: - no-cache @@ -1721,7 +1721,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-09-02-preview&skipToken=531 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-10-02-preview&skipToken=531 response: body: string: "{\n \"value\": []\n}" @@ -1769,7 +1769,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/kubernetes?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/kubernetes?api-version=2025-10-02-preview response: body: string: "{\n \"properties\": {\n \"name\": \"kubernetes\",\n \"primaryAgentPoolName\": @@ -1822,7 +1822,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -1830,7 +1830,7 @@ interactions: true,\n \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/kubernetes\",\n \ \"name\": \"kubernetes\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"d0fa40a6-253a-40e5-9a11-8ac4fcb661fe\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-09-02-preview\\u0026skipToken=531\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-10-02-preview\\u0026skipToken=531\"\n}" headers: cache-control: - no-cache @@ -1876,7 +1876,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-09-02-preview&skipToken=531 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-10-02-preview&skipToken=531 response: body: string: "{\n \"value\": []\n}" @@ -1932,7 +1932,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb?api-version=2025-10-02-preview response: body: string: "{\n \"properties\": {\n \"name\": \"secondary-lb\",\n \"primaryAgentPoolName\": @@ -1991,7 +1991,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -2004,7 +2004,7 @@ interactions: \ },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb\",\n \ \"name\": \"secondary-lb\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"bcfedb93-beca-4cdb-9cfc-2003d859b376\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-09-02-preview\\u0026skipToken=532\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-10-02-preview\\u0026skipToken=532\"\n}" headers: cache-control: - no-cache @@ -2050,7 +2050,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=532&api-version=2025-09-02-preview&skipToken=532 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=532&api-version=2025-10-02-preview&skipToken=532 response: body: string: "{\n \"value\": []\n}" @@ -2099,7 +2099,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -2112,7 +2112,7 @@ interactions: \ },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb\",\n \ \"name\": \"secondary-lb\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"f31db367-d75d-4445-bcb3-6dda94414445\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-09-02-preview\\u0026skipToken=532\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-10-02-preview\\u0026skipToken=532\"\n}" headers: cache-control: - no-cache @@ -2158,7 +2158,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=532&api-version=2025-09-02-preview&skipToken=532 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=532&api-version=2025-10-02-preview&skipToken=532 response: body: string: "{\n \"value\": []\n}" @@ -2207,7 +2207,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -2220,7 +2220,7 @@ interactions: \ },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb\",\n \ \"name\": \"secondary-lb\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"f31db367-d75d-4445-bcb3-6dda94414445\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-09-02-preview\\u0026skipToken=532\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-10-02-preview\\u0026skipToken=532\"\n}" headers: cache-control: - no-cache @@ -2276,7 +2276,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb?api-version=2025-10-02-preview response: body: string: "{\n \"properties\": {\n \"name\": \"secondary-lb\",\n \"primaryAgentPoolName\": @@ -2338,7 +2338,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -2354,7 +2354,7 @@ interactions: \ \"provisioningState\": \"Updating\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb\",\n \ \"name\": \"secondary-lb\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"1a2718fe-767b-4788-8b0f-070df5bb7c6f\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-09-02-preview\\u0026skipToken=532\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-10-02-preview\\u0026skipToken=532\"\n}" headers: cache-control: - no-cache @@ -2400,7 +2400,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=532&api-version=2025-09-02-preview&skipToken=532 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=532&api-version=2025-10-02-preview&skipToken=532 response: body: string: "{\n \"value\": []\n}" @@ -2449,7 +2449,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -2465,7 +2465,7 @@ interactions: \ \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb\",\n \ \"name\": \"secondary-lb\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"2404dbe0-bcf7-49f0-9615-40663985da4a\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-09-02-preview\\u0026skipToken=532\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-10-02-preview\\u0026skipToken=532\"\n}" headers: cache-control: - no-cache @@ -2511,7 +2511,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=532&api-version=2025-09-02-preview&skipToken=532 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=532&api-version=2025-10-02-preview&skipToken=532 response: body: string: "{\n \"value\": []\n}" @@ -2559,7 +2559,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -2575,7 +2575,7 @@ interactions: \ \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb\",\n \ \"name\": \"secondary-lb\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"2404dbe0-bcf7-49f0-9615-40663985da4a\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-09-02-preview\\u0026skipToken=532\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=532\\u0026api-version=2025-10-02-preview\\u0026skipToken=532\"\n}" headers: cache-control: - no-cache @@ -2620,7 +2620,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=532&api-version=2025-09-02-preview&skipToken=532 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=532&api-version=2025-10-02-preview&skipToken=532 response: body: string: "{\n \"value\": []\n}" @@ -2670,7 +2670,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/secondary-lb?api-version=2025-10-02-preview response: body: string: '' @@ -2821,7 +2821,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"properties\": {\n \"name\": \"kubernetes\",\n @@ -2829,7 +2829,7 @@ interactions: true,\n \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers/kubernetes\",\n \ \"name\": \"kubernetes\",\n \"type\": \"Microsoft.ContainerService/managedClusters/loadBalancers\",\n \ \"eTag\": \"d0fa40a6-253a-40e5-9a11-8ac4fcb661fe\"\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-09-02-preview\\u0026skipToken=531\"\n}" + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?%24skipToken=531\\u0026api-version=2025-10-02-preview\\u0026skipToken=531\"\n}" headers: cache-control: - no-cache @@ -2874,7 +2874,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-09-02-preview&skipToken=531 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/loadBalancers?$skipToken=531&api-version=2025-10-02-preview&skipToken=531 response: body: string: "{\n \"value\": []\n}" @@ -2924,7 +2924,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.5.11-linuxkit-aarch64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_add_cmds.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_add_cmds.yaml index 992acbf4e49..8b3ae00bf5a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_add_cmds.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_add_cmds.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -128,7 +128,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -824,7 +824,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -928,7 +928,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -948,7 +948,7 @@ interactions: \ \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n \ },\n \"eTag\": \"e1940d5c-5248-455d-b1bb-a30ebca90fbc\"\n }\n }\n - ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2642810\\u0026api-version=2025-09-02-preview\\u0026skipToken=2642810\"\n}" + ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2642810\\u0026api-version=2025-10-02-preview\\u0026skipToken=2642810\"\n}" headers: cache-control: - no-cache @@ -993,7 +993,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2642810&api-version=2025-09-02-preview&skipToken=2642810 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2642810&api-version=2025-10-02-preview&skipToken=2642810 response: body: string: "{\n \"value\": []\n}" @@ -1052,7 +1052,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1207,7 +1207,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1259,7 +1259,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"NotFound\",\n \"details\": [\n {\n \"code\": @@ -1316,7 +1316,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest\",\n @@ -1579,7 +1579,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest\",\n @@ -1642,7 +1642,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest\",\n @@ -1661,7 +1661,7 @@ interactions: \ \"provisioningState\": \"Succeeded\",\n \"eTag\": \"d30fd2a4-aa3f-49a0-84f1-51d20a394b9f\",\n \ \"status\": {\n \"creationTimestamp\": \"2025-09-05T00:26:03.8790372Z\",\n \ \"driftAction\": \"Synced\",\n \"vmState\": \"Running\"\n }\n - \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?%24skipToken=1941\\u0026api-version=2025-09-02-preview\\u0026skipToken=1941\"\n}" + \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?%24skipToken=1941\\u0026api-version=2025-10-02-preview\\u0026skipToken=1941\"\n}" headers: cache-control: - no-cache @@ -1706,7 +1706,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?$skipToken=1941&api-version=2025-09-02-preview&skipToken=1941 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?$skipToken=1941&api-version=2025-10-02-preview&skipToken=1941 response: body: string: "{\n \"value\": []\n}" @@ -1756,7 +1756,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_cmds.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_cmds.yaml index 10603913710..268f52eeec0 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_cmds.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_cmds.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -128,7 +128,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -675,7 +675,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -777,7 +777,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -796,7 +796,7 @@ interactions: \"0\"\n },\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"788da728-becb-4b27-b163-0a270587318b\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4309339\\u0026api-version=2025-09-02-preview\\u0026skipToken=4309339\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4309339\\u0026api-version=2025-10-02-preview\\u0026skipToken=4309339\"\n}" headers: cache-control: - no-cache @@ -841,7 +841,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4309339&api-version=2025-09-02-preview&skipToken=4309339 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4309339&api-version=2025-10-02-preview&skipToken=4309339 response: body: string: "{\n \"value\": []\n}" @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1164,7 +1164,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1227,7 +1227,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/aks-c000003-26788352-vmss000000\",\n @@ -1285,7 +1285,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/aks-c000003-26788352-vmss000000?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/aks-c000003-26788352-vmss000000?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/aks-c000003-26788352-vmss000000/aks-c000003-26788352-vmss000000\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_update_cmds.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_update_cmds.yaml index 988dbde0100..63fbeed51c9 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_update_cmds.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_machine_update_cmds.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -128,7 +128,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -775,7 +775,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -878,7 +878,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -898,7 +898,7 @@ interactions: {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"5f22d897-2bc4-4bb4-ae93-51efc8047c27\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2989520\\u0026api-version=2025-09-02-preview\\u0026skipToken=2989520\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2989520\\u0026api-version=2025-10-02-preview\\u0026skipToken=2989520\"\n}" headers: cache-control: - no-cache @@ -943,7 +943,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2989520&api-version=2025-09-02-preview&skipToken=2989520 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2989520&api-version=2025-10-02-preview&skipToken=2989520 response: body: string: "{\n \"value\": []\n}" @@ -1002,7 +1002,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1158,7 +1158,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1211,7 +1211,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"NotFound\",\n \"details\": [\n {\n \"code\": @@ -1268,7 +1268,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest\",\n @@ -1482,7 +1482,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest\",\n @@ -1547,7 +1547,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest\",\n @@ -1568,7 +1568,7 @@ interactions: \ \"provisioningState\": \"Succeeded\",\n \"eTag\": \"478a3822-91ca-4aee-be88-eb70876e149a\",\n \ \"status\": {\n \"creationTimestamp\": \"2025-10-28T21:42:32.051Z\",\n \ \"driftAction\": \"Synced\",\n \"vmState\": \"Running\"\n }\n - \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?%24skipToken=19037\\u0026api-version=2025-09-02-preview\\u0026skipToken=19037\"\n}" + \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?%24skipToken=19037\\u0026api-version=2025-10-02-preview\\u0026skipToken=19037\"\n}" headers: cache-control: - no-cache @@ -1613,7 +1613,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?$skipToken=19037&api-version=2025-09-02-preview&skipToken=19037 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?$skipToken=19037&api-version=2025-10-02-preview&skipToken=19037 response: body: string: "{\n \"value\": []\n}" @@ -1662,7 +1662,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest\",\n @@ -1738,7 +1738,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest\",\n @@ -2258,7 +2258,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest\",\n @@ -2325,7 +2325,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/machinetest\",\n @@ -2349,7 +2349,7 @@ interactions: \"value\"\n },\n \"eTag\": \"39a8edac-0d6d-4317-b19d-8089e8325c45\",\n \ \"status\": {\n \"creationTimestamp\": \"2025-10-28T21:42:32.051954Z\",\n \ \"driftAction\": \"Synced\",\n \"vmState\": \"Running\"\n }\n - \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?%24skipToken=19037\\u0026api-version=2025-09-02-preview\\u0026skipToken=19037\"\n}" + \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?%24skipToken=19037\\u0026api-version=2025-10-02-preview\\u0026skipToken=19037\"\n}" headers: cache-control: - no-cache @@ -2394,7 +2394,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?$skipToken=19037&api-version=2025-09-02-preview&skipToken=19037 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?$skipToken=19037&api-version=2025-10-02-preview&skipToken=19037 response: body: string: "{\n \"value\": []\n}" @@ -2444,7 +2444,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml index 7c0ad8a508c..85deffd77a4 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1024,7 +1024,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1115,7 +1115,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-10-02-preview response: body: string: "{\n \"value\": []\n }" @@ -1167,7 +1167,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -1219,7 +1219,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -1276,7 +1276,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -1332,7 +1332,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -1388,7 +1388,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2025-10-02-preview response: body: string: '' @@ -1431,7 +1431,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-10-02-preview response: body: string: "{\n \"value\": []\n }" @@ -1480,7 +1480,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenancewindow.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenancewindow.yaml index d7267801c85..0cc89e2d27a 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenancewindow.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenancewindow.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1120,7 +1120,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1212,7 +1212,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-10-02-preview response: body: string: "{\n \"value\": []\n }" @@ -1266,7 +1266,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule\",\n @@ -1321,7 +1321,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule\",\n @@ -1381,7 +1381,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedNodeOSUpgradeSchedule?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedNodeOSUpgradeSchedule?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedNodeOSUpgradeSchedule\",\n @@ -1435,7 +1435,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule\",\n @@ -1494,7 +1494,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule\",\n @@ -1560,7 +1560,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule\",\n @@ -1616,7 +1616,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule\",\n @@ -1672,7 +1672,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedAutoUpgradeSchedule?api-version=2025-10-02-preview response: body: string: '' @@ -1717,7 +1717,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedNodeOSUpgradeSchedule?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/aksManagedNodeOSUpgradeSchedule?api-version=2025-10-02-preview response: body: string: '' @@ -1760,7 +1760,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2025-10-02-preview response: body: string: "{\n \"value\": []\n }" @@ -1809,7 +1809,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_managed_gateway_requires_service_mesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_managed_gateway_requires_service_mesh.yaml index 2cc561ed954..6bca98c1a70 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_managed_gateway_requires_service_mesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_managed_gateway_requires_service_mesh.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -132,7 +132,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"BadRequest\",\n \"details\": null,\n \"message\"\ @@ -183,7 +183,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"NotFound\",\n \"details\": [\n {\n \"code\"\ @@ -300,7 +300,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -957,7 +957,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1067,7 +1067,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1214,7 +1214,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"BadRequest\",\n \"details\": null,\n \"message\"\ @@ -1269,7 +1269,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_managed_namespace.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_managed_namespace.yaml index 40fb4add356..379876bcb47 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_managed_namespace.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_managed_namespace.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -86,7 +86,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -748,7 +748,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -855,7 +855,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01'' @@ -904,7 +904,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1018,7 +1018,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01\",\n @@ -1286,7 +1286,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01\",\n @@ -1344,7 +1344,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01\",\n @@ -1402,10 +1402,10 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces?api-version=2025-10-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01","name":"namespace01","type":"Microsoft.ContainerService/managedClusters/managedNamespaces","eTag":"f08dfeee-ffd8-413e-956f-8a196ff1fdff","location":"uksouth","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-29T23:42:33.0300473Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-29T23:42:33.0300473Z"},"properties":{"provisioningState":"Succeeded","defaultResourceQuota":{"cpuRequest":"500m","cpuLimit":"800m","memoryRequest":"1Gi","memoryLimit":"2Gi"},"defaultNetworkPolicy":{"ingress":"AllowSameNamespace","egress":"AllowAll"},"adoptionPolicy":"Never","deletePolicy":"Keep","portalFqdn":"cliakstest-clitest7gu4clsgb-8ecadf-8qk2k5vc.portal.hcp.uksouth.azmk8s.io"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces?api-version=2025-09-02-preview&%24skiptoken=7ZBBTsMwEEXvYomu6joNhqSRKlR1ARIUJNrusnHsSbDS2GbGCYiqdydUwIIzsBuN3v%2f6ekfm4D0%2bWNcSK45sf7992u%2fuWMFeYgxUCNEppxrowMWZ%2bugRZtp3gvqKNNoQrXckctDK1HrBzVxdcglK8iqXkidmUecZSJPpXCCQ71HDLfo%2bkNAHG4Fi1vRSH6ipXkVAP1gDSGJjNXrydZytvYvKOsAt4GA1fK8x60NP8Qsda1Q7nhRbeV2n1Q%2fwqDqgoDTQzUUqqbVh51twy3mSLZKJCpYPY3xcv0yT9IonOU9SHhAGC2%2bTPzg7TZnCbtU0CI2KYM5Vo6LV84ZNz%2f42ClvA8XUsfxSWrCj%2fJf46L9mJnT4B"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01","name":"namespace01","type":"Microsoft.ContainerService/managedClusters/managedNamespaces","eTag":"f08dfeee-ffd8-413e-956f-8a196ff1fdff","location":"uksouth","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-29T23:42:33.0300473Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-29T23:42:33.0300473Z"},"properties":{"provisioningState":"Succeeded","defaultResourceQuota":{"cpuRequest":"500m","cpuLimit":"800m","memoryRequest":"1Gi","memoryLimit":"2Gi"},"defaultNetworkPolicy":{"ingress":"AllowSameNamespace","egress":"AllowAll"},"adoptionPolicy":"Never","deletePolicy":"Keep","portalFqdn":"cliakstest-clitest7gu4clsgb-8ecadf-8qk2k5vc.portal.hcp.uksouth.azmk8s.io"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces?api-version=2025-10-02-preview&%24skiptoken=7ZBBTsMwEEXvYomu6joNhqSRKlR1ARIUJNrusnHsSbDS2GbGCYiqdydUwIIzsBuN3v%2f6ekfm4D0%2bWNcSK45sf7992u%2fuWMFeYgxUCNEppxrowMWZ%2bugRZtp3gvqKNNoQrXckctDK1HrBzVxdcglK8iqXkidmUecZSJPpXCCQ71HDLfo%2bkNAHG4Fi1vRSH6ipXkVAP1gDSGJjNXrydZytvYvKOsAt4GA1fK8x60NP8Qsda1Q7nhRbeV2n1Q%2fwqDqgoDTQzUUqqbVh51twy3mSLZKJCpYPY3xcv0yT9IonOU9SHhAGC2%2bTPzg7TZnCbtU0CI2KYM5Vo6LV84ZNz%2f42ClvA8XUsfxSWrCj%2fJf46L9mJnT4B"}' headers: cache-control: - no-cache @@ -1450,7 +1450,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces?api-version=2025-09-02-preview&$skiptoken=7ZBBTsMwEEXvYomu6joNhqSRKlR1ARIUJNrusnHsSbDS2GbGCYiqdydUwIIzsBuN3v/6ekfm4D0%2BWNcSK45sf7992u/uWMFeYgxUCNEppxrowMWZ%2BugRZtp3gvqKNNoQrXckctDK1HrBzVxdcglK8iqXkidmUecZSJPpXCCQ71HDLfo%2BkNAHG4Fi1vRSH6ipXkVAP1gDSGJjNXrydZytvYvKOsAt4GA1fK8x60NP8Qsda1Q7nhRbeV2n1Q/wqDqgoDTQzUUqqbVh51twy3mSLZKJCpYPY3xcv0yT9IonOU9SHhAGC2%2BTPzg7TZnCbtU0CI2KYM5Vo6LV84ZNz/42ClvA8XUsfxSWrCj/Jf46L9mJnT4B + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces?api-version=2025-10-02-preview&$skiptoken=7ZBBTsMwEEXvYomu6joNhqSRKlR1ARIUJNrusnHsSbDS2GbGCYiqdydUwIIzsBuN3v/6ekfm4D0%2BWNcSK45sf7992u/uWMFeYgxUCNEppxrowMWZ%2BugRZtp3gvqKNNoQrXckctDK1HrBzVxdcglK8iqXkidmUecZSJPpXCCQ71HDLfo%2BkNAHG4Fi1vRSH6ipXkVAP1gDSGJjNXrydZytvYvKOsAt4GA1fK8x60NP8Qsda1Q7nhRbeV2n1Q/wqDqgoDTQzUUqqbVh51twy3mSLZKJCpYPY3xcv0yT9IonOU9SHhAGC2%2BTPzg7TZnCbtU0CI2KYM5Vo6LV84ZNz/42ClvA8XUsfxSWrCj/Jf46L9mJnT4B response: body: string: '{"value":[]}' @@ -2052,7 +2052,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01/listCredential?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01/listCredential?api-version=2025-10-02-preview response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": @@ -2105,7 +2105,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01\",\n @@ -2164,7 +2164,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2278,7 +2278,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01\",\n @@ -2397,7 +2397,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01\",\n @@ -2456,10 +2456,10 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces?api-version=2025-10-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01","name":"namespace01","type":"Microsoft.ContainerService/managedClusters/managedNamespaces","eTag":"797fbd33-6a21-49c1-b2ce-d26b27fb1409","location":"uksouth","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-29T23:42:33.0300473Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-29T23:44:19.821808Z"},"properties":{"labels":{"x":"y"},"provisioningState":"Succeeded","defaultResourceQuota":{"cpuRequest":"700m","cpuLimit":"800m","memoryRequest":"3Gi","memoryLimit":"5Gi"},"defaultNetworkPolicy":{"ingress":"AllowSameNamespace","egress":"AllowAll"},"adoptionPolicy":"Never","deletePolicy":"Keep","portalFqdn":"cliakstest-clitest7gu4clsgb-8ecadf-8qk2k5vc.portal.hcp.uksouth.azmk8s.io"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces?api-version=2025-09-02-preview&%24skiptoken=7ZBBTsMwEEXvYomu6joNhqSRKlR1ARIUJNrusnHsSbDS2GbGCYiqdydUwIIzsBuN3v%2f6ekfm4D0%2bWNcSK45sf7992u%2fuWMFeYgxUCNEppxrowMWZ%2bugRZtp3gvqKNNoQrXckctDK1HrBzVxdcglK8iqXkidmUecZSJPpXCCQ71HDLfo%2bkNAHG4Fi1vRSH6ipXkVAP1gDSGJjNXrydZytvYvKOsAt4GA1fK8x60NP8Qsda1Q7nhRbeV2n1Q%2fwqDqgoDTQzUUqqbVh51twy3mSLZKJCpYPY3xcv0yT9IonOU9SHhAGC2%2bTPzg7TZnCbtU0CI2KYM5Vo6LV84ZNz%2f42ClvA8XUsfxSWrCj%2fJf46L9mJnT4B"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01","name":"namespace01","type":"Microsoft.ContainerService/managedClusters/managedNamespaces","eTag":"797fbd33-6a21-49c1-b2ce-d26b27fb1409","location":"uksouth","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-29T23:42:33.0300473Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-29T23:44:19.821808Z"},"properties":{"labels":{"x":"y"},"provisioningState":"Succeeded","defaultResourceQuota":{"cpuRequest":"700m","cpuLimit":"800m","memoryRequest":"3Gi","memoryLimit":"5Gi"},"defaultNetworkPolicy":{"ingress":"AllowSameNamespace","egress":"AllowAll"},"adoptionPolicy":"Never","deletePolicy":"Keep","portalFqdn":"cliakstest-clitest7gu4clsgb-8ecadf-8qk2k5vc.portal.hcp.uksouth.azmk8s.io"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces?api-version=2025-10-02-preview&%24skiptoken=7ZBBTsMwEEXvYomu6joNhqSRKlR1ARIUJNrusnHsSbDS2GbGCYiqdydUwIIzsBuN3v%2f6ekfm4D0%2bWNcSK45sf7992u%2fuWMFeYgxUCNEppxrowMWZ%2bugRZtp3gvqKNNoQrXckctDK1HrBzVxdcglK8iqXkidmUecZSJPpXCCQ71HDLfo%2bkNAHG4Fi1vRSH6ipXkVAP1gDSGJjNXrydZytvYvKOsAt4GA1fK8x60NP8Qsda1Q7nhRbeV2n1Q%2fwqDqgoDTQzUUqqbVh51twy3mSLZKJCpYPY3xcv0yT9IonOU9SHhAGC2%2bTPzg7TZnCbtU0CI2KYM5Vo6LV84ZNz%2f42ClvA8XUsfxSWrCj%2fJf46L9mJnT4B"}' headers: cache-control: - no-cache @@ -2506,7 +2506,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/managedNamespaces/namespace01?api-version=2025-10-02-preview response: body: string: '' @@ -2659,7 +2659,7 @@ interactions: User-Agent: - AZURECLI/2.79.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_migrate_cluster_to_cilium_dataplane.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_migrate_cluster_to_cilium_dataplane.yaml index 12ca9393214..103b7ab2fcc 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_migrate_cluster_to_cilium_dataplane.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_migrate_cluster_to_cilium_dataplane.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-6.2.0-1012-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.28\",\n \"capabilities\": @@ -81,7 +81,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-6.2.0-1012-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -144,7 +144,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-6.2.0-1012-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -923,7 +923,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-6.2.0-1012-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1019,7 +1019,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-6.2.0-1012-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1146,7 +1146,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-6.2.0-1012-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3847,7 +3847,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-6.2.0-1012-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -3946,7 +3946,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-6.2.0-1012-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_migrate_vmas_to_vms.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_migrate_vmas_to_vms.yaml index f2bbe4d5f61..914a2afb9a8 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_migrate_vmas_to_vms.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_migrate_vmas_to_vms.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.33\",\n \"capabilities\"\ @@ -221,7 +221,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -289,7 +289,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1275,7 +1275,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1379,7 +1379,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1514,7 +1514,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2512,7 +2512,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2626,7 +2626,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_localdns_null_dnsOverrides.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_localdns_null_dnsOverrides.yaml index a393a312979..8ca3bfcb7ac 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_localdns_null_dnsOverrides.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_localdns_null_dnsOverrides.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -923,7 +923,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"d451e301-4c0f-45a8-a6e2-9df5848b5f8d\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761882\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761882\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761882\"\n}" headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761882&api-version=2025-09-02-preview&skipToken=4761882 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761882&api-version=2025-10-02-preview&skipToken=4761882 response: body: string: "{\n \"value\": []\n}" @@ -1019,7 +1019,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_localdns_number_dnsOverrides.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_localdns_number_dnsOverrides.yaml index 0585ef17ad5..b3624785f11 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_localdns_number_dnsOverrides.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_localdns_number_dnsOverrides.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -737,7 +737,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -849,7 +849,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -872,7 +872,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"e7ced069-a7f5-43e1-b493-c54a13045afb\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761923\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761923\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761923\"\n}" headers: cache-control: - no-cache @@ -918,7 +918,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761923&api-version=2025-09-02-preview&skipToken=4761923 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761923&api-version=2025-10-02-preview&skipToken=4761923 response: body: string: "{\n \"value\": []\n}" @@ -968,7 +968,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_disable_windows_outbound_nat.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_disable_windows_outbound_nat.yaml index b0898721751..1e53955705d 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_disable_windows_outbound_nat.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_disable_windows_outbound_nat.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.29\",\n \"capabilities\": @@ -75,7 +75,7 @@ interactions: User-Agent: - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -146,7 +146,7 @@ interactions: User-Agent: - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -766,7 +766,7 @@ interactions: User-Agent: - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -870,7 +870,7 @@ interactions: User-Agent: - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -889,7 +889,7 @@ interactions: false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"3c914002-5d48-430d-8a8c-707d8a861be8\"\n - \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=5904738\\u0026api-version=2025-09-02-preview\\u0026skipToken=5904738\"\n + \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=5904738\\u0026api-version=2025-10-02-preview\\u0026skipToken=5904738\"\n }" headers: cache-control: @@ -932,7 +932,7 @@ interactions: User-Agent: - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=5904738&api-version=2025-09-02-preview&skipToken=5904738 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=5904738&api-version=2025-10-02-preview&skipToken=5904738 response: body: string: "{\n \"value\": []\n }" @@ -990,7 +990,7 @@ interactions: User-Agent: - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1516,7 +1516,7 @@ interactions: User-Agent: - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1578,7 +1578,7 @@ interactions: User-Agent: - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1019-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml index 03fe8a7d8a3..a908fe7be3d 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml @@ -58,7 +58,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -544,7 +544,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -635,7 +635,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -708,7 +708,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1260,7 +1260,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1322,7 +1322,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_kata.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_kata.yaml index 2ddb9f098d9..5e1e8407a5e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_kata.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_kata.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -726,7 +726,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -829,7 +829,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -849,7 +849,7 @@ interactions: {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"8ba3f505-9bc6-420a-8c90-7b44754805ab\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=5106825\\u0026api-version=2025-09-02-preview\\u0026skipToken=5106825\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=5106825\\u0026api-version=2025-10-02-preview\\u0026skipToken=5106825\"\n}" headers: cache-control: - no-cache @@ -894,7 +894,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=5106825&api-version=2025-09-02-preview&skipToken=5106825 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=5106825&api-version=2025-10-02-preview&skipToken=5106825 response: body: string: "{\n \"value\": []\n}" @@ -953,7 +953,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -1462,7 +1462,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -1527,7 +1527,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_kata_mshv_vm_isolation.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_kata_mshv_vm_isolation.yaml index fe691181e30..670a561c106 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_kata_mshv_vm_isolation.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_kata_mshv_vm_isolation.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -775,7 +775,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -878,7 +878,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n @@ -898,7 +898,7 @@ interactions: {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"17fe6dab-d7c4-4d64-afda-18ccbfec0e87\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=5106948\\u0026api-version=2025-09-02-preview\\u0026skipToken=5106948\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=5106948\\u0026api-version=2025-10-02-preview\\u0026skipToken=5106948\"\n}" headers: cache-control: - no-cache @@ -943,7 +943,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=5106948&api-version=2025-09-02-preview&skipToken=5106948 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=5106948&api-version=2025-10-02-preview&skipToken=5106948 response: body: string: "{\n \"value\": []\n}" @@ -1002,7 +1002,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -1560,7 +1560,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000003\",\n @@ -1625,7 +1625,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.14.0 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config.yaml index b772201b69f..87ed91fcd40 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -838,7 +838,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -950,7 +950,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -971,7 +971,7 @@ interactions: \ \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\"\ : false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"fe771ad6-d814-48f7-9f46-3106bdf247fd\"\ \n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4176842\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4176842\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4176842\"\n}" headers: cache-control: - no-cache @@ -1017,7 +1017,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4176842&api-version=2025-09-02-preview&skipToken=4176842 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4176842&api-version=2025-10-02-preview&skipToken=4176842 response: body: string: "{\n \"value\": []\n}" @@ -1092,7 +1092,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1536,7 +1536,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1619,7 +1619,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1704,7 +1704,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config_with_extra_property.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config_with_extra_property.yaml index 47840889957..4eb8f1e8a1e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config_with_extra_property.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config_with_extra_property.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -838,7 +838,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -950,7 +950,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -973,7 +973,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"fbd6b90b-b82c-4592-a6d3-e8d4621b5cd8\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761948\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761948\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761948\"\n}" headers: cache-control: - no-cache @@ -1019,7 +1019,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761948&api-version=2025-09-02-preview&skipToken=4761948 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761948&api-version=2025-10-02-preview&skipToken=4761948 response: body: string: "{\n \"value\": []\n}" @@ -1094,7 +1094,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1538,7 +1538,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1621,7 +1621,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1706,7 +1706,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config_with_extra_property_in_dnsOverrides.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config_with_extra_property_in_dnsOverrides.yaml index 0d822c2fc61..50f1ff05432 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config_with_extra_property_in_dnsOverrides.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_config_with_extra_property_in_dnsOverrides.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -738,7 +738,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -850,7 +850,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -873,7 +873,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"eb6e2483-5c84-42cd-9e9b-fa3d705aceee\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761876\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761876\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761876\"\n}" headers: cache-control: - no-cache @@ -919,7 +919,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761876&api-version=2025-09-02-preview&skipToken=4761876 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761876&api-version=2025-10-02-preview&skipToken=4761876 response: body: string: "{\n \"value\": []\n}" @@ -994,7 +994,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1489,7 +1489,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1572,7 +1572,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1657,7 +1657,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_empty_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_empty_config.yaml index fcf1c95bab1..b28156278c1 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_empty_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_empty_config.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -738,7 +738,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -850,7 +850,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -873,7 +873,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"1c91f79a-def4-466b-a9f4-5adfd76c439b\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4785078\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4785078\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4785078\"\n}" headers: cache-control: - no-cache @@ -919,7 +919,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4785078&api-version=2025-09-02-preview&skipToken=4785078 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4785078&api-version=2025-10-02-preview&skipToken=4785078 response: body: string: "{\n \"value\": []\n}" @@ -982,7 +982,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1038,7 +1038,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_empty_mode.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_empty_mode.yaml index 59fbe12bb2f..b65c7514105 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_empty_mode.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_empty_mode.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -687,7 +687,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -799,7 +799,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -822,7 +822,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"ff4407c2-a5f7-4415-bd03-fa58717e193f\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761947\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761947\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761947\"\n}" headers: cache-control: - no-cache @@ -868,7 +868,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761947&api-version=2025-09-02-preview&skipToken=4761947 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761947&api-version=2025-10-02-preview&skipToken=4761947 response: body: string: "{\n \"value\": []\n}" @@ -931,7 +931,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -987,7 +987,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_invalid_mode.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_invalid_mode.yaml index 8bfb1ec17db..5bb34a8ba81 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_invalid_mode.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_invalid_mode.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -738,7 +738,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -850,7 +850,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -873,7 +873,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"a8e6ae94-920d-4762-900b-6bd2f3989aef\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4785079\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4785079\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4785079\"\n}" headers: cache-control: - no-cache @@ -919,7 +919,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4785079&api-version=2025-09-02-preview&skipToken=4785079 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4785079&api-version=2025-10-02-preview&skipToken=4785079 response: body: string: "{\n \"value\": []\n}" @@ -994,7 +994,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1387,7 +1387,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1470,7 +1470,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1568,7 +1568,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1624,7 +1624,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_missing_mode.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_missing_mode.yaml index 73fbb8131bb..b806a8c18b6 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_missing_mode.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_missing_mode.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -737,7 +737,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -849,7 +849,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -872,7 +872,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"4f90f82a-5524-4d33-aa28-af0727226551\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761880\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761880\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761880\"\n}" headers: cache-control: - no-cache @@ -918,7 +918,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761880&api-version=2025-09-02-preview&skipToken=4761880 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761880&api-version=2025-10-02-preview&skipToken=4761880 response: body: string: "{\n \"value\": []\n}" @@ -987,7 +987,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1043,7 +1043,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_null_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_null_config.yaml index 21a0b495009..e35305a046e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_null_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_null_config.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -923,7 +923,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"7ad5b5ac-e01f-4807-9515-51552a109374\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761922\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761922\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761922\"\n}" headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761922&api-version=2025-09-02-preview&skipToken=4761922 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761922&api-version=2025-10-02-preview&skipToken=4761922 response: body: string: "{\n \"value\": []\n}" @@ -1019,7 +1019,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_null_mode.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_null_mode.yaml index 57e273ddf45..b0fb1ef1ff1 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_null_mode.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_null_mode.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -923,7 +923,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"d89a4b5c-3d5d-445b-ac4f-3cf38610bc57\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761879\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761879\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761879\"\n}" headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761879&api-version=2025-09-02-preview&skipToken=4761879 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761879&api-version=2025-10-02-preview&skipToken=4761879 response: body: string: "{\n \"value\": []\n}" @@ -1032,7 +1032,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1088,7 +1088,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode.yaml index 87a111ebea5..3739db48b35 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -738,7 +738,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -850,7 +850,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -873,7 +873,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"0bb5a5d1-b955-467c-8b86-9e036d89a056\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761926\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761926\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761926\"\n}" headers: cache-control: - no-cache @@ -919,7 +919,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761926&api-version=2025-09-02-preview&skipToken=4761926 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761926&api-version=2025-10-02-preview&skipToken=4761926 response: body: string: "{\n \"value\": []\n}" @@ -982,7 +982,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1426,7 +1426,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1509,7 +1509,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1594,7 +1594,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_empty_overrides.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_empty_overrides.yaml index afe44afc892..2b75a61fba6 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_empty_overrides.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_empty_overrides.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -838,7 +838,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -950,7 +950,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -973,7 +973,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"026c3042-d381-4ce8-be45-f5c98f951e76\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761881\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761881\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761881\"\n}" headers: cache-control: - no-cache @@ -1019,7 +1019,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761881&api-version=2025-09-02-preview&skipToken=4761881 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761881&api-version=2025-10-02-preview&skipToken=4761881 response: body: string: "{\n \"value\": []\n}" @@ -1083,7 +1083,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1138,7 +1138,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_invalid_kubedns.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_invalid_kubedns.yaml index 4352170120b..d7f308b2428 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_invalid_kubedns.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_invalid_kubedns.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -787,7 +787,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -899,7 +899,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -922,7 +922,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"df0c1730-e7d5-4162-9064-09d2cb984bad\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4785080\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4785080\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4785080\"\n}" headers: cache-control: - no-cache @@ -968,7 +968,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4785080&api-version=2025-09-02-preview&skipToken=4785080 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4785080&api-version=2025-10-02-preview&skipToken=4785080 response: body: string: "{\n \"value\": []\n}" @@ -1043,7 +1043,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1436,7 +1436,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1519,7 +1519,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1620,7 +1620,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1676,7 +1676,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_partial_invalid.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_partial_invalid.yaml index 129a4586a7d..cf6a2174600 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_partial_invalid.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_partial_invalid.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -923,7 +923,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"208ff7d2-037a-46dc-84cb-4e6df7f72059\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761933\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761933\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761933\"\n}" headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761933&api-version=2025-09-02-preview&skipToken=4761933 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761933&api-version=2025-10-02-preview&skipToken=4761933 response: body: string: "{\n \"value\": []\n}" @@ -1019,7 +1019,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_single_kubedns.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_single_kubedns.yaml index 304887f1a9f..96c68327e26 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_single_kubedns.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_single_kubedns.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -738,7 +738,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -850,7 +850,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -873,7 +873,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"8622e7d6-6fed-486b-9e0f-5695b7db060e\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761878\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761878\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761878\"\n}" headers: cache-control: - no-cache @@ -919,7 +919,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761878&api-version=2025-09-02-preview&skipToken=4761878 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761878&api-version=2025-10-02-preview&skipToken=4761878 response: body: string: "{\n \"value\": []\n}" @@ -988,7 +988,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1043,7 +1043,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_single_vnetdns.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_single_vnetdns.yaml index 4f932e2d3e9..73842ad19fc 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_single_vnetdns.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_single_vnetdns.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -738,7 +738,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -850,7 +850,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -873,7 +873,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"d6f4b724-ea5c-4f3e-9f89-be942ae080c2\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761921\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761921\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761921\"\n}" headers: cache-control: - no-cache @@ -919,7 +919,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761921&api-version=2025-09-02-preview&skipToken=4761921 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761921&api-version=2025-10-02-preview&skipToken=4761921 response: body: string: "{\n \"value\": []\n}" @@ -988,7 +988,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1043,7 +1043,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_with_extra_property.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_with_extra_property.yaml index e44f2747814..82b971e642f 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_with_extra_property.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_localdns_required_mode_with_extra_property.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -838,7 +838,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -950,7 +950,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -973,7 +973,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"5194e978-fe77-46b3-9ba6-d748c1feb73d\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761877\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761877\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761877\"\n}" headers: cache-control: - no-cache @@ -1019,7 +1019,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761877&api-version=2025-09-02-preview&skipToken=4761877 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761877&api-version=2025-10-02-preview&skipToken=4761877 response: body: string: "{\n \"value\": []\n}" @@ -1085,7 +1085,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1140,7 +1140,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinux3.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinux3.yaml index d97c0799f36..d5988a6e172 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinux3.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinux3.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -128,7 +128,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -775,7 +775,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -879,7 +879,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -899,7 +899,7 @@ interactions: \ \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n \ },\n \"eTag\": \"07856582-d05c-4cf5-a4b7-a343730b23e8\"\n }\n }\n - ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=3102618\\u0026api-version=2025-09-02-preview\\u0026skipToken=3102618\"\n}" + ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=3102618\\u0026api-version=2025-10-02-preview\\u0026skipToken=3102618\"\n}" headers: cache-control: - no-cache @@ -944,7 +944,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3102618&api-version=2025-09-02-preview&skipToken=3102618 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3102618&api-version=2025-10-02-preview&skipToken=3102618 response: body: string: "{\n \"value\": []\n}" @@ -1003,7 +1003,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1414,7 +1414,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1479,7 +1479,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-5.10.76-linuxkit-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinux3osguard.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinux3osguard.yaml index 3812215596e..8292c83033b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinux3osguard.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinux3osguard.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1587,7 +1587,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1698,7 +1698,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ @@ -1720,7 +1720,7 @@ interactions: : {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \ \ \"enableSecureBoot\": false\n },\n \"eTag\": \"90ea88f2-10c8-465e-bb92-828c9ea74c15\"\ \n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=3144537\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=3144537\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=3144537\"\n}" headers: cache-control: - no-cache @@ -1766,7 +1766,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3144537&api-version=2025-09-02-preview&skipToken=3144537 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3144537&api-version=2025-10-02-preview&skipToken=3144537 response: body: string: "{\n \"value\": []\n}" @@ -1829,7 +1829,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ @@ -2153,7 +2153,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ @@ -2220,7 +2220,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinuxosguard.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinuxosguard.yaml index a2b197c48e2..30264d34461 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinuxosguard.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_azurelinuxosguard.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -837,7 +837,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -948,7 +948,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ @@ -970,7 +970,7 @@ interactions: : {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \ \ \"enableSecureBoot\": false\n },\n \"eTag\": \"5fb00bcf-fb06-4a43-b0c9-b57797d2659a\"\ \n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=3144536\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=3144536\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=3144536\"\n}" headers: cache-control: - no-cache @@ -1016,7 +1016,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3144536&api-version=2025-09-02-preview&skipToken=3144536 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3144536&api-version=2025-10-02-preview&skipToken=3144536 response: body: string: "{\n \"value\": []\n}" @@ -1079,7 +1079,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ @@ -1454,7 +1454,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ @@ -1521,7 +1521,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_flatcar.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_flatcar.yaml index 51f2c950995..65dedbfa880 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_flatcar.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_flatcar.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -135,7 +135,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -703,7 +703,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -814,7 +814,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ @@ -837,7 +837,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"21cd2159-b0e6-4a8c-8df3-4b939228fdf9\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4688198\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4688198\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4688198\"\n}" headers: cache-control: - no-cache @@ -882,7 +882,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4688198&api-version=2025-09-02-preview&skipToken=4688198 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4688198&api-version=2025-10-02-preview&skipToken=4688198 response: body: string: "{\n \"value\": []\n}" @@ -943,7 +943,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ @@ -1310,7 +1310,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ @@ -1376,7 +1376,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_ubuntu2204.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_ubuntu2204.yaml index 65518c69000..ba1226e7801 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_ubuntu2204.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_ubuntu2204.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -128,7 +128,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -723,7 +723,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -825,7 +825,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -844,7 +844,7 @@ interactions: \"0\"\n },\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"40f25b6b-350f-4c4d-985c-96bc2ffade40\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2069644\\u0026api-version=2025-09-02-preview\\u0026skipToken=2069644\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2069644\\u0026api-version=2025-10-02-preview\\u0026skipToken=2069644\"\n}" headers: cache-control: - no-cache @@ -889,7 +889,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2069644&api-version=2025-09-02-preview&skipToken=2069644 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2069644&api-version=2025-10-02-preview&skipToken=2069644 response: body: string: "{\n \"value\": []\n}" @@ -948,7 +948,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1310,7 +1310,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1375,7 +1375,7 @@ interactions: User-Agent: - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2022.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2022.yaml index f25cd5c9849..4854a470077 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2022.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2022.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\": @@ -82,7 +82,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -147,7 +147,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -887,7 +887,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -979,7 +979,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1051,7 +1051,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1736,7 +1736,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1798,7 +1798,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2025.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2025.yaml index eb9e6b3693b..ccf5231d189 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2025.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2025.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.33\",\n \"capabilities\"\ @@ -257,7 +257,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -327,7 +327,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1060,7 +1060,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ @@ -1171,7 +1171,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ @@ -1194,7 +1194,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"7629722d-275b-4aeb-bc82-d53c1f0ecfe4\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=4633668\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4633668\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4633668\"\n}" headers: cache-control: - no-cache @@ -1240,7 +1240,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=4633668&api-version=2025-09-02-preview&skipToken=4633668 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=4633668&api-version=2025-10-02-preview&skipToken=4633668 response: body: string: "{\n \"value\": []\n}" @@ -1302,7 +1302,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ @@ -2136,7 +2136,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ @@ -2203,7 +2203,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windowsannual.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windowsannual.yaml index 8961b4b0cbc..207057d8941 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windowsannual.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windowsannual.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.29\",\n \"capabilities\": @@ -80,7 +80,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -150,7 +150,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -909,7 +909,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1009,7 +1009,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1028,7 +1028,7 @@ interactions: false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"6492b159-9bc5-40ea-8818-0037e850d450\"\n - \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=1160416\\u0026api-version=2025-09-02-preview\\u0026skipToken=1160416\"\n + \ }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?%24skipToken=1160416\\u0026api-version=2025-10-02-preview\\u0026skipToken=1160416\"\n }" headers: cache-control: @@ -1070,7 +1070,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=1160416&api-version=2025-09-02-preview&skipToken=1160416 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?$skipToken=1160416&api-version=2025-10-02-preview&skipToken=1160416 response: body: string: "{\n \"value\": []\n }" @@ -1127,7 +1127,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1686,7 +1686,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1747,7 +1747,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml index d3dcc4d788c..b05789a9ea3 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -592,7 +592,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -682,7 +682,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -752,7 +752,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1005,7 +1005,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1067,7 +1067,7 @@ interactions: - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_create_machines_pool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_create_machines_pool.yaml index 92807167282..531b799a6df 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_create_machines_pool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_create_machines_pool.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -128,7 +128,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -333,7 +333,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -436,7 +436,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -455,7 +455,7 @@ interactions: \"0\"\n },\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"b69f6f8e-d24a-498a-9f23-5cbc1d4f21a2\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2634511\\u0026api-version=2025-09-02-preview\\u0026skipToken=2634511\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2634511\\u0026api-version=2025-10-02-preview\\u0026skipToken=2634511\"\n}" headers: cache-control: - no-cache @@ -500,7 +500,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2634511&api-version=2025-09-02-preview&skipToken=2634511 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2634511&api-version=2025-10-02-preview&skipToken=2634511 response: body: string: "{\n \"value\": []\n}" @@ -559,7 +559,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -714,7 +714,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -768,7 +768,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_create_with_nsg_control.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_create_with_nsg_control.yaml index bd3a5a662ad..5ed89b23add 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_create_with_nsg_control.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_create_with_nsg_control.yaml @@ -422,7 +422,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -485,7 +485,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1052,7 +1052,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1144,7 +1144,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1222,7 +1222,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\",\n @@ -1636,7 +1636,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\",\n @@ -1707,7 +1707,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_machines.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_machines.yaml index 62eb7a791e7..1e9a42f2c6d 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_machines.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_machines.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -119,7 +119,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -716,7 +716,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -809,7 +809,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -827,7 +827,7 @@ interactions: \ \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n }\n }\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=744168\\u0026api-version=2025-09-02-preview\\u0026skipToken=744168\"\n + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=744168\\u0026api-version=2025-10-02-preview\\u0026skipToken=744168\"\n }" headers: cache-control: @@ -870,7 +870,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=744168&api-version=2025-09-02-preview&skipToken=744168 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=744168&api-version=2025-10-02-preview&skipToken=744168 response: body: string: "{\n \"value\": []\n }" @@ -925,7 +925,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1237,7 +1237,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1292,7 +1292,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/aks-c000003-28354493-vmss000000\",\n @@ -1357,7 +1357,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1390,7 +1390,7 @@ interactions: \ \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n }\n }\n }\n ],\n \"nextLink\": - \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=744187\\u0026api-version=2025-09-02-preview\\u0026skipToken=744187\"\n + \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=744187\\u0026api-version=2025-10-02-preview\\u0026skipToken=744187\"\n }" headers: cache-control: @@ -1433,7 +1433,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/deleteMachines?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/deleteMachines?api-version=2025-10-02-preview response: body: string: '' @@ -1646,7 +1646,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/machines/aks-c000003-28354493-vmss000001\",\n @@ -1699,7 +1699,7 @@ interactions: - AZURECLI/2.57.0 azsdk-python-azure-mgmt-containerservice/29.0.0b Python/3.8.10 (Linux-6.2.0-1019-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_with_ignore_pod_disruption_budget.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_with_ignore_pod_disruption_budget.yaml index 08a89589c64..b4fe44ad073 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_with_ignore_pod_disruption_budget.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_delete_with_ignore_pod_disruption_budget.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -688,7 +688,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -779,7 +779,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -849,7 +849,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1342,7 +1342,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1402,7 +1402,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1485,7 +1485,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000005?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000005\",\n @@ -1882,7 +1882,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000005?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000005\",\n @@ -1942,7 +1942,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -2030,7 +2030,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000005?api-version=2025-09-02-preview&ignore-pod-disruption-budget=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000005?api-version=2025-10-02-preview&ignore-pod-disruption-budget=true response: body: string: '' @@ -2077,7 +2077,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -2165,7 +2165,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-09-02-preview&ignore-pod-disruption-budget=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2025-10-02-preview&ignore-pod-disruption-budget=true response: body: string: '' @@ -2359,7 +2359,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_drain_timeout.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_drain_timeout.yaml index d71dbc0454b..73f8f581109 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_drain_timeout.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_drain_timeout.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -763,7 +763,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -857,7 +857,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -926,7 +926,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1354,7 +1354,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1413,7 +1413,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1483,7 +1483,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1639,7 +1639,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1700,7 +1700,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml index 775b12be3ec..9a7be9ed002 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -688,7 +688,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -779,7 +779,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeProfiles/default?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeProfiles/default?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeProfiles/default\",\n @@ -832,7 +832,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_max_blocked_nodes.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_max_blocked_nodes.yaml index f1c4152fae4..ce9b2dec93e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_max_blocked_nodes.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_max_blocked_nodes.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -128,7 +128,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -577,7 +577,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -680,7 +680,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -699,7 +699,7 @@ interactions: \"0\"\n },\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"10cee260-1172-454e-a2b6-d2ed5f01b083\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2294633\\u0026api-version=2025-09-02-preview\\u0026skipToken=2294633\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2294633\\u0026api-version=2025-10-02-preview\\u0026skipToken=2294633\"\n}" headers: cache-control: - no-cache @@ -745,7 +745,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2294633&api-version=2025-09-02-preview&skipToken=2294633 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2294633&api-version=2025-10-02-preview&skipToken=2294633 response: body: string: "{\n \"value\": []\n}" @@ -806,7 +806,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1125,7 +1125,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1188,7 +1188,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1264,7 +1264,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1430,7 +1430,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1495,7 +1495,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.10.14-linuxkit-aarch64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_max_unavailable.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_max_unavailable.yaml index bc0535094bf..de1f7f90943 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_max_unavailable.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_max_unavailable.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -129,7 +129,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -654,7 +654,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -755,7 +755,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -774,7 +774,7 @@ interactions: \"0\"\n },\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"c043a213-f76c-4630-bd33-524146b09eab\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=3196845\\u0026api-version=2025-09-02-preview\\u0026skipToken=3196845\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=3196845\\u0026api-version=2025-10-02-preview\\u0026skipToken=3196845\"\n}" headers: cache-control: - no-cache @@ -817,7 +817,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3196845&api-version=2025-09-02-preview&skipToken=3196845 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3196845&api-version=2025-10-02-preview&skipToken=3196845 response: body: string: "{\n \"value\": []\n}" @@ -874,7 +874,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1268,7 +1268,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1328,7 +1328,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1400,7 +1400,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1653,7 +1653,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1715,7 +1715,7 @@ interactions: User-Agent: - AZURECLI/2.69.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1020-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_node_soak_duration.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_node_soak_duration.yaml index 74d64984a43..d5f2e5bc703 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_node_soak_duration.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_node_soak_duration.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -739,7 +739,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -833,7 +833,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -898,7 +898,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1342,7 +1342,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1401,7 +1401,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1471,7 +1471,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1631,7 +1631,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n @@ -1692,7 +1692,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_snapshot.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_snapshot.yaml index 78a658fbab1..9d32f8e0a18 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_snapshot.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_snapshot.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ @@ -82,7 +82,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -146,7 +146,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -631,7 +631,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -776,7 +776,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ @@ -840,7 +840,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ @@ -902,7 +902,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' @@ -949,7 +949,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ @@ -1007,7 +1007,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"name\": \"s000006\",\n \"id\": \"\ @@ -1068,7 +1068,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000003'' @@ -1114,7 +1114,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ @@ -1193,7 +1193,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1679,7 +1679,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ @@ -1776,7 +1776,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000004\"\ @@ -1838,7 +1838,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ @@ -1908,7 +1908,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\"\ @@ -2354,7 +2354,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\"\ @@ -2417,7 +2417,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: '' @@ -2466,7 +2466,7 @@ interactions: - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.11 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml index b71f38982c6..37374562be4 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -832,7 +832,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -923,7 +923,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -993,7 +993,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1678,7 +1678,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1738,7 +1738,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1811,7 +1811,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1883,7 +1883,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -2092,7 +2092,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -2152,7 +2152,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -2225,7 +2225,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -2297,7 +2297,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -2746,7 +2746,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -2808,7 +2808,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_undrainable_node_behavior.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_undrainable_node_behavior.yaml index b96fd5f8b54..9dc1461b04a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_undrainable_node_behavior.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_undrainable_node_behavior.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -127,7 +127,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -589,7 +589,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -694,7 +694,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -714,7 +714,7 @@ interactions: : {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \ \ \"enableSecureBoot\": false\n },\n \"eTag\": \"9b06bef4-3593-40de-b070-addbc00938e9\"\ \n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2042131\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=2042131\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=2042131\"\n}" headers: cache-control: - no-cache @@ -755,7 +755,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2042131&api-version=2025-09-02-preview&skipToken=2042131 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2042131&api-version=2025-10-02-preview&skipToken=2042131 response: body: string: "{\n \"value\": []\n}" @@ -810,7 +810,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\"\ @@ -1144,7 +1144,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\"\ @@ -1203,7 +1203,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\"\ @@ -1274,7 +1274,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\"\ @@ -1428,7 +1428,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\"\ @@ -1489,7 +1489,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml index e41eeb94874..887b98a68a8 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -79,7 +79,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -742,7 +742,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -833,7 +833,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -926,7 +926,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2025-10-02-preview response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": @@ -977,7 +977,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1046,7 +1046,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1207,7 +1207,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1267,7 +1267,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1328,7 +1328,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1398,7 +1398,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1558,7 +1558,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1617,7 +1617,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_disabled_to_required.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_disabled_to_required.yaml index b5f29fef276..e4d88cb76de 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_disabled_to_required.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_disabled_to_required.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -738,7 +738,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -850,7 +850,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -873,7 +873,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"031bb3bc-1130-4d37-bcf9-4ce3bcd99b86\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761932\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761932\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761932\"\n}" headers: cache-control: - no-cache @@ -919,7 +919,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761932&api-version=2025-09-02-preview&skipToken=4761932 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761932&api-version=2025-10-02-preview&skipToken=4761932 response: body: string: "{\n \"value\": []\n}" @@ -982,7 +982,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1426,7 +1426,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1509,7 +1509,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1592,7 +1592,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1690,7 +1690,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2660,7 +2660,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2743,7 +2743,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2828,7 +2828,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_null_dnsOverrides.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_null_dnsOverrides.yaml index d3d701c3720..17f7671e536 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_null_dnsOverrides.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_null_dnsOverrides.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -899,7 +899,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -922,7 +922,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"f5560fa9-817f-4fc0-9868-79994ef1b2e5\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761955\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761955\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761955\"\n}" headers: cache-control: - no-cache @@ -967,7 +967,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761955&api-version=2025-09-02-preview&skipToken=4761955 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761955&api-version=2025-10-02-preview&skipToken=4761955 response: body: string: "{\n \"value\": []\n}" @@ -1026,7 +1026,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1493,7 +1493,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1557,7 +1557,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1623,7 +1623,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_number_dnsOverrides.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_number_dnsOverrides.yaml index 148ba3ed270..ea140069eec 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_number_dnsOverrides.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_number_dnsOverrides.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -737,7 +737,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -848,7 +848,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -871,7 +871,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"f820326e-48fa-4634-87c7-94bc141c658f\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761949\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761949\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761949\"\n}" headers: cache-control: - no-cache @@ -916,7 +916,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761949&api-version=2025-09-02-preview&skipToken=4761949 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761949&api-version=2025-10-02-preview&skipToken=4761949 response: body: string: "{\n \"value\": []\n}" @@ -975,7 +975,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1342,7 +1342,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1406,7 +1406,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1472,7 +1472,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_disabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_disabled.yaml index 8dc20ea915d..f3c47c97acd 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_disabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_disabled.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -923,7 +923,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"9ea16fcc-c2ff-4c83-8032-2437fbbbc97b\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761954\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761954\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761954\"\n}" headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761954&api-version=2025-09-02-preview&skipToken=4761954 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761954&api-version=2025-10-02-preview&skipToken=4761954 response: body: string: "{\n \"value\": []\n}" @@ -1044,7 +1044,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1488,7 +1488,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1571,7 +1571,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1654,7 +1654,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1752,7 +1752,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2771,7 +2771,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2854,7 +2854,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2939,7 +2939,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_localdnsconfig_with_extra_property.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_localdnsconfig_with_extra_property.yaml index 6247d1ab197..8a54f8d49be 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_localdnsconfig_with_extra_property.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_localdnsconfig_with_extra_property.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -923,7 +923,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"c5ad0e5c-3841-45ab-95f1-666c58899fe8\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761974\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761974\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761974\"\n}" headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761974&api-version=2025-09-02-preview&skipToken=4761974 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761974&api-version=2025-10-02-preview&skipToken=4761974 response: body: string: "{\n \"value\": []\n}" @@ -1044,7 +1044,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1488,7 +1488,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1571,7 +1571,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1654,7 +1654,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1764,7 +1764,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1950,7 +1950,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2033,7 +2033,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2118,7 +2118,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_localdnsconfig_with_extra_property_in_dnsOverrides.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_localdnsconfig_with_extra_property_in_dnsOverrides.yaml index 83d24629119..7e5d37c8105 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_localdnsconfig_with_extra_property_in_dnsOverrides.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_localdns_required_to_localdnsconfig_with_extra_property_in_dnsOverrides.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -839,7 +839,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -951,7 +951,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -974,7 +974,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"6e0198ec-3c6d-4ec7-974f-1eb4d5be141e\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4762040\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4762040\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4762040\"\n}" headers: cache-control: - no-cache @@ -1020,7 +1020,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4762040&api-version=2025-09-02-preview&skipToken=4762040 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4762040&api-version=2025-10-02-preview&skipToken=4762040 response: body: string: "{\n \"value\": []\n}" @@ -1095,7 +1095,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1539,7 +1539,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1622,7 +1622,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1705,7 +1705,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1815,7 +1815,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2001,7 +2001,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2084,7 +2084,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2169,7 +2169,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml index 9e078e016e1..dfcb5bdf466 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -79,7 +79,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -742,7 +742,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -833,7 +833,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -926,7 +926,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2025-10-02-preview response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": @@ -977,7 +977,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1047,7 +1047,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1208,7 +1208,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1268,7 +1268,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1329,7 +1329,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1399,7 +1399,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1559,7 +1559,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1618,7 +1618,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -1679,7 +1679,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_config.yaml index 94735e12210..d51e0e22ff4 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_config.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -738,7 +738,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -849,7 +849,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -870,7 +870,7 @@ interactions: \ \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\"\ : false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"cd73645e-c798-44b8-bdca-32fc3b6d9f18\"\ \n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4176843\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4176843\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4176843\"\n}" headers: cache-control: - no-cache @@ -915,7 +915,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4176843&api-version=2025-09-02-preview&skipToken=4176843 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4176843&api-version=2025-10-02-preview&skipToken=4176843 response: body: string: "{\n \"value\": []\n}" @@ -974,7 +974,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1391,7 +1391,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1455,7 +1455,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1546,7 +1546,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2320,7 +2320,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2403,7 +2403,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2488,7 +2488,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_empty_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_empty_config.yaml index 49c2b2ca5d8..f0c1815343e 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_empty_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_empty_config.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -923,7 +923,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"7f766a6e-5801-416d-8b7e-27eccbe4cc7c\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4761971\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4761971\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4761971\"\n}" headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761971&api-version=2025-09-02-preview&skipToken=4761971 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4761971&api-version=2025-10-02-preview&skipToken=4761971 response: body: string: "{\n \"value\": []\n}" @@ -1044,7 +1044,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1488,7 +1488,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1571,7 +1571,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1669,7 +1669,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1725,7 +1725,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_invalid_mode.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_invalid_mode.yaml index 9ec7f07589c..ee630664585 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_invalid_mode.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_invalid_mode.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -838,7 +838,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -950,7 +950,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -973,7 +973,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"79db95ac-1b2b-4598-bfd9-9a2f5497c6d2\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4762010\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4762010\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4762010\"\n}" headers: cache-control: - no-cache @@ -1019,7 +1019,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4762010&api-version=2025-09-02-preview&skipToken=4762010 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4762010&api-version=2025-10-02-preview&skipToken=4762010 response: body: string: "{\n \"value\": []\n}" @@ -1094,7 +1094,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1538,7 +1538,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1621,7 +1621,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1719,7 +1719,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1775,7 +1775,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_invalid_kubedns.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_invalid_kubedns.yaml index fe3adccb477..7e0288f0f39 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_invalid_kubedns.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_invalid_kubedns.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -923,7 +923,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"00a0998d-2fa6-4388-9aa8-fa93a02ace87\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4762000\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4762000\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4762000\"\n}" headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4762000&api-version=2025-09-02-preview&skipToken=4762000 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4762000&api-version=2025-10-02-preview&skipToken=4762000 response: body: string: "{\n \"value\": []\n}" @@ -1044,7 +1044,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1539,7 +1539,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1622,7 +1622,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1723,7 +1723,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1779,7 +1779,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_invalid_vnetdns.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_invalid_vnetdns.yaml index a798b1bf520..aa5ba0836b2 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_invalid_vnetdns.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_invalid_vnetdns.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -923,7 +923,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"6706d96a-f67c-47a7-9e40-ebb9e80f6c8b\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4762066\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4762066\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4762066\"\n}" headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4762066&api-version=2025-09-02-preview&skipToken=4762066 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4762066&api-version=2025-10-02-preview&skipToken=4762066 response: body: string: "{\n \"value\": []\n}" @@ -1044,7 +1044,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1437,7 +1437,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1520,7 +1520,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1621,7 +1621,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"code\": \"InvalidParameter\",\n \"details\": null,\n \"message\"\ @@ -1677,7 +1677,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_to_dns_partial_puts.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_to_dns_partial_puts.yaml index 6c73247de20..775fa5707f2 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_to_dns_partial_puts.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_localdns_required_mode_to_dns_partial_puts.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -130,7 +130,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -788,7 +788,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -923,7 +923,7 @@ interactions: \ \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \ \ \"eTag\": \"faf64678-ec04-4559-bb44-cc79562cafe0\"\n }\n }\n ],\n \"\ nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=4762021\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=4762021\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=4762021\"\n}" headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4762021&api-version=2025-09-02-preview&skipToken=4762021 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=4762021&api-version=2025-10-02-preview&skipToken=4762021 response: body: string: "{\n \"value\": []\n}" @@ -1032,7 +1032,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1476,7 +1476,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1559,7 +1559,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1642,7 +1642,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -1746,7 +1746,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2716,7 +2716,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2799,7 +2799,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -2903,7 +2903,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -3775,7 +3775,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -3858,7 +3858,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\"\ @@ -3943,7 +3943,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_nsg_control.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_nsg_control.yaml index 738cd6c3334..249643d69d7 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_nsg_control.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_with_nsg_control.yaml @@ -423,7 +423,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -487,7 +487,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1359,7 +1359,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1450,7 +1450,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\",\n @@ -1526,7 +1526,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\",\n @@ -1695,7 +1695,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\",\n @@ -1765,7 +1765,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_operations_cmds.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_operations_cmds.yaml index 15495b52258..f55daf48059 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_operations_cmds.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_operations_cmds.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1061-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -127,7 +127,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1061-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -727,7 +727,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1061-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -830,7 +830,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1061-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/operations/latest?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/operations/latest?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/operations/7632f263-49e7-4584-9bee-80e94979bd73\",\n @@ -877,7 +877,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-5.15.0-1061-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/operations/7632f263-49e7-4584-9bee-80e94979bd73?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/operations/7632f263-49e7-4584-9bee-80e94979bd73?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/operations/7632f263-49e7-4584-9bee-80e94979bd73\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_run_blue_green_upgrade.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_run_blue_green_upgrade.yaml index 4c5f097a88b..cca95fe06da 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_run_blue_green_upgrade.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_run_blue_green_upgrade.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.33\",\n \"capabilities\": @@ -248,7 +248,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -361,7 +361,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1008,7 +1008,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1112,7 +1112,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -1132,7 +1132,7 @@ interactions: {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": \"LocalUser\",\n \"enableVTPM\": false,\n \"enableSecureBoot\": false\n },\n \"eTag\": \"80c4baab-d331-476e-9a46-6a8ec8c73cbb\"\n }\n - \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2663075\\u0026api-version=2025-09-02-preview\\u0026skipToken=2663075\"\n}" + \ }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=2663075\\u0026api-version=2025-10-02-preview\\u0026skipToken=2663075\"\n}" headers: cache-control: - no-cache @@ -1177,7 +1177,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2663075&api-version=2025-09-02-preview&skipToken=2663075 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=2663075&api-version=2025-10-02-preview&skipToken=2663075 response: body: string: "{\n \"value\": []\n}" @@ -1236,7 +1236,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -1647,7 +1647,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -1711,7 +1711,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -1789,7 +1789,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -2660,7 +2660,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/np000003\",\n @@ -2727,7 +2727,7 @@ interactions: User-Agent: - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.9.6 (macOS-15.6.1-arm64-arm-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_skip_gpu_driver_install.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_skip_gpu_driver_install.yaml index da156b3d2d7..99166f31147 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_skip_gpu_driver_install.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_skip_gpu_driver_install.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.55.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.11.6 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.28\",\n \"capabilities\": @@ -81,7 +81,7 @@ interactions: - AZURECLI/2.55.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.11.6 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -145,7 +145,7 @@ interactions: - AZURECLI/2.55.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.11.6 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -710,7 +710,7 @@ interactions: - AZURECLI/2.55.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.11.6 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -809,7 +809,7 @@ interactions: - AZURECLI/2.55.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.11.6 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -826,7 +826,7 @@ interactions: \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202312.06.0\",\n \ \"upgradeSettings\": {\n \"maxSurge\": \"10%\"\n },\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\": {\n \"sshAccess\": - \"LocalUser\"\n }\n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=3132798\\u0026api-version=2025-09-02-preview\\u0026skipToken=3132798\"\n + \"LocalUser\"\n }\n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=3132798\\u0026api-version=2025-10-02-preview\\u0026skipToken=3132798\"\n }" headers: cache-control: @@ -870,7 +870,7 @@ interactions: - AZURECLI/2.55.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.11.6 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3132798&api-version=2025-09-02-preview&skipToken=3132798 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3132798&api-version=2025-10-02-preview&skipToken=3132798 response: body: string: "{\n \"value\": []\n }" @@ -927,7 +927,7 @@ interactions: - AZURECLI/2.55.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.11.6 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1599,7 +1599,7 @@ interactions: - AZURECLI/2.55.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.11.6 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1660,7 +1660,7 @@ interactions: - AZURECLI/2.55.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.11.6 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml index 8050cf3cbb1..c821e8ed10c 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.25\",\n \"capabilities\": @@ -81,7 +81,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -145,7 +145,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -723,7 +723,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -862,7 +862,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -925,7 +925,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' @@ -972,7 +972,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -1031,7 +1031,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -1091,7 +1091,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000003'' @@ -1137,7 +1137,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -1218,7 +1218,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -1896,7 +1896,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -1991,7 +1991,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: '' @@ -2040,7 +2040,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot_update.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot_update.yaml index f0bd2b7fb2a..6723fda39f9 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot_update.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot_update.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.26\",\n \"capabilities\": @@ -81,7 +81,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -145,7 +145,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -723,7 +723,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -864,7 +864,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -927,7 +927,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' @@ -974,7 +974,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -1033,7 +1033,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -1093,7 +1093,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000003'' @@ -1157,7 +1157,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -1813,7 +1813,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -1900,7 +1900,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -1991,7 +1991,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -2080,7 +2080,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -2418,7 +2418,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -2513,7 +2513,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: '' @@ -2562,7 +2562,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot_upgrade.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot_upgrade.yaml index fe39965e291..11c1f7ef688 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot_upgrade.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot_upgrade.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.25\",\n \"capabilities\": @@ -81,7 +81,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -145,7 +145,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -772,7 +772,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -913,7 +913,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -976,7 +976,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' @@ -1023,7 +1023,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -1082,7 +1082,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -1142,7 +1142,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000003'' @@ -1206,7 +1206,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -1833,7 +1833,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -1924,7 +1924,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -2015,7 +2015,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: "{\n \"name\": \"s000005\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005\",\n @@ -2105,7 +2105,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -3643,7 +3643,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n @@ -3738,7 +3738,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2025-10-02-preview response: body: string: '' @@ -3787,7 +3787,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclustersnapshots/s000005?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml index 23c12a516ae..110fb9fe73a 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -810,7 +810,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -905,7 +905,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1002,7 +1002,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/stop?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/stop?api-version=2025-10-02-preview response: body: string: '' @@ -1290,7 +1290,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/start?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/start?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start_private_cluster.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start_private_cluster.yaml index 2d74718b0e1..93b0cf97797 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start_private_cluster.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start_private_cluster.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -120,7 +120,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1169,7 +1169,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1267,7 +1267,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1371,7 +1371,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/stop?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/stop?api-version=2025-10-02-preview response: body: string: '' @@ -1747,7 +1747,7 @@ interactions: - AZURECLI/2.54.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-6.2.0-1016-azure-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/start?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/start?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_agentpool_os_sku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_agentpool_os_sku.yaml index c68909d003e..1cc70b43ee0 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_agentpool_os_sku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_agentpool_os_sku.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -127,7 +127,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -589,7 +589,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -692,7 +692,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -764,7 +764,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -1548,7 +1548,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -1609,7 +1609,7 @@ interactions: User-Agent: - AZURECLI/2.63.0 (DOCKER) azsdk-python-core/1.28.0 Python/3.11.7 (Linux-6.5.0-1025-azure-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_enable_acns.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_enable_acns.yaml index d21acc14e4a..0c2063ebddb 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_enable_acns.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_enable_acns.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -815,7 +815,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -918,7 +918,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1055,7 +1055,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1449,7 +1449,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1555,7 +1555,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1695,7 +1695,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2042,7 +2042,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2150,7 +2150,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' @@ -2200,7 +2200,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -2268,7 +2268,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2981,7 +2981,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3083,7 +3083,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3218,7 +3218,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3563,7 +3563,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3667,7 +3667,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3804,7 +3804,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4102,7 +4102,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -4208,7 +4208,7 @@ interactions: User-Agent: - AZURECLI/2.66.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-5.15.167.4-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_enable_cost_analysis.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_enable_cost_analysis.yaml index c9462d5a245..86510d01e54 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_enable_cost_analysis.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_enable_cost_analysis.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -592,7 +592,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -686,7 +686,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -812,7 +812,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1785,7 +1785,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1879,7 +1879,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2005,7 +2005,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2564,7 +2564,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2660,7 +2660,7 @@ interactions: - AZURECLI/2.51.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.10.12 (Linux-5.15.0-1042-azure-x86_64-with) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml index 8d9caff381c..58b3b99ffca 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -79,7 +79,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -934,7 +934,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1025,7 +1025,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1143,7 +1143,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1480,7 +1480,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1572,7 +1572,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1691,7 +1691,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2027,7 +2027,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_node_provisioning_profile.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_node_provisioning_profile.yaml index 2ab93a0a92a..d42ff27e380 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_node_provisioning_profile.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_node_provisioning_profile.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -84,7 +84,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -793,7 +793,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -898,7 +898,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1036,7 +1036,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1540,7 +1540,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1647,7 +1647,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.10.12 (Linux-6.8.0-1029-azure-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_outbound_from_slb_to_natgateway.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_outbound_from_slb_to_natgateway.yaml index 7645e27376a..63364c7881b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_outbound_from_slb_to_natgateway.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_outbound_from_slb_to_natgateway.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -126,7 +126,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -608,7 +608,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -703,7 +703,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -826,7 +826,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1270,7 +1270,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_run_command.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_run_command.yaml index 687f1bf6c96..e4f8dc36bf1 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_run_command.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_run_command.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -83,7 +83,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -781,7 +781,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -890,7 +890,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1031,7 +1031,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1442,7 +1442,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1552,7 +1552,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1694,7 +1694,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2104,7 +2104,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml index 2d2089b39c2..09a16462725 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -121,7 +121,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -880,7 +880,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -971,7 +971,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1089,7 +1089,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1425,7 +1425,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1518,7 +1518,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_upgrade_settings.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_upgrade_settings.yaml index a3949e05370..4f5a801a513 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_upgrade_settings.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_upgrade_settings.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -728,7 +728,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -821,7 +821,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -944,7 +944,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1273,7 +1273,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1367,7 +1367,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1492,7 +1492,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1822,7 +1822,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1917,7 +1917,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2043,7 +2043,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2373,7 +2373,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2468,7 +2468,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2594,7 +2594,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2878,7 +2878,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2975,7 +2975,7 @@ interactions: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/25.0.0b Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azuremonitorappmonitoring.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azuremonitorappmonitoring.yaml index ac90bc49ca3..7f04c46d1c6 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azuremonitorappmonitoring.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azuremonitorappmonitoring.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -84,7 +84,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -557,7 +557,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -659,7 +659,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -795,7 +795,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1144,7 +1144,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1249,7 +1249,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1388,7 +1388,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1678,7 +1678,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1785,7 +1785,7 @@ interactions: User-Agent: - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azuremonitormetrics.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azuremonitormetrics.yaml index 2eb65d7a13d..36e5fef3688 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azuremonitormetrics.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_azuremonitormetrics.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -896,7 +896,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1006,7 +1006,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -5776,7 +5776,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -6346,7 +6346,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -6458,7 +6458,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -7599,7 +7599,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -8010,7 +8010,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -8122,7 +8122,7 @@ interactions: User-Agent: - AZURECLI/2.75.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_disable_upstream_kubescheduler_user_configuration.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_disable_upstream_kubescheduler_user_configuration.yaml index 88a0b5c5236..3e0e8d1cb84 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_disable_upstream_kubescheduler_user_configuration.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_disable_upstream_kubescheduler_user_configuration.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.33\",\n \"capabilities\": @@ -249,7 +249,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -321,7 +321,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1130,7 +1130,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1236,7 +1236,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1377,7 +1377,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1790,7 +1790,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1897,7 +1897,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_enable_ai_toolchain_operator.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_enable_ai_toolchain_operator.yaml index 9d01560a4e0..643a901ec39 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_enable_ai_toolchain_operator.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_enable_ai_toolchain_operator.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -82,7 +82,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -553,7 +553,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -651,7 +651,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -782,7 +782,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1185,7 +1185,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1284,7 +1284,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1416,7 +1416,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1888,7 +1888,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1989,7 +1989,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.10 (Linux-5.15.0-1051-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_enable_upstream_kubescheduler_user_configuration.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_enable_upstream_kubescheduler_user_configuration.yaml index 5f5b64bc959..0bc207d1592 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_enable_upstream_kubescheduler_user_configuration.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_enable_upstream_kubescheduler_user_configuration.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.33\",\n \"capabilities\": @@ -248,7 +248,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -315,7 +315,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -961,7 +961,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1065,7 +1065,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1204,7 +1204,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1567,7 +1567,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1674,7 +1674,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.11.0-26-generic-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_image_cleaner.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_image_cleaner.yaml index 3dd7b4ddcf9..6addcdf58ab 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_image_cleaner.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_image_cleaner.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1251,7 +1251,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1343,7 +1343,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1465,7 +1465,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1802,7 +1802,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1894,7 +1894,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2016,7 +2016,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2353,7 +2353,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_image_integrity.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_image_integrity.yaml index 2320c50eb8e..6221c74cf18 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_image_integrity.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_image_integrity.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -742,7 +742,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -840,7 +840,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -970,7 +970,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1420,7 +1420,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1518,7 +1518,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1646,7 +1646,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1977,7 +1977,7 @@ interactions: - AZURECLI/2.53.0 azsdk-python-azure-mgmt-containerservice/27.0.0b Python/3.8.10 (Linux-6.2.0-1015-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_keda.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_keda.yaml index d8c755eaa3f..b2829f8ce50 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_keda.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_keda.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -79,7 +79,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -694,7 +694,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -785,7 +785,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -905,7 +905,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1386,7 +1386,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1478,7 +1478,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1597,7 +1597,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1934,7 +1934,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2028,7 +2028,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_kms_pmk.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_kms_pmk.yaml index 0c1049899ff..0cc62590bf7 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_kms_pmk.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_kms_pmk.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.33\",\n \"capabilities\"\ @@ -181,7 +181,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -296,7 +296,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1054,7 +1054,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1165,7 +1165,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1313,7 +1313,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1991,7 +1991,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -2105,7 +2105,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 (DOCKER) azsdk-python-core/1.35.0 Python/3.12.9 (Linux-6.8.0-1031-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_kube_proxy_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_kube_proxy_config.yaml index 32e98305971..450f097b8a7 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_kube_proxy_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_kube_proxy_config.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.0.0b Python/3.10.6 (Linux-5.15.0-1037-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -125,7 +125,7 @@ interactions: - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.0.0b Python/3.10.6 (Linux-5.15.0-1037-azure-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -620,7 +620,7 @@ interactions: - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.0.0b Python/3.10.6 (Linux-5.15.0-1037-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -708,7 +708,7 @@ interactions: - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.0.0b Python/3.10.6 (Linux-5.15.0-1037-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -830,7 +830,7 @@ interactions: - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.0.0b Python/3.10.6 (Linux-5.15.0-1037-azure-x86_64-with-glibc2.35) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1216,7 +1216,7 @@ interactions: - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.0.0b Python/3.10.6 (Linux-5.15.0-1037-azure-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1311,7 +1311,7 @@ interactions: - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.0.0b Python/3.10.6 (Linux-5.15.0-1037-azure-x86_64-with-glibc2.35) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_managed_system_pool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_managed_system_pool.yaml index 95ec3f5cb87..bc5aa40538b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_managed_system_pool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_managed_system_pool.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -123,7 +123,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -621,7 +621,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -730,7 +730,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -863,7 +863,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1470,7 +1470,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1579,7 +1579,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -1647,7 +1647,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -1814,7 +1814,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.9 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml index b680527f9d5..cffa2e3e243 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -79,7 +79,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -742,7 +742,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -833,7 +833,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -953,7 +953,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1339,7 +1339,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_optimized_addon_scaling.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_optimized_addon_scaling.yaml index 1f5b4fb267f..32bef4e4682 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_optimized_addon_scaling.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_optimized_addon_scaling.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.25\",\n \"capabilities\": @@ -81,7 +81,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -188,7 +188,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -658,7 +658,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -755,7 +755,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -885,7 +885,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1337,7 +1337,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1435,7 +1435,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1566,7 +1566,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1918,7 +1918,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2018,7 +2018,7 @@ interactions: - AZURECLI/2.55.0 azsdk-python-azure-mgmt-containerservice/28.0.0b Python/3.8.2 (macOS-12.7.2-x86_64-i386-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_premium_sku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_premium_sku.yaml index 311aa25ebbb..181e4168ec7 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_premium_sku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_premium_sku.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.29\",\n \"capabilities\": @@ -78,7 +78,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -145,7 +145,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -829,7 +829,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -929,7 +929,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1061,7 +1061,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1549,7 +1549,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1649,7 +1649,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1781,7 +1781,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2077,7 +2077,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2179,7 +2179,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1016-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_transit_encryption_type.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_transit_encryption_type.yaml index 26627441c8a..c9a176908ef 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_transit_encryption_type.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_transit_encryption_type.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1148,7 +1148,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1257,7 +1257,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1400,7 +1400,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1810,7 +1810,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1921,7 +1921,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_transit_encryption_type_and_advanced_networkpolicies.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_transit_encryption_type_and_advanced_networkpolicies.yaml index 97e4ffce9ca..617059e03a7 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_transit_encryption_type_and_advanced_networkpolicies.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_transit_encryption_type_and_advanced_networkpolicies.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -85,7 +85,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -798,7 +798,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -907,7 +907,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1050,7 +1050,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1460,7 +1460,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1571,7 +1571,7 @@ interactions: User-Agent: - AZURECLI/2.74.0 azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml index e1b4eddfbb0..0ba5e6e1c6d 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml @@ -18,7 +18,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -723,7 +723,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -815,7 +815,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -881,7 +881,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1566,7 +1566,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1626,7 +1626,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1763,7 +1763,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3117,7 +3117,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3222,7 +3222,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -3293,7 +3293,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: '' @@ -3342,7 +3342,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml index 51d463a08fa..5c60a9b35d2 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml @@ -18,7 +18,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -823,7 +823,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -915,7 +915,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -981,7 +981,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1618,7 +1618,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1678,7 +1678,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1817,7 +1817,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3270,7 +3270,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3374,7 +3374,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -3449,7 +3449,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_workload_identity.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_workload_identity.yaml index f306920dcb3..24859d3dc36 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_workload_identity.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_workload_identity.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -712,7 +712,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -805,7 +805,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -927,7 +927,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1265,7 +1265,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1358,7 +1358,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1480,7 +1480,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1818,7 +1818,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml index f2d9cae1eb0..581b7cb160b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml @@ -78,7 +78,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -558,7 +558,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -648,7 +648,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -740,7 +740,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeNodeImageVersion?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeNodeImageVersion?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -802,7 +802,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml index 34e880bd3c2..d7094db157a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml @@ -78,7 +78,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2437,7 +2437,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -2529,7 +2529,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeNodeImageVersion?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeNodeImageVersion?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -2591,7 +2591,7 @@ interactions: - AZURECLI/2.42.0 azsdk-python-azure-mgmt-containerservice/20.7.0b Python/3.8.10 (Linux-5.15.0-1023-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml index c4134c7dbf9..9becee21f35 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.25\",\n \"capabilities\": @@ -82,7 +82,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -147,7 +147,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -837,7 +837,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -929,7 +929,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -999,7 +999,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1732,7 +1732,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1792,7 +1792,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1931,7 +1931,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3576,7 +3576,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -3681,7 +3681,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -3755,7 +3755,7 @@ interactions: WindowsContainerRuntime: - containerd method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -3919,7 +3919,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -3981,7 +3981,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_upgrade_settings.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_upgrade_settings.yaml index a9583d362ee..2d6727e3a49 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_upgrade_settings.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_upgrade_settings.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' @@ -83,7 +83,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -677,7 +677,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -777,7 +777,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -911,7 +911,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1208,7 +1208,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1309,7 +1309,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1444,7 +1444,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1741,7 +1741,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1842,7 +1842,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -1977,7 +1977,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2274,7 +2274,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2375,7 +2375,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2510,7 +2510,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2807,7 +2807,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n @@ -2910,7 +2910,7 @@ interactions: User-Agent: - AZURECLI/2.59.0 azsdk-python-core/1.28.0 Python/3.8.10 (Linux-6.5.0-1018-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml index 2133f63c1f9..6d72c9092b2 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml @@ -16,7 +16,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2025-10-02-preview response: body: string: "{\n \"values\": [\n {\n \"version\": \"1.25\",\n \"capabilities\": diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_identity_binding_usages.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_identity_binding_usages.yaml index 0b071d05663..f73ceaa3524 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_identity_binding_usages.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_identity_binding_usages.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.11 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -80,7 +80,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.11 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -819,7 +819,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.11 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -919,7 +919,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.11 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings?api-version=2025-10-02-preview response: body: string: '{"value":[]}' @@ -1031,7 +1031,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.11 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.36) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004?api-version=2025-10-02-preview response: body: string: '{"eTag":"d3a3e81f-6774-48d9-84e1-1464013f4e13","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004","name":"cliib000004","properties":{"managedIdentity":{"clientId":"00000000-0000-0000-0000-000000000001","objectId":"00000000-0000-0000-0000-000000000001","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"oidcIssuer":{"oidcIssuerUrl":"https://ib.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/5b551762-5048-439a-a7e8-252e4895ec1f"},"provisioningState":"Creating"},"type":"Microsoft.ContainerService/managedClusters/identityBindings"}' @@ -1235,7 +1235,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.11 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004?api-version=2025-10-02-preview response: body: string: '{"eTag":"89db45d1-681d-4ccd-af9f-b872cf5c33a3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004","name":"cliib000004","properties":{"managedIdentity":{"clientId":"00000000-0000-0000-0000-000000000001","objectId":"00000000-0000-0000-0000-000000000001","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"oidcIssuer":{"oidcIssuerUrl":"https://ib.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/5b551762-5048-439a-a7e8-252e4895ec1f"},"provisioningState":"Succeeded"},"type":"Microsoft.ContainerService/managedClusters/identityBindings"}' @@ -1287,7 +1287,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.11 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings?api-version=2025-10-02-preview response: body: string: '{"value":[{"eTag":"89db45d1-681d-4ccd-af9f-b872cf5c33a3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004","name":"cliib000004","properties":{"managedIdentity":{"clientId":"00000000-0000-0000-0000-000000000001","objectId":"00000000-0000-0000-0000-000000000001","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"oidcIssuer":{"oidcIssuerUrl":"https://ib.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/5b551762-5048-439a-a7e8-252e4895ec1f"},"provisioningState":"Succeeded"},"type":"Microsoft.ContainerService/managedClusters/identityBindings"}]}' @@ -1339,7 +1339,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.11 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004?api-version=2025-10-02-preview response: body: string: '{"eTag":"89db45d1-681d-4ccd-af9f-b872cf5c33a3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004","name":"cliib000004","properties":{"managedIdentity":{"clientId":"00000000-0000-0000-0000-000000000001","objectId":"00000000-0000-0000-0000-000000000001","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"oidcIssuer":{"oidcIssuerUrl":"https://ib.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/5b551762-5048-439a-a7e8-252e4895ec1f"},"provisioningState":"Succeeded"},"type":"Microsoft.ContainerService/managedClusters/identityBindings"}' @@ -1393,7 +1393,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.11 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.36) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004?api-version=2025-10-02-preview response: body: string: '{"eTag":"06c73d3b-815a-4706-bdb4-d9f5e8f410b3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings/cliib000004","name":"cliib000004","properties":{"managedIdentity":{"clientId":"00000000-0000-0000-0000-000000000001","objectId":"00000000-0000-0000-0000-000000000001","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"oidcIssuer":{"oidcIssuerUrl":"https://ib.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/5b551762-5048-439a-a7e8-252e4895ec1f"},"provisioningState":"Deleting"},"type":"Microsoft.ContainerService/managedClusters/identityBindings"}' @@ -1497,7 +1497,7 @@ interactions: User-Agent: - AZURECLI/2.76.0 azsdk-python-core/1.35.0 Python/3.12.11 (Linux-6.8.0-1030-azure-x86_64-with-glibc2.36) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/identityBindings?api-version=2025-10-02-preview response: body: string: '{"value":[]}' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_node_public_ip_tags.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_node_public_ip_tags.yaml index 41ccf431518..299be43a626 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_node_public_ip_tags.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_node_public_ip_tags.yaml @@ -17,7 +17,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -84,7 +84,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1007,7 +1007,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -1101,7 +1101,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\",\n @@ -1177,7 +1177,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004\",\n @@ -1730,7 +1730,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000004\",\n @@ -1793,7 +1793,7 @@ interactions: - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_vms_agentpool_type.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_vms_agentpool_type.yaml index 407d5df453e..538bda57266 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_vms_agentpool_type.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_vms_agentpool_type.yaml @@ -16,7 +16,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' @@ -88,7 +88,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -651,7 +651,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -764,7 +764,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -912,7 +912,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1473,7 +1473,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ @@ -1587,7 +1587,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2025-10-02-preview response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ @@ -1611,7 +1611,7 @@ interactions: \ \"virtualMachineNodesStatus\": [\n {\n \"size\": \"Standard_D4s_v3\"\ ,\n \"count\": 3\n }\n ],\n \"eTag\": \"30c595a0-1704-4dcd-8463-6a14a8fc4f4b\"\ \n }\n }\n ],\n \"nextLink\": \"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?%24skipToken=3772683\\\ - u0026api-version=2025-09-02-preview\\u0026skipToken=3772683\"\n}" + u0026api-version=2025-10-02-preview\\u0026skipToken=3772683\"\n}" headers: cache-control: - no-cache @@ -1657,7 +1657,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3772683&api-version=2025-09-02-preview&skipToken=3772683 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?$skipToken=3772683&api-version=2025-10-02-preview&skipToken=3772683 response: body: string: "{\n \"value\": []\n}" @@ -1719,7 +1719,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -2040,7 +2040,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -2106,7 +2106,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -2185,7 +2185,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -2501,7 +2501,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -2567,7 +2567,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -2647,7 +2647,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -2964,7 +2964,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -3032,7 +3032,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -3114,7 +3114,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -3481,7 +3481,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -3549,7 +3549,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -3631,7 +3631,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -3850,7 +3850,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003?api-version=2025-10-02-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/n000003\"\ @@ -3918,7 +3918,7 @@ interactions: User-Agent: - AZURECLI/2.73.0 (DOCKER) azsdk-python-core/1.31.0 Python/3.12.3 (Linux-6.8.0-1027-azure-x86_64-with-glibc2.38) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-09-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2025-10-02-preview response: body: string: '' diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_configuration.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_configuration.py index d89db14361f..42926627813 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_configuration.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_configuration.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from typing import Any, Optional, TYPE_CHECKING +from typing import Any, TYPE_CHECKING from azure.core.pipeline import policies from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy @@ -14,7 +14,6 @@ from ._version import VERSION if TYPE_CHECKING: - from azure.core import AzureClouds from azure.core.credentials import TokenCredential @@ -28,22 +27,13 @@ class ContainerServiceClientConfiguration: # pylint: disable=too-many-instance- :type credential: ~azure.core.credentials.TokenCredential :param subscription_id: The ID of the target subscription. The value must be an UUID. Required. :type subscription_id: str - :param cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is - None. - :type cloud_setting: ~azure.core.AzureClouds - :keyword api_version: Api Version. Default value is "2025-09-02-preview". Note that overriding + :keyword api_version: Api Version. Default value is "2025-10-02-preview". Note that overriding this default value may result in unsupported behavior. :paramtype api_version: str """ - def __init__( - self, - credential: "TokenCredential", - subscription_id: str, - cloud_setting: Optional["AzureClouds"] = None, - **kwargs: Any - ) -> None: - api_version: str = kwargs.pop("api_version", "2025-09-02-preview") + def __init__(self, credential: "TokenCredential", subscription_id: str, **kwargs: Any) -> None: + api_version: str = kwargs.pop("api_version", "2025-10-02-preview") if credential is None: raise ValueError("Parameter 'credential' must not be None.") @@ -52,7 +42,6 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.cloud_setting = cloud_setting self.api_version = api_version self.credential_scopes = kwargs.pop("credential_scopes", ["https://management.azure.com/.default"]) kwargs.setdefault("sdk_moniker", "mgmt-containerservice/{}".format(VERSION)) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py index 29bc3b7c9a2..412373acc6c 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py @@ -7,19 +7,17 @@ # -------------------------------------------------------------------------- from copy import deepcopy -from typing import Any, Optional, TYPE_CHECKING, cast +from typing import Any, TYPE_CHECKING from typing_extensions import Self from azure.core.pipeline import policies from azure.core.rest import HttpRequest, HttpResponse -from azure.core.settings import settings from azure.mgmt.core import ARMPipelineClient from azure.mgmt.core.policies import ARMAutoResourceProviderRegistrationPolicy -from azure.mgmt.core.tools import get_arm_endpoints from . import models as _models from ._configuration import ContainerServiceClientConfiguration -from ._utils.serialization import Deserializer, Serializer +from ._serialization import Deserializer, Serializer from .operations import ( AgentPoolsOperations, ContainerServiceOperations, @@ -43,7 +41,6 @@ ) if TYPE_CHECKING: - from azure.core import AzureClouds from azure.core.credentials import TokenCredential @@ -100,12 +97,9 @@ class ContainerServiceClient: # pylint: disable=too-many-instance-attributes :type credential: ~azure.core.credentials.TokenCredential :param subscription_id: The ID of the target subscription. The value must be an UUID. Required. :type subscription_id: str - :param base_url: Service URL. Default value is None. + :param base_url: Service URL. Default value is "https://management.azure.com". :type base_url: str - :keyword cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is - None. - :paramtype cloud_setting: ~azure.core.AzureClouds - :keyword api_version: Api Version. Default value is "2025-09-02-preview". Note that overriding + :keyword api_version: Api Version. Default value is "2025-10-02-preview". Note that overriding this default value may result in unsupported behavior. :paramtype api_version: str :keyword int polling_interval: Default waiting time between two polls for LRO operations if no @@ -116,24 +110,12 @@ def __init__( self, credential: "TokenCredential", subscription_id: str, - base_url: Optional[str] = None, - *, - cloud_setting: Optional["AzureClouds"] = None, + base_url: str = "https://management.azure.com", **kwargs: Any ) -> None: - _cloud = cloud_setting or settings.current.azure_cloud # type: ignore - _endpoints = get_arm_endpoints(_cloud) - if not base_url: - base_url = _endpoints["resource_manager"] - credential_scopes = kwargs.pop("credential_scopes", _endpoints["credential_scopes"]) self._config = ContainerServiceClientConfiguration( - credential=credential, - subscription_id=subscription_id, - cloud_setting=cloud_setting, - credential_scopes=credential_scopes, - **kwargs + credential=credential, subscription_id=subscription_id, **kwargs ) - _policies = kwargs.pop("policies", None) if _policies is None: _policies = [ @@ -152,7 +134,7 @@ def __init__( policies.SensitiveHeaderCleanupPolicy(**kwargs) if self._config.redirect_policy else None, self._config.http_logging_policy, ] - self._client: ARMPipelineClient = ARMPipelineClient(base_url=cast(str, base_url), policies=_policies, **kwargs) + self._client: ARMPipelineClient = ARMPipelineClient(base_url=base_url, policies=_policies, **kwargs) client_models = {k: v for k, v in _models.__dict__.items() if isinstance(v, type)} self._serialize = Serializer(client_models) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_patch.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_patch.py index 87676c65a8f..8bcb627aa47 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_patch.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_patch.py @@ -7,9 +7,9 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ +from typing import List - -__all__: list[str] = [] # Add all objects you want publicly available to users at this package level +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_serialization.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_serialization.py new file mode 100644 index 00000000000..f5187701d7b --- /dev/null +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_serialization.py @@ -0,0 +1,2032 @@ +# pylint: disable=line-too-long,useless-suppression,too-many-lines +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +# pyright: reportUnnecessaryTypeIgnoreComment=false + +from base64 import b64decode, b64encode +import calendar +import datetime +import decimal +import email +from enum import Enum +import json +import logging +import re +import sys +import codecs +from typing import ( + Dict, + Any, + cast, + Optional, + Union, + AnyStr, + IO, + Mapping, + Callable, + MutableMapping, + List, +) + +try: + from urllib import quote # type: ignore +except ImportError: + from urllib.parse import quote +import xml.etree.ElementTree as ET + +import isodate # type: ignore +from typing_extensions import Self + +from azure.core.exceptions import DeserializationError, SerializationError +from azure.core.serialization import NULL as CoreNull + +_BOM = codecs.BOM_UTF8.decode(encoding="utf-8") + +JSON = MutableMapping[str, Any] + + +class RawDeserializer: + + # Accept "text" because we're open minded people... + JSON_REGEXP = re.compile(r"^(application|text)/([a-z+.]+\+)?json$") + + # Name used in context + CONTEXT_NAME = "deserialized_data" + + @classmethod + def deserialize_from_text(cls, data: Optional[Union[AnyStr, IO]], content_type: Optional[str] = None) -> Any: + """Decode data according to content-type. + + Accept a stream of data as well, but will be load at once in memory for now. + + If no content-type, will return the string version (not bytes, not stream) + + :param data: Input, could be bytes or stream (will be decoded with UTF8) or text + :type data: str or bytes or IO + :param str content_type: The content type. + :return: The deserialized data. + :rtype: object + """ + if hasattr(data, "read"): + # Assume a stream + data = cast(IO, data).read() + + if isinstance(data, bytes): + data_as_str = data.decode(encoding="utf-8-sig") + else: + # Explain to mypy the correct type. + data_as_str = cast(str, data) + + # Remove Byte Order Mark if present in string + data_as_str = data_as_str.lstrip(_BOM) + + if content_type is None: + return data + + if cls.JSON_REGEXP.match(content_type): + try: + return json.loads(data_as_str) + except ValueError as err: + raise DeserializationError("JSON is invalid: {}".format(err), err) from err + elif "xml" in (content_type or []): + try: + + try: + if isinstance(data, unicode): # type: ignore + # If I'm Python 2.7 and unicode XML will scream if I try a "fromstring" on unicode string + data_as_str = data_as_str.encode(encoding="utf-8") # type: ignore + except NameError: + pass + + return ET.fromstring(data_as_str) # nosec + except ET.ParseError as err: + # It might be because the server has an issue, and returned JSON with + # content-type XML.... + # So let's try a JSON load, and if it's still broken + # let's flow the initial exception + def _json_attemp(data): + try: + return True, json.loads(data) + except ValueError: + return False, None # Don't care about this one + + success, json_result = _json_attemp(data) + if success: + return json_result + # If i'm here, it's not JSON, it's not XML, let's scream + # and raise the last context in this block (the XML exception) + # The function hack is because Py2.7 messes up with exception + # context otherwise. + _LOGGER.critical("Wasn't XML not JSON, failing") + raise DeserializationError("XML is invalid") from err + elif content_type.startswith("text/"): + return data_as_str + raise DeserializationError("Cannot deserialize content-type: {}".format(content_type)) + + @classmethod + def deserialize_from_http_generics(cls, body_bytes: Optional[Union[AnyStr, IO]], headers: Mapping) -> Any: + """Deserialize from HTTP response. + + Use bytes and headers to NOT use any requests/aiohttp or whatever + specific implementation. + Headers will tested for "content-type" + + :param bytes body_bytes: The body of the response. + :param dict headers: The headers of the response. + :returns: The deserialized data. + :rtype: object + """ + # Try to use content-type from headers if available + content_type = None + if "content-type" in headers: + content_type = headers["content-type"].split(";")[0].strip().lower() + # Ouch, this server did not declare what it sent... + # Let's guess it's JSON... + # Also, since Autorest was considering that an empty body was a valid JSON, + # need that test as well.... + else: + content_type = "application/json" + + if body_bytes: + return cls.deserialize_from_text(body_bytes, content_type) + return None + + +_LOGGER = logging.getLogger(__name__) + +try: + _long_type = long # type: ignore +except NameError: + _long_type = int + +TZ_UTC = datetime.timezone.utc + +_FLATTEN = re.compile(r"(? None: + self.additional_properties: Optional[Dict[str, Any]] = {} + for k in kwargs: # pylint: disable=consider-using-dict-items + if k not in self._attribute_map: + _LOGGER.warning("%s is not a known attribute of class %s and will be ignored", k, self.__class__) + elif k in self._validation and self._validation[k].get("readonly", False): + _LOGGER.warning("Readonly attribute %s will be ignored in class %s", k, self.__class__) + else: + setattr(self, k, kwargs[k]) + + def __eq__(self, other: Any) -> bool: + """Compare objects by comparing all attributes. + + :param object other: The object to compare + :returns: True if objects are equal + :rtype: bool + """ + if isinstance(other, self.__class__): + return self.__dict__ == other.__dict__ + return False + + def __ne__(self, other: Any) -> bool: + """Compare objects by comparing all attributes. + + :param object other: The object to compare + :returns: True if objects are not equal + :rtype: bool + """ + return not self.__eq__(other) + + def __str__(self) -> str: + return str(self.__dict__) + + @classmethod + def enable_additional_properties_sending(cls) -> None: + cls._attribute_map["additional_properties"] = {"key": "", "type": "{object}"} + + @classmethod + def is_xml_model(cls) -> bool: + try: + cls._xml_map # type: ignore + except AttributeError: + return False + return True + + @classmethod + def _create_xml_node(cls): + """Create XML node. + + :returns: The XML node + :rtype: xml.etree.ElementTree.Element + """ + try: + xml_map = cls._xml_map # type: ignore + except AttributeError: + xml_map = {} + + return _create_xml_node(xml_map.get("name", cls.__name__), xml_map.get("prefix", None), xml_map.get("ns", None)) + + def serialize(self, keep_readonly: bool = False, **kwargs: Any) -> JSON: + """Return the JSON that would be sent to server from this model. + + This is an alias to `as_dict(full_restapi_key_transformer, keep_readonly=False)`. + + If you want XML serialization, you can pass the kwargs is_xml=True. + + :param bool keep_readonly: If you want to serialize the readonly attributes + :returns: A dict JSON compatible object + :rtype: dict + """ + serializer = Serializer(self._infer_class_models()) + return serializer._serialize( # type: ignore # pylint: disable=protected-access + self, keep_readonly=keep_readonly, **kwargs + ) + + def as_dict( + self, + keep_readonly: bool = True, + key_transformer: Callable[[str, Dict[str, Any], Any], Any] = attribute_transformer, + **kwargs: Any + ) -> JSON: + """Return a dict that can be serialized using json.dump. + + Advanced usage might optionally use a callback as parameter: + + .. code::python + + def my_key_transformer(key, attr_desc, value): + return key + + Key is the attribute name used in Python. Attr_desc + is a dict of metadata. Currently contains 'type' with the + msrest type and 'key' with the RestAPI encoded key. + Value is the current value in this object. + + The string returned will be used to serialize the key. + If the return type is a list, this is considered hierarchical + result dict. + + See the three examples in this file: + + - attribute_transformer + - full_restapi_key_transformer + - last_restapi_key_transformer + + If you want XML serialization, you can pass the kwargs is_xml=True. + + :param bool keep_readonly: If you want to serialize the readonly attributes + :param function key_transformer: A key transformer function. + :returns: A dict JSON compatible object + :rtype: dict + """ + serializer = Serializer(self._infer_class_models()) + return serializer._serialize( # type: ignore # pylint: disable=protected-access + self, key_transformer=key_transformer, keep_readonly=keep_readonly, **kwargs + ) + + @classmethod + def _infer_class_models(cls): + try: + str_models = cls.__module__.rsplit(".", 1)[0] + models = sys.modules[str_models] + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + if cls.__name__ not in client_models: + raise ValueError("Not Autorest generated code") + except Exception: # pylint: disable=broad-exception-caught + # Assume it's not Autorest generated (tests?). Add ourselves as dependencies. + client_models = {cls.__name__: cls} + return client_models + + @classmethod + def deserialize(cls, data: Any, content_type: Optional[str] = None) -> Self: + """Parse a str using the RestAPI syntax and return a model. + + :param str data: A str using RestAPI structure. JSON by default. + :param str content_type: JSON by default, set application/xml if XML. + :returns: An instance of this model + :raises DeserializationError: if something went wrong + :rtype: Self + """ + deserializer = Deserializer(cls._infer_class_models()) + return deserializer(cls.__name__, data, content_type=content_type) # type: ignore + + @classmethod + def from_dict( + cls, + data: Any, + key_extractors: Optional[Callable[[str, Dict[str, Any], Any], Any]] = None, + content_type: Optional[str] = None, + ) -> Self: + """Parse a dict using given key extractor return a model. + + By default consider key + extractors (rest_key_case_insensitive_extractor, attribute_key_case_insensitive_extractor + and last_rest_key_case_insensitive_extractor) + + :param dict data: A dict using RestAPI structure + :param function key_extractors: A key extractor function. + :param str content_type: JSON by default, set application/xml if XML. + :returns: An instance of this model + :raises DeserializationError: if something went wrong + :rtype: Self + """ + deserializer = Deserializer(cls._infer_class_models()) + deserializer.key_extractors = ( # type: ignore + [ # type: ignore + attribute_key_case_insensitive_extractor, + rest_key_case_insensitive_extractor, + last_rest_key_case_insensitive_extractor, + ] + if key_extractors is None + else key_extractors + ) + return deserializer(cls.__name__, data, content_type=content_type) # type: ignore + + @classmethod + def _flatten_subtype(cls, key, objects): + if "_subtype_map" not in cls.__dict__: + return {} + result = dict(cls._subtype_map[key]) + for valuetype in cls._subtype_map[key].values(): + result.update(objects[valuetype]._flatten_subtype(key, objects)) # pylint: disable=protected-access + return result + + @classmethod + def _classify(cls, response, objects): + """Check the class _subtype_map for any child classes. + We want to ignore any inherited _subtype_maps. + + :param dict response: The initial data + :param dict objects: The class objects + :returns: The class to be used + :rtype: class + """ + for subtype_key in cls.__dict__.get("_subtype_map", {}).keys(): + subtype_value = None + + if not isinstance(response, ET.Element): + rest_api_response_key = cls._get_rest_key_parts(subtype_key)[-1] + subtype_value = response.get(rest_api_response_key, None) or response.get(subtype_key, None) + else: + subtype_value = xml_key_extractor(subtype_key, cls._attribute_map[subtype_key], response) + if subtype_value: + # Try to match base class. Can be class name only + # (bug to fix in Autorest to support x-ms-discriminator-name) + if cls.__name__ == subtype_value: + return cls + flatten_mapping_type = cls._flatten_subtype(subtype_key, objects) + try: + return objects[flatten_mapping_type[subtype_value]] # type: ignore + except KeyError: + _LOGGER.warning( + "Subtype value %s has no mapping, use base class %s.", + subtype_value, + cls.__name__, + ) + break + else: + _LOGGER.warning("Discriminator %s is absent or null, use base class %s.", subtype_key, cls.__name__) + break + return cls + + @classmethod + def _get_rest_key_parts(cls, attr_key): + """Get the RestAPI key of this attr, split it and decode part + :param str attr_key: Attribute key must be in attribute_map. + :returns: A list of RestAPI part + :rtype: list + """ + rest_split_key = _FLATTEN.split(cls._attribute_map[attr_key]["key"]) + return [_decode_attribute_map_key(key_part) for key_part in rest_split_key] + + +def _decode_attribute_map_key(key): + """This decode a key in an _attribute_map to the actual key we want to look at + inside the received data. + + :param str key: A key string from the generated code + :returns: The decoded key + :rtype: str + """ + return key.replace("\\.", ".") + + +class Serializer: # pylint: disable=too-many-public-methods + """Request object model serializer.""" + + basic_types = {str: "str", int: "int", bool: "bool", float: "float"} + + _xml_basic_types_serializers = {"bool": lambda x: str(x).lower()} + days = {0: "Mon", 1: "Tue", 2: "Wed", 3: "Thu", 4: "Fri", 5: "Sat", 6: "Sun"} + months = { + 1: "Jan", + 2: "Feb", + 3: "Mar", + 4: "Apr", + 5: "May", + 6: "Jun", + 7: "Jul", + 8: "Aug", + 9: "Sep", + 10: "Oct", + 11: "Nov", + 12: "Dec", + } + validation = { + "min_length": lambda x, y: len(x) < y, + "max_length": lambda x, y: len(x) > y, + "minimum": lambda x, y: x < y, + "maximum": lambda x, y: x > y, + "minimum_ex": lambda x, y: x <= y, + "maximum_ex": lambda x, y: x >= y, + "min_items": lambda x, y: len(x) < y, + "max_items": lambda x, y: len(x) > y, + "pattern": lambda x, y: not re.match(y, x, re.UNICODE), + "unique": lambda x, y: len(x) != len(set(x)), + "multiple": lambda x, y: x % y != 0, + } + + def __init__(self, classes: Optional[Mapping[str, type]] = None) -> None: + self.serialize_type = { + "iso-8601": Serializer.serialize_iso, + "rfc-1123": Serializer.serialize_rfc, + "unix-time": Serializer.serialize_unix, + "duration": Serializer.serialize_duration, + "date": Serializer.serialize_date, + "time": Serializer.serialize_time, + "decimal": Serializer.serialize_decimal, + "long": Serializer.serialize_long, + "bytearray": Serializer.serialize_bytearray, + "base64": Serializer.serialize_base64, + "object": self.serialize_object, + "[]": self.serialize_iter, + "{}": self.serialize_dict, + } + self.dependencies: Dict[str, type] = dict(classes) if classes else {} + self.key_transformer = full_restapi_key_transformer + self.client_side_validation = True + + def _serialize( # pylint: disable=too-many-nested-blocks, too-many-branches, too-many-statements, too-many-locals + self, target_obj, data_type=None, **kwargs + ): + """Serialize data into a string according to type. + + :param object target_obj: The data to be serialized. + :param str data_type: The type to be serialized from. + :rtype: str, dict + :raises SerializationError: if serialization fails. + :returns: The serialized data. + """ + key_transformer = kwargs.get("key_transformer", self.key_transformer) + keep_readonly = kwargs.get("keep_readonly", False) + if target_obj is None: + return None + + attr_name = None + class_name = target_obj.__class__.__name__ + + if data_type: + return self.serialize_data(target_obj, data_type, **kwargs) + + if not hasattr(target_obj, "_attribute_map"): + data_type = type(target_obj).__name__ + if data_type in self.basic_types.values(): + return self.serialize_data(target_obj, data_type, **kwargs) + + # Force "is_xml" kwargs if we detect a XML model + try: + is_xml_model_serialization = kwargs["is_xml"] + except KeyError: + is_xml_model_serialization = kwargs.setdefault("is_xml", target_obj.is_xml_model()) + + serialized = {} + if is_xml_model_serialization: + serialized = target_obj._create_xml_node() # pylint: disable=protected-access + try: + attributes = target_obj._attribute_map # pylint: disable=protected-access + for attr, attr_desc in attributes.items(): + attr_name = attr + if not keep_readonly and target_obj._validation.get( # pylint: disable=protected-access + attr_name, {} + ).get("readonly", False): + continue + + if attr_name == "additional_properties" and attr_desc["key"] == "": + if target_obj.additional_properties is not None: + serialized.update(target_obj.additional_properties) + continue + try: + + orig_attr = getattr(target_obj, attr) + if is_xml_model_serialization: + pass # Don't provide "transformer" for XML for now. Keep "orig_attr" + else: # JSON + keys, orig_attr = key_transformer(attr, attr_desc.copy(), orig_attr) + keys = keys if isinstance(keys, list) else [keys] + + kwargs["serialization_ctxt"] = attr_desc + new_attr = self.serialize_data(orig_attr, attr_desc["type"], **kwargs) + + if is_xml_model_serialization: + xml_desc = attr_desc.get("xml", {}) + xml_name = xml_desc.get("name", attr_desc["key"]) + xml_prefix = xml_desc.get("prefix", None) + xml_ns = xml_desc.get("ns", None) + if xml_desc.get("attr", False): + if xml_ns: + ET.register_namespace(xml_prefix, xml_ns) + xml_name = "{{{}}}{}".format(xml_ns, xml_name) + serialized.set(xml_name, new_attr) # type: ignore + continue + if xml_desc.get("text", False): + serialized.text = new_attr # type: ignore + continue + if isinstance(new_attr, list): + serialized.extend(new_attr) # type: ignore + elif isinstance(new_attr, ET.Element): + # If the down XML has no XML/Name, + # we MUST replace the tag with the local tag. But keeping the namespaces. + if "name" not in getattr(orig_attr, "_xml_map", {}): + splitted_tag = new_attr.tag.split("}") + if len(splitted_tag) == 2: # Namespace + new_attr.tag = "}".join([splitted_tag[0], xml_name]) + else: + new_attr.tag = xml_name + serialized.append(new_attr) # type: ignore + else: # That's a basic type + # Integrate namespace if necessary + local_node = _create_xml_node(xml_name, xml_prefix, xml_ns) + local_node.text = str(new_attr) + serialized.append(local_node) # type: ignore + else: # JSON + for k in reversed(keys): # type: ignore + new_attr = {k: new_attr} + + _new_attr = new_attr + _serialized = serialized + for k in keys: # type: ignore + if k not in _serialized: + _serialized.update(_new_attr) # type: ignore + _new_attr = _new_attr[k] # type: ignore + _serialized = _serialized[k] + except ValueError as err: + if isinstance(err, SerializationError): + raise + + except (AttributeError, KeyError, TypeError) as err: + msg = "Attribute {} in object {} cannot be serialized.\n{}".format(attr_name, class_name, str(target_obj)) + raise SerializationError(msg) from err + return serialized + + def body(self, data, data_type, **kwargs): + """Serialize data intended for a request body. + + :param object data: The data to be serialized. + :param str data_type: The type to be serialized from. + :rtype: dict + :raises SerializationError: if serialization fails. + :raises ValueError: if data is None + :returns: The serialized request body + """ + + # Just in case this is a dict + internal_data_type_str = data_type.strip("[]{}") + internal_data_type = self.dependencies.get(internal_data_type_str, None) + try: + is_xml_model_serialization = kwargs["is_xml"] + except KeyError: + if internal_data_type and issubclass(internal_data_type, Model): + is_xml_model_serialization = kwargs.setdefault("is_xml", internal_data_type.is_xml_model()) + else: + is_xml_model_serialization = False + if internal_data_type and not isinstance(internal_data_type, Enum): + try: + deserializer = Deserializer(self.dependencies) + # Since it's on serialization, it's almost sure that format is not JSON REST + # We're not able to deal with additional properties for now. + deserializer.additional_properties_detection = False + if is_xml_model_serialization: + deserializer.key_extractors = [ # type: ignore + attribute_key_case_insensitive_extractor, + ] + else: + deserializer.key_extractors = [ + rest_key_case_insensitive_extractor, + attribute_key_case_insensitive_extractor, + last_rest_key_case_insensitive_extractor, + ] + data = deserializer._deserialize(data_type, data) # pylint: disable=protected-access + except DeserializationError as err: + raise SerializationError("Unable to build a model: " + str(err)) from err + + return self._serialize(data, data_type, **kwargs) + + def url(self, name, data, data_type, **kwargs): + """Serialize data intended for a URL path. + + :param str name: The name of the URL path parameter. + :param object data: The data to be serialized. + :param str data_type: The type to be serialized from. + :rtype: str + :returns: The serialized URL path + :raises TypeError: if serialization fails. + :raises ValueError: if data is None + """ + try: + output = self.serialize_data(data, data_type, **kwargs) + if data_type == "bool": + output = json.dumps(output) + + if kwargs.get("skip_quote") is True: + output = str(output) + output = output.replace("{", quote("{")).replace("}", quote("}")) + else: + output = quote(str(output), safe="") + except SerializationError as exc: + raise TypeError("{} must be type {}.".format(name, data_type)) from exc + return output + + def query(self, name, data, data_type, **kwargs): + """Serialize data intended for a URL query. + + :param str name: The name of the query parameter. + :param object data: The data to be serialized. + :param str data_type: The type to be serialized from. + :rtype: str, list + :raises TypeError: if serialization fails. + :raises ValueError: if data is None + :returns: The serialized query parameter + """ + try: + # Treat the list aside, since we don't want to encode the div separator + if data_type.startswith("["): + internal_data_type = data_type[1:-1] + do_quote = not kwargs.get("skip_quote", False) + return self.serialize_iter(data, internal_data_type, do_quote=do_quote, **kwargs) + + # Not a list, regular serialization + output = self.serialize_data(data, data_type, **kwargs) + if data_type == "bool": + output = json.dumps(output) + if kwargs.get("skip_quote") is True: + output = str(output) + else: + output = quote(str(output), safe="") + except SerializationError as exc: + raise TypeError("{} must be type {}.".format(name, data_type)) from exc + return str(output) + + def header(self, name, data, data_type, **kwargs): + """Serialize data intended for a request header. + + :param str name: The name of the header. + :param object data: The data to be serialized. + :param str data_type: The type to be serialized from. + :rtype: str + :raises TypeError: if serialization fails. + :raises ValueError: if data is None + :returns: The serialized header + """ + try: + if data_type in ["[str]"]: + data = ["" if d is None else d for d in data] + + output = self.serialize_data(data, data_type, **kwargs) + if data_type == "bool": + output = json.dumps(output) + except SerializationError as exc: + raise TypeError("{} must be type {}.".format(name, data_type)) from exc + return str(output) + + def serialize_data(self, data, data_type, **kwargs): + """Serialize generic data according to supplied data type. + + :param object data: The data to be serialized. + :param str data_type: The type to be serialized from. + :raises AttributeError: if required data is None. + :raises ValueError: if data is None + :raises SerializationError: if serialization fails. + :returns: The serialized data. + :rtype: str, int, float, bool, dict, list + """ + if data is None: + raise ValueError("No value for given attribute") + + try: + if data is CoreNull: + return None + if data_type in self.basic_types.values(): + return self.serialize_basic(data, data_type, **kwargs) + + if data_type in self.serialize_type: + return self.serialize_type[data_type](data, **kwargs) + + # If dependencies is empty, try with current data class + # It has to be a subclass of Enum anyway + enum_type = self.dependencies.get(data_type, data.__class__) + if issubclass(enum_type, Enum): + return Serializer.serialize_enum(data, enum_obj=enum_type) + + iter_type = data_type[0] + data_type[-1] + if iter_type in self.serialize_type: + return self.serialize_type[iter_type](data, data_type[1:-1], **kwargs) + + except (ValueError, TypeError) as err: + msg = "Unable to serialize value: {!r} as type: {!r}." + raise SerializationError(msg.format(data, data_type)) from err + return self._serialize(data, **kwargs) + + @classmethod + def _get_custom_serializers(cls, data_type, **kwargs): # pylint: disable=inconsistent-return-statements + custom_serializer = kwargs.get("basic_types_serializers", {}).get(data_type) + if custom_serializer: + return custom_serializer + if kwargs.get("is_xml", False): + return cls._xml_basic_types_serializers.get(data_type) + + @classmethod + def serialize_basic(cls, data, data_type, **kwargs): + """Serialize basic builting data type. + Serializes objects to str, int, float or bool. + + Possible kwargs: + - basic_types_serializers dict[str, callable] : If set, use the callable as serializer + - is_xml bool : If set, use xml_basic_types_serializers + + :param obj data: Object to be serialized. + :param str data_type: Type of object in the iterable. + :rtype: str, int, float, bool + :return: serialized object + """ + custom_serializer = cls._get_custom_serializers(data_type, **kwargs) + if custom_serializer: + return custom_serializer(data) + if data_type == "str": + return cls.serialize_unicode(data) + return eval(data_type)(data) # nosec # pylint: disable=eval-used + + @classmethod + def serialize_unicode(cls, data): + """Special handling for serializing unicode strings in Py2. + Encode to UTF-8 if unicode, otherwise handle as a str. + + :param str data: Object to be serialized. + :rtype: str + :return: serialized object + """ + try: # If I received an enum, return its value + return data.value + except AttributeError: + pass + + try: + if isinstance(data, unicode): # type: ignore + # Don't change it, JSON and XML ElementTree are totally able + # to serialize correctly u'' strings + return data + except NameError: + return str(data) + return str(data) + + def serialize_iter(self, data, iter_type, div=None, **kwargs): + """Serialize iterable. + + Supported kwargs: + - serialization_ctxt dict : The current entry of _attribute_map, or same format. + serialization_ctxt['type'] should be same as data_type. + - is_xml bool : If set, serialize as XML + + :param list data: Object to be serialized. + :param str iter_type: Type of object in the iterable. + :param str div: If set, this str will be used to combine the elements + in the iterable into a combined string. Default is 'None'. + Defaults to False. + :rtype: list, str + :return: serialized iterable + """ + if isinstance(data, str): + raise SerializationError("Refuse str type as a valid iter type.") + + serialization_ctxt = kwargs.get("serialization_ctxt", {}) + is_xml = kwargs.get("is_xml", False) + + serialized = [] + for d in data: + try: + serialized.append(self.serialize_data(d, iter_type, **kwargs)) + except ValueError as err: + if isinstance(err, SerializationError): + raise + serialized.append(None) + + if kwargs.get("do_quote", False): + serialized = ["" if s is None else quote(str(s), safe="") for s in serialized] + + if div: + serialized = ["" if s is None else str(s) for s in serialized] + serialized = div.join(serialized) + + if "xml" in serialization_ctxt or is_xml: + # XML serialization is more complicated + xml_desc = serialization_ctxt.get("xml", {}) + xml_name = xml_desc.get("name") + if not xml_name: + xml_name = serialization_ctxt["key"] + + # Create a wrap node if necessary (use the fact that Element and list have "append") + is_wrapped = xml_desc.get("wrapped", False) + node_name = xml_desc.get("itemsName", xml_name) + if is_wrapped: + final_result = _create_xml_node(xml_name, xml_desc.get("prefix", None), xml_desc.get("ns", None)) + else: + final_result = [] + # All list elements to "local_node" + for el in serialized: + if isinstance(el, ET.Element): + el_node = el + else: + el_node = _create_xml_node(node_name, xml_desc.get("prefix", None), xml_desc.get("ns", None)) + if el is not None: # Otherwise it writes "None" :-p + el_node.text = str(el) + final_result.append(el_node) + return final_result + return serialized + + def serialize_dict(self, attr, dict_type, **kwargs): + """Serialize a dictionary of objects. + + :param dict attr: Object to be serialized. + :param str dict_type: Type of object in the dictionary. + :rtype: dict + :return: serialized dictionary + """ + serialization_ctxt = kwargs.get("serialization_ctxt", {}) + serialized = {} + for key, value in attr.items(): + try: + serialized[self.serialize_unicode(key)] = self.serialize_data(value, dict_type, **kwargs) + except ValueError as err: + if isinstance(err, SerializationError): + raise + serialized[self.serialize_unicode(key)] = None + + if "xml" in serialization_ctxt: + # XML serialization is more complicated + xml_desc = serialization_ctxt["xml"] + xml_name = xml_desc["name"] + + final_result = _create_xml_node(xml_name, xml_desc.get("prefix", None), xml_desc.get("ns", None)) + for key, value in serialized.items(): + ET.SubElement(final_result, key).text = value + return final_result + + return serialized + + def serialize_object(self, attr, **kwargs): # pylint: disable=too-many-return-statements + """Serialize a generic object. + This will be handled as a dictionary. If object passed in is not + a basic type (str, int, float, dict, list) it will simply be + cast to str. + + :param dict attr: Object to be serialized. + :rtype: dict or str + :return: serialized object + """ + if attr is None: + return None + if isinstance(attr, ET.Element): + return attr + obj_type = type(attr) + if obj_type in self.basic_types: + return self.serialize_basic(attr, self.basic_types[obj_type], **kwargs) + if obj_type is _long_type: + return self.serialize_long(attr) + if obj_type is str: + return self.serialize_unicode(attr) + if obj_type is datetime.datetime: + return self.serialize_iso(attr) + if obj_type is datetime.date: + return self.serialize_date(attr) + if obj_type is datetime.time: + return self.serialize_time(attr) + if obj_type is datetime.timedelta: + return self.serialize_duration(attr) + if obj_type is decimal.Decimal: + return self.serialize_decimal(attr) + + # If it's a model or I know this dependency, serialize as a Model + if obj_type in self.dependencies.values() or isinstance(attr, Model): + return self._serialize(attr) + + if obj_type == dict: + serialized = {} + for key, value in attr.items(): + try: + serialized[self.serialize_unicode(key)] = self.serialize_object(value, **kwargs) + except ValueError: + serialized[self.serialize_unicode(key)] = None + return serialized + + if obj_type == list: + serialized = [] + for obj in attr: + try: + serialized.append(self.serialize_object(obj, **kwargs)) + except ValueError: + pass + return serialized + return str(attr) + + @staticmethod + def serialize_enum(attr, enum_obj=None): + try: + result = attr.value + except AttributeError: + result = attr + try: + enum_obj(result) # type: ignore + return result + except ValueError as exc: + for enum_value in enum_obj: # type: ignore + if enum_value.value.lower() == str(attr).lower(): + return enum_value.value + error = "{!r} is not valid value for enum {!r}" + raise SerializationError(error.format(attr, enum_obj)) from exc + + @staticmethod + def serialize_bytearray(attr, **kwargs): # pylint: disable=unused-argument + """Serialize bytearray into base-64 string. + + :param str attr: Object to be serialized. + :rtype: str + :return: serialized base64 + """ + return b64encode(attr).decode() + + @staticmethod + def serialize_base64(attr, **kwargs): # pylint: disable=unused-argument + """Serialize str into base-64 string. + + :param str attr: Object to be serialized. + :rtype: str + :return: serialized base64 + """ + encoded = b64encode(attr).decode("ascii") + return encoded.strip("=").replace("+", "-").replace("/", "_") + + @staticmethod + def serialize_decimal(attr, **kwargs): # pylint: disable=unused-argument + """Serialize Decimal object to float. + + :param decimal attr: Object to be serialized. + :rtype: float + :return: serialized decimal + """ + return float(attr) + + @staticmethod + def serialize_long(attr, **kwargs): # pylint: disable=unused-argument + """Serialize long (Py2) or int (Py3). + + :param int attr: Object to be serialized. + :rtype: int/long + :return: serialized long + """ + return _long_type(attr) + + @staticmethod + def serialize_date(attr, **kwargs): # pylint: disable=unused-argument + """Serialize Date object into ISO-8601 formatted string. + + :param Date attr: Object to be serialized. + :rtype: str + :return: serialized date + """ + if isinstance(attr, str): + attr = isodate.parse_date(attr) + t = "{:04}-{:02}-{:02}".format(attr.year, attr.month, attr.day) + return t + + @staticmethod + def serialize_time(attr, **kwargs): # pylint: disable=unused-argument + """Serialize Time object into ISO-8601 formatted string. + + :param datetime.time attr: Object to be serialized. + :rtype: str + :return: serialized time + """ + if isinstance(attr, str): + attr = isodate.parse_time(attr) + t = "{:02}:{:02}:{:02}".format(attr.hour, attr.minute, attr.second) + if attr.microsecond: + t += ".{:02}".format(attr.microsecond) + return t + + @staticmethod + def serialize_duration(attr, **kwargs): # pylint: disable=unused-argument + """Serialize TimeDelta object into ISO-8601 formatted string. + + :param TimeDelta attr: Object to be serialized. + :rtype: str + :return: serialized duration + """ + if isinstance(attr, str): + attr = isodate.parse_duration(attr) + return isodate.duration_isoformat(attr) + + @staticmethod + def serialize_rfc(attr, **kwargs): # pylint: disable=unused-argument + """Serialize Datetime object into RFC-1123 formatted string. + + :param Datetime attr: Object to be serialized. + :rtype: str + :raises TypeError: if format invalid. + :return: serialized rfc + """ + try: + if not attr.tzinfo: + _LOGGER.warning("Datetime with no tzinfo will be considered UTC.") + utc = attr.utctimetuple() + except AttributeError as exc: + raise TypeError("RFC1123 object must be valid Datetime object.") from exc + + return "{}, {:02} {} {:04} {:02}:{:02}:{:02} GMT".format( + Serializer.days[utc.tm_wday], + utc.tm_mday, + Serializer.months[utc.tm_mon], + utc.tm_year, + utc.tm_hour, + utc.tm_min, + utc.tm_sec, + ) + + @staticmethod + def serialize_iso(attr, **kwargs): # pylint: disable=unused-argument + """Serialize Datetime object into ISO-8601 formatted string. + + :param Datetime attr: Object to be serialized. + :rtype: str + :raises SerializationError: if format invalid. + :return: serialized iso + """ + if isinstance(attr, str): + attr = isodate.parse_datetime(attr) + try: + if not attr.tzinfo: + _LOGGER.warning("Datetime with no tzinfo will be considered UTC.") + utc = attr.utctimetuple() + if utc.tm_year > 9999 or utc.tm_year < 1: + raise OverflowError("Hit max or min date") + + microseconds = str(attr.microsecond).rjust(6, "0").rstrip("0").ljust(3, "0") + if microseconds: + microseconds = "." + microseconds + date = "{:04}-{:02}-{:02}T{:02}:{:02}:{:02}".format( + utc.tm_year, utc.tm_mon, utc.tm_mday, utc.tm_hour, utc.tm_min, utc.tm_sec + ) + return date + microseconds + "Z" + except (ValueError, OverflowError) as err: + msg = "Unable to serialize datetime object." + raise SerializationError(msg) from err + except AttributeError as err: + msg = "ISO-8601 object must be valid Datetime object." + raise TypeError(msg) from err + + @staticmethod + def serialize_unix(attr, **kwargs): # pylint: disable=unused-argument + """Serialize Datetime object into IntTime format. + This is represented as seconds. + + :param Datetime attr: Object to be serialized. + :rtype: int + :raises SerializationError: if format invalid + :return: serialied unix + """ + if isinstance(attr, int): + return attr + try: + if not attr.tzinfo: + _LOGGER.warning("Datetime with no tzinfo will be considered UTC.") + return int(calendar.timegm(attr.utctimetuple())) + except AttributeError as exc: + raise TypeError("Unix time object must be valid Datetime object.") from exc + + +def rest_key_extractor(attr, attr_desc, data): # pylint: disable=unused-argument + key = attr_desc["key"] + working_data = data + + while "." in key: + # Need the cast, as for some reasons "split" is typed as list[str | Any] + dict_keys = cast(List[str], _FLATTEN.split(key)) + if len(dict_keys) == 1: + key = _decode_attribute_map_key(dict_keys[0]) + break + working_key = _decode_attribute_map_key(dict_keys[0]) + working_data = working_data.get(working_key, data) + if working_data is None: + # If at any point while following flatten JSON path see None, it means + # that all properties under are None as well + return None + key = ".".join(dict_keys[1:]) + + return working_data.get(key) + + +def rest_key_case_insensitive_extractor( # pylint: disable=unused-argument, inconsistent-return-statements + attr, attr_desc, data +): + key = attr_desc["key"] + working_data = data + + while "." in key: + dict_keys = _FLATTEN.split(key) + if len(dict_keys) == 1: + key = _decode_attribute_map_key(dict_keys[0]) + break + working_key = _decode_attribute_map_key(dict_keys[0]) + working_data = attribute_key_case_insensitive_extractor(working_key, None, working_data) + if working_data is None: + # If at any point while following flatten JSON path see None, it means + # that all properties under are None as well + return None + key = ".".join(dict_keys[1:]) + + if working_data: + return attribute_key_case_insensitive_extractor(key, None, working_data) + + +def last_rest_key_extractor(attr, attr_desc, data): # pylint: disable=unused-argument + """Extract the attribute in "data" based on the last part of the JSON path key. + + :param str attr: The attribute to extract + :param dict attr_desc: The attribute description + :param dict data: The data to extract from + :rtype: object + :returns: The extracted attribute + """ + key = attr_desc["key"] + dict_keys = _FLATTEN.split(key) + return attribute_key_extractor(dict_keys[-1], None, data) + + +def last_rest_key_case_insensitive_extractor(attr, attr_desc, data): # pylint: disable=unused-argument + """Extract the attribute in "data" based on the last part of the JSON path key. + + This is the case insensitive version of "last_rest_key_extractor" + :param str attr: The attribute to extract + :param dict attr_desc: The attribute description + :param dict data: The data to extract from + :rtype: object + :returns: The extracted attribute + """ + key = attr_desc["key"] + dict_keys = _FLATTEN.split(key) + return attribute_key_case_insensitive_extractor(dict_keys[-1], None, data) + + +def attribute_key_extractor(attr, _, data): + return data.get(attr) + + +def attribute_key_case_insensitive_extractor(attr, _, data): + found_key = None + lower_attr = attr.lower() + for key in data: + if lower_attr == key.lower(): + found_key = key + break + + return data.get(found_key) + + +def _extract_name_from_internal_type(internal_type): + """Given an internal type XML description, extract correct XML name with namespace. + + :param dict internal_type: An model type + :rtype: tuple + :returns: A tuple XML name + namespace dict + """ + internal_type_xml_map = getattr(internal_type, "_xml_map", {}) + xml_name = internal_type_xml_map.get("name", internal_type.__name__) + xml_ns = internal_type_xml_map.get("ns", None) + if xml_ns: + xml_name = "{{{}}}{}".format(xml_ns, xml_name) + return xml_name + + +def xml_key_extractor(attr, attr_desc, data): # pylint: disable=unused-argument,too-many-return-statements + if isinstance(data, dict): + return None + + # Test if this model is XML ready first + if not isinstance(data, ET.Element): + return None + + xml_desc = attr_desc.get("xml", {}) + xml_name = xml_desc.get("name", attr_desc["key"]) + + # Look for a children + is_iter_type = attr_desc["type"].startswith("[") + is_wrapped = xml_desc.get("wrapped", False) + internal_type = attr_desc.get("internalType", None) + internal_type_xml_map = getattr(internal_type, "_xml_map", {}) + + # Integrate namespace if necessary + xml_ns = xml_desc.get("ns", internal_type_xml_map.get("ns", None)) + if xml_ns: + xml_name = "{{{}}}{}".format(xml_ns, xml_name) + + # If it's an attribute, that's simple + if xml_desc.get("attr", False): + return data.get(xml_name) + + # If it's x-ms-text, that's simple too + if xml_desc.get("text", False): + return data.text + + # Scenario where I take the local name: + # - Wrapped node + # - Internal type is an enum (considered basic types) + # - Internal type has no XML/Name node + if is_wrapped or (internal_type and (issubclass(internal_type, Enum) or "name" not in internal_type_xml_map)): + children = data.findall(xml_name) + # If internal type has a local name and it's not a list, I use that name + elif not is_iter_type and internal_type and "name" in internal_type_xml_map: + xml_name = _extract_name_from_internal_type(internal_type) + children = data.findall(xml_name) + # That's an array + else: + if internal_type: # Complex type, ignore itemsName and use the complex type name + items_name = _extract_name_from_internal_type(internal_type) + else: + items_name = xml_desc.get("itemsName", xml_name) + children = data.findall(items_name) + + if len(children) == 0: + if is_iter_type: + if is_wrapped: + return None # is_wrapped no node, we want None + return [] # not wrapped, assume empty list + return None # Assume it's not there, maybe an optional node. + + # If is_iter_type and not wrapped, return all found children + if is_iter_type: + if not is_wrapped: + return children + # Iter and wrapped, should have found one node only (the wrap one) + if len(children) != 1: + raise DeserializationError( + "Tried to deserialize an array not wrapped, and found several nodes '{}'. Maybe you should declare this array as wrapped?".format( + xml_name + ) + ) + return list(children[0]) # Might be empty list and that's ok. + + # Here it's not a itertype, we should have found one element only or empty + if len(children) > 1: + raise DeserializationError("Find several XML '{}' where it was not expected".format(xml_name)) + return children[0] + + +class Deserializer: + """Response object model deserializer. + + :param dict classes: Class type dictionary for deserializing complex types. + :ivar list key_extractors: Ordered list of extractors to be used by this deserializer. + """ + + basic_types = {str: "str", int: "int", bool: "bool", float: "float"} + + valid_date = re.compile(r"\d{4}[-]\d{2}[-]\d{2}T\d{2}:\d{2}:\d{2}\.?\d*Z?[-+]?[\d{2}]?:?[\d{2}]?") + + def __init__(self, classes: Optional[Mapping[str, type]] = None) -> None: + self.deserialize_type = { + "iso-8601": Deserializer.deserialize_iso, + "rfc-1123": Deserializer.deserialize_rfc, + "unix-time": Deserializer.deserialize_unix, + "duration": Deserializer.deserialize_duration, + "date": Deserializer.deserialize_date, + "time": Deserializer.deserialize_time, + "decimal": Deserializer.deserialize_decimal, + "long": Deserializer.deserialize_long, + "bytearray": Deserializer.deserialize_bytearray, + "base64": Deserializer.deserialize_base64, + "object": self.deserialize_object, + "[]": self.deserialize_iter, + "{}": self.deserialize_dict, + } + self.deserialize_expected_types = { + "duration": (isodate.Duration, datetime.timedelta), + "iso-8601": (datetime.datetime), + } + self.dependencies: Dict[str, type] = dict(classes) if classes else {} + self.key_extractors = [rest_key_extractor, xml_key_extractor] + # Additional properties only works if the "rest_key_extractor" is used to + # extract the keys. Making it to work whatever the key extractor is too much + # complicated, with no real scenario for now. + # So adding a flag to disable additional properties detection. This flag should be + # used if your expect the deserialization to NOT come from a JSON REST syntax. + # Otherwise, result are unexpected + self.additional_properties_detection = True + + def __call__(self, target_obj, response_data, content_type=None): + """Call the deserializer to process a REST response. + + :param str target_obj: Target data type to deserialize to. + :param requests.Response response_data: REST response object. + :param str content_type: Swagger "produces" if available. + :raises DeserializationError: if deserialization fails. + :return: Deserialized object. + :rtype: object + """ + data = self._unpack_content(response_data, content_type) + return self._deserialize(target_obj, data) + + def _deserialize(self, target_obj, data): # pylint: disable=inconsistent-return-statements + """Call the deserializer on a model. + + Data needs to be already deserialized as JSON or XML ElementTree + + :param str target_obj: Target data type to deserialize to. + :param object data: Object to deserialize. + :raises DeserializationError: if deserialization fails. + :return: Deserialized object. + :rtype: object + """ + # This is already a model, go recursive just in case + if hasattr(data, "_attribute_map"): + constants = [name for name, config in getattr(data, "_validation", {}).items() if config.get("constant")] + try: + for attr, mapconfig in data._attribute_map.items(): # pylint: disable=protected-access + if attr in constants: + continue + value = getattr(data, attr) + if value is None: + continue + local_type = mapconfig["type"] + internal_data_type = local_type.strip("[]{}") + if internal_data_type not in self.dependencies or isinstance(internal_data_type, Enum): + continue + setattr(data, attr, self._deserialize(local_type, value)) + return data + except AttributeError: + return + + response, class_name = self._classify_target(target_obj, data) + + if isinstance(response, str): + return self.deserialize_data(data, response) + if isinstance(response, type) and issubclass(response, Enum): + return self.deserialize_enum(data, response) + + if data is None or data is CoreNull: + return data + try: + attributes = response._attribute_map # type: ignore # pylint: disable=protected-access + d_attrs = {} + for attr, attr_desc in attributes.items(): + # Check empty string. If it's not empty, someone has a real "additionalProperties"... + if attr == "additional_properties" and attr_desc["key"] == "": + continue + raw_value = None + # Enhance attr_desc with some dynamic data + attr_desc = attr_desc.copy() # Do a copy, do not change the real one + internal_data_type = attr_desc["type"].strip("[]{}") + if internal_data_type in self.dependencies: + attr_desc["internalType"] = self.dependencies[internal_data_type] + + for key_extractor in self.key_extractors: + found_value = key_extractor(attr, attr_desc, data) + if found_value is not None: + if raw_value is not None and raw_value != found_value: + msg = ( + "Ignoring extracted value '%s' from %s for key '%s'" + " (duplicate extraction, follow extractors order)" + ) + _LOGGER.warning(msg, found_value, key_extractor, attr) + continue + raw_value = found_value + + value = self.deserialize_data(raw_value, attr_desc["type"]) + d_attrs[attr] = value + except (AttributeError, TypeError, KeyError) as err: + msg = "Unable to deserialize to object: " + class_name # type: ignore + raise DeserializationError(msg) from err + additional_properties = self._build_additional_properties(attributes, data) + return self._instantiate_model(response, d_attrs, additional_properties) + + def _build_additional_properties(self, attribute_map, data): + if not self.additional_properties_detection: + return None + if "additional_properties" in attribute_map and attribute_map.get("additional_properties", {}).get("key") != "": + # Check empty string. If it's not empty, someone has a real "additionalProperties" + return None + if isinstance(data, ET.Element): + data = {el.tag: el.text for el in data} + + known_keys = { + _decode_attribute_map_key(_FLATTEN.split(desc["key"])[0]) + for desc in attribute_map.values() + if desc["key"] != "" + } + present_keys = set(data.keys()) + missing_keys = present_keys - known_keys + return {key: data[key] for key in missing_keys} + + def _classify_target(self, target, data): + """Check to see whether the deserialization target object can + be classified into a subclass. + Once classification has been determined, initialize object. + + :param str target: The target object type to deserialize to. + :param str/dict data: The response data to deserialize. + :return: The classified target object and its class name. + :rtype: tuple + """ + if target is None: + return None, None + + if isinstance(target, str): + try: + target = self.dependencies[target] + except KeyError: + return target, target + + try: + target = target._classify(data, self.dependencies) # type: ignore # pylint: disable=protected-access + except AttributeError: + pass # Target is not a Model, no classify + return target, target.__class__.__name__ # type: ignore + + def failsafe_deserialize(self, target_obj, data, content_type=None): + """Ignores any errors encountered in deserialization, + and falls back to not deserializing the object. Recommended + for use in error deserialization, as we want to return the + HttpResponseError to users, and not have them deal with + a deserialization error. + + :param str target_obj: The target object type to deserialize to. + :param str/dict data: The response data to deserialize. + :param str content_type: Swagger "produces" if available. + :return: Deserialized object. + :rtype: object + """ + try: + return self(target_obj, data, content_type=content_type) + except: # pylint: disable=bare-except + _LOGGER.debug( + "Ran into a deserialization error. Ignoring since this is failsafe deserialization", exc_info=True + ) + return None + + @staticmethod + def _unpack_content(raw_data, content_type=None): + """Extract the correct structure for deserialization. + + If raw_data is a PipelineResponse, try to extract the result of RawDeserializer. + if we can't, raise. Your Pipeline should have a RawDeserializer. + + If not a pipeline response and raw_data is bytes or string, use content-type + to decode it. If no content-type, try JSON. + + If raw_data is something else, bypass all logic and return it directly. + + :param obj raw_data: Data to be processed. + :param str content_type: How to parse if raw_data is a string/bytes. + :raises JSONDecodeError: If JSON is requested and parsing is impossible. + :raises UnicodeDecodeError: If bytes is not UTF8 + :rtype: object + :return: Unpacked content. + """ + # Assume this is enough to detect a Pipeline Response without importing it + context = getattr(raw_data, "context", {}) + if context: + if RawDeserializer.CONTEXT_NAME in context: + return context[RawDeserializer.CONTEXT_NAME] + raise ValueError("This pipeline didn't have the RawDeserializer policy; can't deserialize") + + # Assume this is enough to recognize universal_http.ClientResponse without importing it + if hasattr(raw_data, "body"): + return RawDeserializer.deserialize_from_http_generics(raw_data.text(), raw_data.headers) + + # Assume this enough to recognize requests.Response without importing it. + if hasattr(raw_data, "_content_consumed"): + return RawDeserializer.deserialize_from_http_generics(raw_data.text, raw_data.headers) + + if isinstance(raw_data, (str, bytes)) or hasattr(raw_data, "read"): + return RawDeserializer.deserialize_from_text(raw_data, content_type) # type: ignore + return raw_data + + def _instantiate_model(self, response, attrs, additional_properties=None): + """Instantiate a response model passing in deserialized args. + + :param Response response: The response model class. + :param dict attrs: The deserialized response attributes. + :param dict additional_properties: Additional properties to be set. + :rtype: Response + :return: The instantiated response model. + """ + if callable(response): + subtype = getattr(response, "_subtype_map", {}) + try: + readonly = [ + k + for k, v in response._validation.items() # pylint: disable=protected-access # type: ignore + if v.get("readonly") + ] + const = [ + k + for k, v in response._validation.items() # pylint: disable=protected-access # type: ignore + if v.get("constant") + ] + kwargs = {k: v for k, v in attrs.items() if k not in subtype and k not in readonly + const} + response_obj = response(**kwargs) + for attr in readonly: + setattr(response_obj, attr, attrs.get(attr)) + if additional_properties: + response_obj.additional_properties = additional_properties # type: ignore + return response_obj + except TypeError as err: + msg = "Unable to deserialize {} into model {}. ".format(kwargs, response) # type: ignore + raise DeserializationError(msg + str(err)) from err + else: + try: + for attr, value in attrs.items(): + setattr(response, attr, value) + return response + except Exception as exp: + msg = "Unable to populate response model. " + msg += "Type: {}, Error: {}".format(type(response), exp) + raise DeserializationError(msg) from exp + + def deserialize_data(self, data, data_type): # pylint: disable=too-many-return-statements + """Process data for deserialization according to data type. + + :param str data: The response string to be deserialized. + :param str data_type: The type to deserialize to. + :raises DeserializationError: if deserialization fails. + :return: Deserialized object. + :rtype: object + """ + if data is None: + return data + + try: + if not data_type: + return data + if data_type in self.basic_types.values(): + return self.deserialize_basic(data, data_type) + if data_type in self.deserialize_type: + if isinstance(data, self.deserialize_expected_types.get(data_type, tuple())): + return data + + is_a_text_parsing_type = lambda x: x not in [ # pylint: disable=unnecessary-lambda-assignment + "object", + "[]", + r"{}", + ] + if isinstance(data, ET.Element) and is_a_text_parsing_type(data_type) and not data.text: + return None + data_val = self.deserialize_type[data_type](data) + return data_val + + iter_type = data_type[0] + data_type[-1] + if iter_type in self.deserialize_type: + return self.deserialize_type[iter_type](data, data_type[1:-1]) + + obj_type = self.dependencies[data_type] + if issubclass(obj_type, Enum): + if isinstance(data, ET.Element): + data = data.text + return self.deserialize_enum(data, obj_type) + + except (ValueError, TypeError, AttributeError) as err: + msg = "Unable to deserialize response data." + msg += " Data: {}, {}".format(data, data_type) + raise DeserializationError(msg) from err + return self._deserialize(obj_type, data) + + def deserialize_iter(self, attr, iter_type): + """Deserialize an iterable. + + :param list attr: Iterable to be deserialized. + :param str iter_type: The type of object in the iterable. + :return: Deserialized iterable. + :rtype: list + """ + if attr is None: + return None + if isinstance(attr, ET.Element): # If I receive an element here, get the children + attr = list(attr) + if not isinstance(attr, (list, set)): + raise DeserializationError("Cannot deserialize as [{}] an object of type {}".format(iter_type, type(attr))) + return [self.deserialize_data(a, iter_type) for a in attr] + + def deserialize_dict(self, attr, dict_type): + """Deserialize a dictionary. + + :param dict/list attr: Dictionary to be deserialized. Also accepts + a list of key, value pairs. + :param str dict_type: The object type of the items in the dictionary. + :return: Deserialized dictionary. + :rtype: dict + """ + if isinstance(attr, list): + return {x["key"]: self.deserialize_data(x["value"], dict_type) for x in attr} + + if isinstance(attr, ET.Element): + # Transform value into {"Key": "value"} + attr = {el.tag: el.text for el in attr} + return {k: self.deserialize_data(v, dict_type) for k, v in attr.items()} + + def deserialize_object(self, attr, **kwargs): # pylint: disable=too-many-return-statements + """Deserialize a generic object. + This will be handled as a dictionary. + + :param dict attr: Dictionary to be deserialized. + :return: Deserialized object. + :rtype: dict + :raises TypeError: if non-builtin datatype encountered. + """ + if attr is None: + return None + if isinstance(attr, ET.Element): + # Do no recurse on XML, just return the tree as-is + return attr + if isinstance(attr, str): + return self.deserialize_basic(attr, "str") + obj_type = type(attr) + if obj_type in self.basic_types: + return self.deserialize_basic(attr, self.basic_types[obj_type]) + if obj_type is _long_type: + return self.deserialize_long(attr) + + if obj_type == dict: + deserialized = {} + for key, value in attr.items(): + try: + deserialized[key] = self.deserialize_object(value, **kwargs) + except ValueError: + deserialized[key] = None + return deserialized + + if obj_type == list: + deserialized = [] + for obj in attr: + try: + deserialized.append(self.deserialize_object(obj, **kwargs)) + except ValueError: + pass + return deserialized + + error = "Cannot deserialize generic object with type: " + raise TypeError(error + str(obj_type)) + + def deserialize_basic(self, attr, data_type): # pylint: disable=too-many-return-statements + """Deserialize basic builtin data type from string. + Will attempt to convert to str, int, float and bool. + This function will also accept '1', '0', 'true' and 'false' as + valid bool values. + + :param str attr: response string to be deserialized. + :param str data_type: deserialization data type. + :return: Deserialized basic type. + :rtype: str, int, float or bool + :raises TypeError: if string format is not valid. + """ + # If we're here, data is supposed to be a basic type. + # If it's still an XML node, take the text + if isinstance(attr, ET.Element): + attr = attr.text + if not attr: + if data_type == "str": + # None or '', node is empty string. + return "" + # None or '', node with a strong type is None. + # Don't try to model "empty bool" or "empty int" + return None + + if data_type == "bool": + if attr in [True, False, 1, 0]: + return bool(attr) + if isinstance(attr, str): + if attr.lower() in ["true", "1"]: + return True + if attr.lower() in ["false", "0"]: + return False + raise TypeError("Invalid boolean value: {}".format(attr)) + + if data_type == "str": + return self.deserialize_unicode(attr) + return eval(data_type)(attr) # nosec # pylint: disable=eval-used + + @staticmethod + def deserialize_unicode(data): + """Preserve unicode objects in Python 2, otherwise return data + as a string. + + :param str data: response string to be deserialized. + :return: Deserialized string. + :rtype: str or unicode + """ + # We might be here because we have an enum modeled as string, + # and we try to deserialize a partial dict with enum inside + if isinstance(data, Enum): + return data + + # Consider this is real string + try: + if isinstance(data, unicode): # type: ignore + return data + except NameError: + return str(data) + return str(data) + + @staticmethod + def deserialize_enum(data, enum_obj): + """Deserialize string into enum object. + + If the string is not a valid enum value it will be returned as-is + and a warning will be logged. + + :param str data: Response string to be deserialized. If this value is + None or invalid it will be returned as-is. + :param Enum enum_obj: Enum object to deserialize to. + :return: Deserialized enum object. + :rtype: Enum + """ + if isinstance(data, enum_obj) or data is None: + return data + if isinstance(data, Enum): + data = data.value + if isinstance(data, int): + # Workaround. We might consider remove it in the future. + try: + return list(enum_obj.__members__.values())[data] + except IndexError as exc: + error = "{!r} is not a valid index for enum {!r}" + raise DeserializationError(error.format(data, enum_obj)) from exc + try: + return enum_obj(str(data)) + except ValueError: + for enum_value in enum_obj: + if enum_value.value.lower() == str(data).lower(): + return enum_value + # We don't fail anymore for unknown value, we deserialize as a string + _LOGGER.warning("Deserializer is not able to find %s as valid enum in %s", data, enum_obj) + return Deserializer.deserialize_unicode(data) + + @staticmethod + def deserialize_bytearray(attr): + """Deserialize string into bytearray. + + :param str attr: response string to be deserialized. + :return: Deserialized bytearray + :rtype: bytearray + :raises TypeError: if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + return bytearray(b64decode(attr)) # type: ignore + + @staticmethod + def deserialize_base64(attr): + """Deserialize base64 encoded string into string. + + :param str attr: response string to be deserialized. + :return: Deserialized base64 string + :rtype: bytearray + :raises TypeError: if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + padding = "=" * (3 - (len(attr) + 3) % 4) # type: ignore + attr = attr + padding # type: ignore + encoded = attr.replace("-", "+").replace("_", "/") + return b64decode(encoded) + + @staticmethod + def deserialize_decimal(attr): + """Deserialize string into Decimal object. + + :param str attr: response string to be deserialized. + :return: Deserialized decimal + :raises DeserializationError: if string format invalid. + :rtype: decimal + """ + if isinstance(attr, ET.Element): + attr = attr.text + try: + return decimal.Decimal(str(attr)) # type: ignore + except decimal.DecimalException as err: + msg = "Invalid decimal {}".format(attr) + raise DeserializationError(msg) from err + + @staticmethod + def deserialize_long(attr): + """Deserialize string into long (Py2) or int (Py3). + + :param str attr: response string to be deserialized. + :return: Deserialized int + :rtype: long or int + :raises ValueError: if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + return _long_type(attr) # type: ignore + + @staticmethod + def deserialize_duration(attr): + """Deserialize ISO-8601 formatted string into TimeDelta object. + + :param str attr: response string to be deserialized. + :return: Deserialized duration + :rtype: TimeDelta + :raises DeserializationError: if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + try: + duration = isodate.parse_duration(attr) + except (ValueError, OverflowError, AttributeError) as err: + msg = "Cannot deserialize duration object." + raise DeserializationError(msg) from err + return duration + + @staticmethod + def deserialize_date(attr): + """Deserialize ISO-8601 formatted string into Date object. + + :param str attr: response string to be deserialized. + :return: Deserialized date + :rtype: Date + :raises DeserializationError: if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + if re.search(r"[^\W\d_]", attr, re.I + re.U): # type: ignore + raise DeserializationError("Date must have only digits and -. Received: %s" % attr) + # This must NOT use defaultmonth/defaultday. Using None ensure this raises an exception. + return isodate.parse_date(attr, defaultmonth=0, defaultday=0) + + @staticmethod + def deserialize_time(attr): + """Deserialize ISO-8601 formatted string into time object. + + :param str attr: response string to be deserialized. + :return: Deserialized time + :rtype: datetime.time + :raises DeserializationError: if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + if re.search(r"[^\W\d_]", attr, re.I + re.U): # type: ignore + raise DeserializationError("Date must have only digits and -. Received: %s" % attr) + return isodate.parse_time(attr) + + @staticmethod + def deserialize_rfc(attr): + """Deserialize RFC-1123 formatted string into Datetime object. + + :param str attr: response string to be deserialized. + :return: Deserialized RFC datetime + :rtype: Datetime + :raises DeserializationError: if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + try: + parsed_date = email.utils.parsedate_tz(attr) # type: ignore + date_obj = datetime.datetime( + *parsed_date[:6], tzinfo=datetime.timezone(datetime.timedelta(minutes=(parsed_date[9] or 0) / 60)) + ) + if not date_obj.tzinfo: + date_obj = date_obj.astimezone(tz=TZ_UTC) + except ValueError as err: + msg = "Cannot deserialize to rfc datetime object." + raise DeserializationError(msg) from err + return date_obj + + @staticmethod + def deserialize_iso(attr): + """Deserialize ISO-8601 formatted string into Datetime object. + + :param str attr: response string to be deserialized. + :return: Deserialized ISO datetime + :rtype: Datetime + :raises DeserializationError: if string format invalid. + """ + if isinstance(attr, ET.Element): + attr = attr.text + try: + attr = attr.upper() # type: ignore + match = Deserializer.valid_date.match(attr) + if not match: + raise ValueError("Invalid datetime string: " + attr) + + check_decimal = attr.split(".") + if len(check_decimal) > 1: + decimal_str = "" + for digit in check_decimal[1]: + if digit.isdigit(): + decimal_str += digit + else: + break + if len(decimal_str) > 6: + attr = attr.replace(decimal_str, decimal_str[0:6]) + + date_obj = isodate.parse_datetime(attr) + test_utc = date_obj.utctimetuple() + if test_utc.tm_year > 9999 or test_utc.tm_year < 1: + raise OverflowError("Hit max or min date") + except (ValueError, OverflowError, AttributeError) as err: + msg = "Cannot deserialize datetime object." + raise DeserializationError(msg) from err + return date_obj + + @staticmethod + def deserialize_unix(attr): + """Serialize Datetime object into IntTime format. + This is represented as seconds. + + :param int attr: Object to be serialized. + :return: Deserialized datetime + :rtype: Datetime + :raises DeserializationError: if format invalid + """ + if isinstance(attr, ET.Element): + attr = int(attr.text) # type: ignore + try: + attr = int(attr) + date_obj = datetime.datetime.fromtimestamp(attr, TZ_UTC) + except ValueError as err: + msg = "Cannot deserialize to unix datetime object." + raise DeserializationError(msg) from err + return date_obj diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py index e5754a47ce6..779f5c69e29 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py @@ -6,4 +6,4 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -VERSION = "1.0.0b1" +VERSION = "40.2.0b1" diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_configuration.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_configuration.py index 55c35a582fc..abc7e5ea1b4 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_configuration.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_configuration.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from typing import Any, Optional, TYPE_CHECKING +from typing import Any, TYPE_CHECKING from azure.core.pipeline import policies from azure.mgmt.core.policies import ARMHttpLoggingPolicy, AsyncARMChallengeAuthenticationPolicy @@ -14,7 +14,6 @@ from .._version import VERSION if TYPE_CHECKING: - from azure.core import AzureClouds from azure.core.credentials_async import AsyncTokenCredential @@ -28,22 +27,13 @@ class ContainerServiceClientConfiguration: # pylint: disable=too-many-instance- :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param subscription_id: The ID of the target subscription. The value must be an UUID. Required. :type subscription_id: str - :param cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is - None. - :type cloud_setting: ~azure.core.AzureClouds - :keyword api_version: Api Version. Default value is "2025-09-02-preview". Note that overriding + :keyword api_version: Api Version. Default value is "2025-10-02-preview". Note that overriding this default value may result in unsupported behavior. :paramtype api_version: str """ - def __init__( - self, - credential: "AsyncTokenCredential", - subscription_id: str, - cloud_setting: Optional["AzureClouds"] = None, - **kwargs: Any - ) -> None: - api_version: str = kwargs.pop("api_version", "2025-09-02-preview") + def __init__(self, credential: "AsyncTokenCredential", subscription_id: str, **kwargs: Any) -> None: + api_version: str = kwargs.pop("api_version", "2025-10-02-preview") if credential is None: raise ValueError("Parameter 'credential' must not be None.") @@ -52,7 +42,6 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.cloud_setting = cloud_setting self.api_version = api_version self.credential_scopes = kwargs.pop("credential_scopes", ["https://management.azure.com/.default"]) kwargs.setdefault("sdk_moniker", "mgmt-containerservice/{}".format(VERSION)) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_container_service_client.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_container_service_client.py index 148bab8a093..8c29a4c6aca 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_container_service_client.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_container_service_client.py @@ -7,18 +7,16 @@ # -------------------------------------------------------------------------- from copy import deepcopy -from typing import Any, Awaitable, Optional, TYPE_CHECKING, cast +from typing import Any, Awaitable, TYPE_CHECKING from typing_extensions import Self from azure.core.pipeline import policies from azure.core.rest import AsyncHttpResponse, HttpRequest -from azure.core.settings import settings from azure.mgmt.core import AsyncARMPipelineClient from azure.mgmt.core.policies import AsyncARMAutoResourceProviderRegistrationPolicy -from azure.mgmt.core.tools import get_arm_endpoints from .. import models as _models -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer from ._configuration import ContainerServiceClientConfiguration from .operations import ( AgentPoolsOperations, @@ -43,7 +41,6 @@ ) if TYPE_CHECKING: - from azure.core import AzureClouds from azure.core.credentials_async import AsyncTokenCredential @@ -104,12 +101,9 @@ class ContainerServiceClient: # pylint: disable=too-many-instance-attributes :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param subscription_id: The ID of the target subscription. The value must be an UUID. Required. :type subscription_id: str - :param base_url: Service URL. Default value is None. + :param base_url: Service URL. Default value is "https://management.azure.com". :type base_url: str - :keyword cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is - None. - :paramtype cloud_setting: ~azure.core.AzureClouds - :keyword api_version: Api Version. Default value is "2025-09-02-preview". Note that overriding + :keyword api_version: Api Version. Default value is "2025-10-02-preview". Note that overriding this default value may result in unsupported behavior. :paramtype api_version: str :keyword int polling_interval: Default waiting time between two polls for LRO operations if no @@ -120,24 +114,12 @@ def __init__( self, credential: "AsyncTokenCredential", subscription_id: str, - base_url: Optional[str] = None, - *, - cloud_setting: Optional["AzureClouds"] = None, + base_url: str = "https://management.azure.com", **kwargs: Any ) -> None: - _cloud = cloud_setting or settings.current.azure_cloud # type: ignore - _endpoints = get_arm_endpoints(_cloud) - if not base_url: - base_url = _endpoints["resource_manager"] - credential_scopes = kwargs.pop("credential_scopes", _endpoints["credential_scopes"]) self._config = ContainerServiceClientConfiguration( - credential=credential, - subscription_id=subscription_id, - cloud_setting=cloud_setting, - credential_scopes=credential_scopes, - **kwargs + credential=credential, subscription_id=subscription_id, **kwargs ) - _policies = kwargs.pop("policies", None) if _policies is None: _policies = [ @@ -156,9 +138,7 @@ def __init__( policies.SensitiveHeaderCleanupPolicy(**kwargs) if self._config.redirect_policy else None, self._config.http_logging_policy, ] - self._client: AsyncARMPipelineClient = AsyncARMPipelineClient( - base_url=cast(str, base_url), policies=_policies, **kwargs - ) + self._client: AsyncARMPipelineClient = AsyncARMPipelineClient(base_url=base_url, policies=_policies, **kwargs) client_models = {k: v for k, v in _models.__dict__.items() if isinstance(v, type)} self._serialize = Serializer(client_models) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_patch.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_patch.py index 87676c65a8f..8bcb627aa47 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_patch.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_patch.py @@ -7,9 +7,9 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ +from typing import List - -__all__: list[str] = [] # Add all objects you want publicly available to users at this package level +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_agent_pools_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_agent_pools_operations.py index 0bd284cbdb0..a20298c2290 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_agent_pools_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_agent_pools_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +from typing import Any, AsyncIterable, AsyncIterator, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -33,7 +33,7 @@ from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._agent_pools_operations import ( build_abort_latest_operation_request, build_complete_upgrade_request, @@ -49,8 +49,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class AgentPoolsOperations: @@ -114,10 +113,7 @@ async def _abort_latest_operation_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -199,7 +195,7 @@ def get_long_running_output(pipeline_response): # pylint: disable=inconsistent- return AsyncLROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore @distributed_trace - def list(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> AsyncItemPaged["_models.AgentPool"]: + def list(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> AsyncIterable["_models.AgentPool"]: """Gets a list of agent pools in the specified managed cluster. Gets a list of agent pools in the specified managed cluster. @@ -275,10 +271,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -338,10 +331,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("AgentPool", pipeline_response.http_response) @@ -414,10 +404,7 @@ async def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) @@ -645,10 +632,7 @@ async def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -789,10 +773,7 @@ async def get_upgrade_profile( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("AgentPoolUpgradeProfile", pipeline_response.http_response) @@ -844,10 +825,7 @@ async def _complete_upgrade_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -984,10 +962,7 @@ async def _delete_machines_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -1188,10 +1163,7 @@ async def get_available_agent_pool_versions( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("AgentPoolAvailableVersions", pipeline_response.http_response) @@ -1243,10 +1215,7 @@ async def _upgrade_node_image_version_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_container_service_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_container_service_operations.py index 64cd46b96d7..31e7de4f30b 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_container_service_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_container_service_operations.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from collections.abc import MutableMapping -from typing import Any, Callable, Optional, TypeVar +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar import urllib.parse from azure.core import AsyncPipelineClient @@ -26,13 +26,12 @@ from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._container_service_operations import build_list_node_image_versions_request from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class ContainerServiceOperations: @@ -55,7 +54,7 @@ def __init__(self, *args, **kwargs) -> None: self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace - def list_node_image_versions(self, location: str, **kwargs: Any) -> AsyncItemPaged["_models.NodeImageVersion"]: + def list_node_image_versions(self, location: str, **kwargs: Any) -> AsyncIterable["_models.NodeImageVersion"]: """Gets a list of supported NodeImage versions in the specified subscription. Only returns the latest version of each node image. For example there may be an @@ -130,10 +129,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_identity_bindings_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_identity_bindings_operations.py index 31f0265ad7c..4d6338dfa50 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_identity_bindings_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_identity_bindings_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +from typing import Any, AsyncIterable, AsyncIterator, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -32,7 +32,7 @@ from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._identity_bindings_operations import ( build_create_or_update_request, build_delete_request, @@ -42,8 +42,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class IdentityBindingsOperations: @@ -68,7 +67,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.IdentityBinding"]: + ) -> AsyncIterable["_models.IdentityBinding"]: """Gets a list of identity bindings in the specified managed cluster. Gets a list of identity bindings in the specified managed cluster. @@ -145,10 +144,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -208,10 +204,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("IdentityBinding", pipeline_response.http_response) @@ -280,10 +273,7 @@ async def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -492,10 +482,7 @@ async def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_jwt_authenticators_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_jwt_authenticators_operations.py index a8b24d0069b..98888a67095 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_jwt_authenticators_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_jwt_authenticators_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +from typing import Any, AsyncIterable, AsyncIterator, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -32,7 +32,7 @@ from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._jwt_authenticators_operations import ( build_create_or_update_request, build_delete_request, @@ -42,8 +42,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class JWTAuthenticatorsOperations: @@ -68,7 +67,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.JWTAuthenticator"]: + ) -> AsyncIterable["_models.JWTAuthenticator"]: """Gets a list of JWT authenticators in the specified managed cluster. Gets a list of JWT authenticators in the specified managed cluster. @@ -145,10 +144,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -208,10 +204,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("JWTAuthenticator", pipeline_response.http_response) @@ -280,10 +273,7 @@ async def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -499,10 +489,7 @@ async def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_load_balancers_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_load_balancers_operations.py index 220e0717c8e..fce1dfaa5a2 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_load_balancers_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_load_balancers_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +from typing import Any, AsyncIterable, AsyncIterator, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -32,7 +32,7 @@ from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._load_balancers_operations import ( build_create_or_update_request, build_delete_request, @@ -42,8 +42,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class LoadBalancersOperations: @@ -68,7 +67,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.LoadBalancer"]: + ) -> AsyncIterable["_models.LoadBalancer"]: """Gets a list of load balancers in the specified managed cluster. Gets a list of load balancers in the specified managed cluster. @@ -145,10 +144,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -208,10 +204,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("LoadBalancer", pipeline_response.http_response) @@ -358,10 +351,7 @@ async def create_or_update( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("LoadBalancer", pipeline_response.http_response) @@ -413,10 +403,7 @@ async def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_machines_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_machines_operations.py index 2ee23142b67..b22050c1ecf 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_machines_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_machines_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +from typing import Any, AsyncIterable, AsyncIterator, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -32,13 +32,12 @@ from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._machines_operations import build_create_or_update_request, build_get_request, build_list_request from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class MachinesOperations: @@ -63,7 +62,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list( self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.Machine"]: + ) -> AsyncIterable["_models.Machine"]: """Gets a list of machines in the specified agent pool. Gets a list of machines in the specified agent pool. @@ -142,10 +141,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -208,10 +204,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("Machine", pipeline_response.http_response) @@ -286,10 +279,7 @@ async def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_maintenance_configurations_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_maintenance_configurations_operations.py index 36a64dc73d0..23bc21e881a 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_maintenance_configurations_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_maintenance_configurations_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -28,7 +28,7 @@ from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._maintenance_configurations_operations import ( build_create_or_update_request, build_delete_request, @@ -38,8 +38,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class MaintenanceConfigurationsOperations: @@ -64,7 +63,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.MaintenanceConfiguration"]: + ) -> AsyncIterable["_models.MaintenanceConfiguration"]: """Gets a list of maintenance configurations in the specified managed cluster. Gets a list of maintenance configurations in the specified managed cluster. @@ -142,10 +141,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -165,7 +161,8 @@ async def get( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. Required. :type resource_name: str - :param config_name: The name of the maintenance configuration. Required. + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. :type config_name: str :return: MaintenanceConfiguration or the result of cls(response) :rtype: ~azure.mgmt.containerservice.models.MaintenanceConfiguration @@ -205,10 +202,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("MaintenanceConfiguration", pipeline_response.http_response) @@ -238,7 +232,8 @@ async def create_or_update( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. Required. :type resource_name: str - :param config_name: The name of the maintenance configuration. Required. + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. :type config_name: str :param parameters: The maintenance configuration to create or update. Required. :type parameters: ~azure.mgmt.containerservice.models.MaintenanceConfiguration @@ -270,7 +265,8 @@ async def create_or_update( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. Required. :type resource_name: str - :param config_name: The name of the maintenance configuration. Required. + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. :type config_name: str :param parameters: The maintenance configuration to create or update. Required. :type parameters: IO[bytes] @@ -300,7 +296,8 @@ async def create_or_update( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. Required. :type resource_name: str - :param config_name: The name of the maintenance configuration. Required. + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. :type config_name: str :param parameters: The maintenance configuration to create or update. Is either a MaintenanceConfiguration type or a IO[bytes] type. Required. @@ -355,10 +352,7 @@ async def create_or_update( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("MaintenanceConfiguration", pipeline_response.http_response) @@ -379,7 +373,8 @@ async def delete(self, resource_group_name: str, resource_name: str, config_name :type resource_group_name: str :param resource_name: The name of the managed cluster resource. Required. :type resource_name: str - :param config_name: The name of the maintenance configuration. Required. + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. :type config_name: str :return: None or the result of cls(response) :rtype: None @@ -419,10 +414,7 @@ async def delete(self, resource_group_name: str, resource_name: str, config_name if response.status_code not in [200, 204]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_cluster_snapshots_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_cluster_snapshots_operations.py index 8ccf0d7a4c6..19334961a5a 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_cluster_snapshots_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_cluster_snapshots_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -28,7 +28,7 @@ from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._managed_cluster_snapshots_operations import ( build_create_or_update_request, build_delete_request, @@ -40,8 +40,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class ManagedClusterSnapshotsOperations: @@ -64,7 +63,7 @@ def __init__(self, *args, **kwargs) -> None: self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace - def list(self, **kwargs: Any) -> AsyncItemPaged["_models.ManagedClusterSnapshot"]: + def list(self, **kwargs: Any) -> AsyncIterable["_models.ManagedClusterSnapshot"]: """Gets a list of managed cluster snapshots in the specified subscription. Gets a list of managed cluster snapshots in the specified subscription. @@ -135,10 +134,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -148,7 +144,7 @@ async def get_next(next_link=None): @distributed_trace def list_by_resource_group( self, resource_group_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.ManagedClusterSnapshot"]: + ) -> AsyncIterable["_models.ManagedClusterSnapshot"]: """Lists managed cluster snapshots in the specified subscription and resource group. Lists managed cluster snapshots in the specified subscription and resource group. @@ -223,10 +219,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -281,10 +274,7 @@ async def get(self, resource_group_name: str, resource_name: str, **kwargs: Any) if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedClusterSnapshot", pipeline_response.http_response) @@ -421,10 +411,7 @@ async def create_or_update( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedClusterSnapshot", pipeline_response.http_response) @@ -563,10 +550,7 @@ async def update_tags( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedClusterSnapshot", pipeline_response.http_response) @@ -624,10 +608,7 @@ async def delete(self, resource_group_name: str, resource_name: str, **kwargs: A if response.status_code not in [200, 204]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_clusters_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_clusters_operations.py index a8f9eb56795..3f6f7e22743 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_clusters_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_clusters_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +from typing import Any, AsyncIterable, AsyncIterator, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -33,7 +33,7 @@ from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._managed_clusters_operations import ( build_abort_latest_operation_request, build_create_or_update_request, @@ -70,8 +70,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class ManagedClustersOperations: # pylint: disable=too-many-public-methods @@ -138,10 +137,7 @@ async def list_kubernetes_versions(self, location: str, **kwargs: Any) -> _model if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("KubernetesVersionListResult", pipeline_response.http_response) @@ -152,7 +148,7 @@ async def list_kubernetes_versions(self, location: str, **kwargs: Any) -> _model return deserialized # type: ignore @distributed_trace - def list(self, **kwargs: Any) -> AsyncItemPaged["_models.ManagedCluster"]: + def list(self, **kwargs: Any) -> AsyncIterable["_models.ManagedCluster"]: """Gets a list of managed clusters in the specified subscription. Gets a list of managed clusters in the specified subscription. @@ -222,10 +218,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -235,7 +228,7 @@ async def get_next(next_link=None): @distributed_trace def list_by_resource_group( self, resource_group_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.ManagedCluster"]: + ) -> AsyncIterable["_models.ManagedCluster"]: """Lists managed clusters in the specified subscription and resource group. Lists managed clusters in the specified subscription and resource group. @@ -309,10 +302,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -369,10 +359,7 @@ async def get_upgrade_profile( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedClusterUpgradeProfile", pipeline_response.http_response) @@ -438,10 +425,7 @@ async def get_access_profile( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedClusterAccessProfile", pipeline_response.http_response) @@ -504,10 +488,7 @@ async def list_cluster_admin_credentials( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) @@ -581,10 +562,7 @@ async def list_cluster_user_credentials( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) @@ -647,10 +625,7 @@ async def list_cluster_monitoring_user_credentials( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) @@ -708,10 +683,7 @@ async def get(self, resource_group_name: str, resource_name: str, **kwargs: Any) if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedCluster", pipeline_response.http_response) @@ -782,10 +754,7 @@ async def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) @@ -1012,10 +981,7 @@ async def _update_tags_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) @@ -1218,10 +1184,7 @@ async def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -1362,10 +1325,7 @@ async def _reset_service_principal_profile_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -1564,10 +1524,7 @@ async def _reset_aad_profile_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -1755,10 +1712,7 @@ async def _abort_latest_operation_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -1877,10 +1831,7 @@ async def _rotate_cluster_certificates_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -1995,10 +1946,7 @@ async def _rotate_service_account_signing_keys_initial( # pylint: disable=name- except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -2110,10 +2058,7 @@ async def _stop_initial(self, resource_group_name: str, resource_name: str, **kw except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -2227,10 +2172,7 @@ async def _start_initial(self, resource_group_name: str, resource_name: str, **k except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -2359,10 +2301,7 @@ async def _run_command_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -2572,10 +2511,7 @@ async def get_command_result( if response.status_code not in [200, 202]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = None @@ -2594,7 +2530,7 @@ async def get_command_result( @distributed_trace def list_outbound_network_dependencies_endpoints( # pylint: disable=name-too-long self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.OutboundEnvironmentEndpoint"]: + ) -> AsyncIterable["_models.OutboundEnvironmentEndpoint"]: """Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed cluster. @@ -2674,10 +2610,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -2733,10 +2666,7 @@ async def get_guardrails_versions( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("GuardrailsAvailableVersion", pipeline_response.http_response) @@ -2749,7 +2679,7 @@ async def get_guardrails_versions( @distributed_trace def list_guardrails_versions( self, location: str, **kwargs: Any - ) -> AsyncItemPaged["_models.GuardrailsAvailableVersion"]: + ) -> AsyncIterable["_models.GuardrailsAvailableVersion"]: """Gets a list of supported Guardrails versions in the specified subscription and location. Contains list of Guardrails version along with its support info and whether it is a default @@ -2824,10 +2754,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -2883,10 +2810,7 @@ async def get_safeguards_versions( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("SafeguardsAvailableVersion", pipeline_response.http_response) @@ -2899,7 +2823,7 @@ async def get_safeguards_versions( @distributed_trace def list_safeguards_versions( self, location: str, **kwargs: Any - ) -> AsyncItemPaged["_models.SafeguardsAvailableVersion"]: + ) -> AsyncIterable["_models.SafeguardsAvailableVersion"]: """Gets a list of supported Safeguards versions in the specified subscription and location. Contains list of Safeguards version along with its support info and whether it is a default @@ -2974,10 +2898,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -2985,9 +2906,7 @@ async def get_next(next_link=None): return AsyncItemPaged(get_next, extract_data) @distributed_trace - def list_mesh_revision_profiles( - self, location: str, **kwargs: Any - ) -> AsyncItemPaged["_models.MeshRevisionProfile"]: + def list_mesh_revision_profiles(self, location: str, **kwargs: Any) -> AsyncIterable["_models.MeshRevisionProfile"]: """Lists mesh revision profiles for all meshes in the specified location. Contains extra metadata on each revision, including supported revisions, cluster compatibility @@ -3061,10 +2980,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -3119,10 +3035,7 @@ async def get_mesh_revision_profile(self, location: str, mode: str, **kwargs: An if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("MeshRevisionProfile", pipeline_response.http_response) @@ -3135,7 +3048,7 @@ async def get_mesh_revision_profile(self, location: str, mode: str, **kwargs: An @distributed_trace def list_mesh_upgrade_profiles( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.MeshUpgradeProfile"]: + ) -> AsyncIterable["_models.MeshUpgradeProfile"]: """Lists available upgrades for all service meshes in a specific cluster. Lists available upgrades for all service meshes in a specific cluster. @@ -3212,10 +3125,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -3275,10 +3185,7 @@ async def get_mesh_upgrade_profile( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("MeshUpgradeProfile", pipeline_response.http_response) @@ -3345,10 +3252,7 @@ async def _rebalance_load_balancers_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_namespaces_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_namespaces_operations.py index ecd1869246e..28abafd4c34 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_namespaces_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_managed_namespaces_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +from typing import Any, AsyncIterable, AsyncIterator, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -32,7 +32,7 @@ from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._managed_namespaces_operations import ( build_create_or_update_request, build_delete_request, @@ -44,8 +44,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class ManagedNamespacesOperations: @@ -70,7 +69,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.ManagedNamespace"]: + ) -> AsyncIterable["_models.ManagedNamespace"]: """Gets a list of managed namespaces in the specified managed cluster. Gets a list of managed namespaces in the specified managed cluster. @@ -147,10 +146,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -210,10 +206,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedNamespace", pipeline_response.http_response) @@ -282,10 +275,7 @@ async def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -505,10 +495,7 @@ async def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -729,10 +716,7 @@ async def update( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedNamespace", pipeline_response.http_response) @@ -795,10 +779,7 @@ async def list_credential( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_mesh_memberships_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_mesh_memberships_operations.py index a68288901ca..8147385ebf3 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_mesh_memberships_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_mesh_memberships_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +from typing import Any, AsyncIterable, AsyncIterator, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -32,7 +32,7 @@ from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._mesh_memberships_operations import ( build_create_or_update_request, build_delete_request, @@ -42,8 +42,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class MeshMembershipsOperations: @@ -68,7 +67,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.MeshMembership"]: + ) -> AsyncIterable["_models.MeshMembership"]: """Lists mesh memberships in a managed cluster. Lists mesh memberships in a managed cluster. @@ -145,10 +144,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -208,10 +204,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("MeshMembership", pipeline_response.http_response) @@ -280,10 +273,7 @@ async def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) @@ -477,10 +467,7 @@ async def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_operation_status_result_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_operation_status_result_operations.py index 8a0e67f542d..9bcb469ff84 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_operation_status_result_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_operation_status_result_operations.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from collections.abc import MutableMapping -from typing import Any, Callable, Optional, TypeVar +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar import urllib.parse from azure.core import AsyncPipelineClient @@ -27,7 +27,7 @@ from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._operation_status_result_operations import ( build_get_by_agent_pool_request, build_get_request, @@ -36,8 +36,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class OperationStatusResultOperations: @@ -62,7 +61,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.OperationStatusResult"]: + ) -> AsyncIterable["_models.OperationStatusResult"]: """Gets a list of operations in the specified managedCluster. Gets a list of operations in the specified managedCluster. @@ -140,10 +139,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -203,10 +199,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("OperationStatusResult", pipeline_response.http_response) @@ -272,10 +265,7 @@ async def get_by_agent_pool( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("OperationStatusResult", pipeline_response.http_response) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_operations.py index 6277992c37d..e5877394fad 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_operations.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from collections.abc import MutableMapping -from typing import Any, Callable, Optional, TypeVar +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar import urllib.parse from azure.core import AsyncPipelineClient @@ -26,13 +26,12 @@ from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._operations import build_list_request from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class Operations: @@ -55,7 +54,7 @@ def __init__(self, *args, **kwargs) -> None: self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace - def list(self, **kwargs: Any) -> AsyncItemPaged["_models.OperationValue"]: + def list(self, **kwargs: Any) -> AsyncIterable["_models.OperationValue"]: """Gets a list of operations. Gets a list of operations. @@ -124,10 +123,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_patch.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_patch.py index 87676c65a8f..8bcb627aa47 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_patch.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_patch.py @@ -7,9 +7,9 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ +from typing import List - -__all__: list[str] = [] # Add all objects you want publicly available to users at this package level +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_private_endpoint_connections_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_private_endpoint_connections_operations.py index 832f404c47e..91fd9d59765 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_private_endpoint_connections_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_private_endpoint_connections_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +from typing import Any, AsyncIterator, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload from azure.core import AsyncPipelineClient from azure.core.exceptions import ( @@ -29,7 +29,7 @@ from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._private_endpoint_connections_operations import ( build_delete_request, build_get_request, @@ -39,8 +39,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class PrivateEndpointConnectionsOperations: @@ -113,10 +112,7 @@ async def list( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("PrivateEndpointConnectionListResult", pipeline_response.http_response) @@ -180,10 +176,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("PrivateEndpointConnection", pipeline_response.http_response) @@ -330,10 +323,7 @@ async def update( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("PrivateEndpointConnection", pipeline_response.http_response) @@ -385,10 +375,7 @@ async def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_private_link_resources_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_private_link_resources_operations.py index 75359f8ffed..d33f05e3590 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_private_link_resources_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_private_link_resources_operations.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from collections.abc import MutableMapping -from typing import Any, Callable, Optional, TypeVar +from typing import Any, Callable, Dict, Optional, TypeVar from azure.core import AsyncPipelineClient from azure.core.exceptions import ( @@ -24,13 +24,12 @@ from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._private_link_resources_operations import build_list_request from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class PrivateLinkResourcesOperations: @@ -103,10 +102,7 @@ async def list( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("PrivateLinkResourcesListResult", pipeline_response.http_response) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_resolve_private_link_service_id_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_resolve_private_link_service_id_operations.py index e173bbbc3ef..7870b798576 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_resolve_private_link_service_id_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_resolve_private_link_service_id_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, overload from azure.core import AsyncPipelineClient from azure.core.exceptions import ( @@ -25,13 +25,12 @@ from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._resolve_private_link_service_id_operations import build_post_request from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class ResolvePrivateLinkServiceIdOperations: @@ -180,10 +179,7 @@ async def post( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("PrivateLinkResource", pipeline_response.http_response) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_snapshots_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_snapshots_operations.py index a09e86da1a9..9ca16056c21 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_snapshots_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_snapshots_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -28,7 +28,7 @@ from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._snapshots_operations import ( build_create_or_update_request, build_delete_request, @@ -40,8 +40,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class SnapshotsOperations: @@ -64,7 +63,7 @@ def __init__(self, *args, **kwargs) -> None: self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace - def list(self, **kwargs: Any) -> AsyncItemPaged["_models.Snapshot"]: + def list(self, **kwargs: Any) -> AsyncIterable["_models.Snapshot"]: """Gets a list of snapshots in the specified subscription. Gets a list of snapshots in the specified subscription. @@ -133,10 +132,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -144,7 +140,7 @@ async def get_next(next_link=None): return AsyncItemPaged(get_next, extract_data) @distributed_trace - def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) -> AsyncItemPaged["_models.Snapshot"]: + def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) -> AsyncIterable["_models.Snapshot"]: """Lists snapshots in the specified subscription and resource group. Lists snapshots in the specified subscription and resource group. @@ -217,10 +213,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -275,10 +268,7 @@ async def get(self, resource_group_name: str, resource_name: str, **kwargs: Any) if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("Snapshot", pipeline_response.http_response) @@ -415,10 +405,7 @@ async def create_or_update( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("Snapshot", pipeline_response.http_response) @@ -555,10 +542,7 @@ async def update_tags( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("Snapshot", pipeline_response.http_response) @@ -616,10 +600,7 @@ async def delete(self, resource_group_name: str, resource_name: str, **kwargs: A if response.status_code not in [200, 204]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_trusted_access_role_bindings_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_trusted_access_role_bindings_operations.py index 07c07d19d19..652b404d1e2 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_trusted_access_role_bindings_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_trusted_access_role_bindings_operations.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, AsyncIterator, Callable, IO, Optional, TypeVar, Union, cast, overload +from typing import Any, AsyncIterable, AsyncIterator, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import AsyncPipelineClient @@ -32,7 +32,7 @@ from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._trusted_access_role_bindings_operations import ( build_create_or_update_request, build_delete_request, @@ -42,8 +42,7 @@ from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class TrustedAccessRoleBindingsOperations: @@ -68,7 +67,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> AsyncItemPaged["_models.TrustedAccessRoleBinding"]: + ) -> AsyncIterable["_models.TrustedAccessRoleBinding"]: """List trusted access role bindings. List trusted access role bindings. @@ -146,10 +145,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -209,10 +205,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("TrustedAccessRoleBinding", pipeline_response.http_response) @@ -281,10 +274,7 @@ async def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) @@ -482,10 +472,7 @@ async def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_trusted_access_roles_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_trusted_access_roles_operations.py index cc473f5fdc0..916c4369dbb 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_trusted_access_roles_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_trusted_access_roles_operations.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from collections.abc import MutableMapping -from typing import Any, Callable, Optional, TypeVar +from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar import urllib.parse from azure.core import AsyncPipelineClient @@ -26,13 +26,12 @@ from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models -from ..._utils.serialization import Deserializer, Serializer +from ..._serialization import Deserializer, Serializer from ...operations._trusted_access_roles_operations import build_list_request from .._configuration import ContainerServiceClientConfiguration T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class TrustedAccessRolesOperations: @@ -55,7 +54,7 @@ def __init__(self, *args, **kwargs) -> None: self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace - def list(self, location: str, **kwargs: Any) -> AsyncItemPaged["_models.TrustedAccessRole"]: + def list(self, location: str, **kwargs: Any) -> AsyncIterable["_models.TrustedAccessRole"]: """List supported trusted access roles. List supported trusted access roles. @@ -128,10 +127,7 @@ async def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/__init__.py index 17d2140ab05..30bba0c7944 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/__init__.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/__init__.py @@ -106,6 +106,7 @@ MachineOSProfile, MachineOSProfileLinuxProfile, MachineProperties, + MachineSecurityProfile, MachineStatus, MaintenanceConfiguration, MaintenanceConfigurationListResult, @@ -444,6 +445,7 @@ "MachineOSProfile", "MachineOSProfileLinuxProfile", "MachineProperties", + "MachineSecurityProfile", "MachineStatus", "MaintenanceConfiguration", "MaintenanceConfigurationListResult", diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/_models_py3.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/_models_py3.py index a1e140fb85c..b9db088be41 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/_models_py3.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/_models_py3.py @@ -7,15 +7,13 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from collections.abc import MutableMapping import datetime -from typing import Any, Optional, TYPE_CHECKING, Union +from typing import Any, Dict, List, Optional, TYPE_CHECKING, Union -from .._utils import serialization as _serialization +from .. import _serialization if TYPE_CHECKING: from .. import models as _models -JSON = MutableMapping[str, Any] class AbsoluteMonthlySchedule(_serialization.Model): @@ -624,16 +622,16 @@ def __init__( # pylint: disable=too-many-locals upgrade_settings: Optional["_models.AgentPoolUpgradeSettings"] = None, upgrade_settings_blue_green: Optional["_models.AgentPoolBlueGreenUpgradeSettings"] = None, power_state: Optional["_models.PowerState"] = None, - availability_zones: Optional[list[str]] = None, + availability_zones: Optional[List[str]] = None, enable_node_public_ip: Optional[bool] = None, node_public_ip_prefix_id: Optional[str] = None, scale_set_priority: Union[str, "_models.ScaleSetPriority"] = "Regular", scale_set_eviction_policy: Union[str, "_models.ScaleSetEvictionPolicy"] = "Delete", spot_max_price: float = -1, - tags: Optional[dict[str, str]] = None, - node_labels: Optional[dict[str, str]] = None, - node_taints: Optional[list[str]] = None, - node_initialization_taints: Optional[list[str]] = None, + tags: Optional[Dict[str, str]] = None, + node_labels: Optional[Dict[str, str]] = None, + node_taints: Optional[List[str]] = None, + node_initialization_taints: Optional[List[str]] = None, proximity_placement_group_id: Optional[str] = None, kubelet_config: Optional["_models.KubeletConfig"] = None, linux_os_config: Optional["_models.LinuxOSConfig"] = None, @@ -650,7 +648,7 @@ def __init__( # pylint: disable=too-many-locals gpu_profile: Optional["_models.GPUProfile"] = None, artifact_streaming_profile: Optional["_models.AgentPoolArtifactStreamingProfile"] = None, virtual_machines_profile: Optional["_models.VirtualMachinesProfile"] = None, - virtual_machine_nodes_status: Optional[list["_models.VirtualMachineNodes"]] = None, + virtual_machine_nodes_status: Optional[List["_models.VirtualMachineNodes"]] = None, gateway_profile: Optional["_models.AgentPoolGatewayProfile"] = None, status: Optional["_models.AgentPoolStatus"] = None, local_dns_profile: Optional["_models.LocalDNSProfile"] = None, @@ -991,7 +989,7 @@ class AgentPoolAvailableVersions(_serialization.Model): def __init__( self, *, - agent_pool_versions: Optional[list["_models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem"]] = None, + agent_pool_versions: Optional[List["_models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem"]] = None, **kwargs: Any ) -> None: """ @@ -1138,7 +1136,7 @@ class AgentPoolDeleteMachinesParameter(_serialization.Model): "machine_names": {"key": "machineNames", "type": "[str]"}, } - def __init__(self, *, machine_names: list[str], **kwargs: Any) -> None: + def __init__(self, *, machine_names: List[str], **kwargs: Any) -> None: """ :keyword machine_names: The agent pool machine names. Required. :paramtype machine_names: list[str] @@ -1201,7 +1199,7 @@ class AgentPoolListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.AgentPool"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.AgentPool"]] = None, **kwargs: Any) -> None: """ :keyword value: The list of agent pools. :paramtype value: list[~azure.mgmt.containerservice.models.AgentPool] @@ -1233,9 +1231,9 @@ class AgentPoolNetworkProfile(_serialization.Model): def __init__( self, *, - node_public_ip_tags: Optional[list["_models.IPTag"]] = None, - allowed_host_ports: Optional[list["_models.PortRange"]] = None, - application_security_groups: Optional[list[str]] = None, + node_public_ip_tags: Optional[List["_models.IPTag"]] = None, + allowed_host_ports: Optional[List["_models.PortRange"]] = None, + application_security_groups: Optional[List[str]] = None, **kwargs: Any ) -> None: """ @@ -1423,8 +1421,8 @@ def __init__( *, kubernetes_version: str, os_type: Union[str, "_models.OSType"] = "Linux", - upgrades: Optional[list["_models.AgentPoolUpgradeProfilePropertiesUpgradesItem"]] = None, - components_by_releases: Optional[list["_models.ComponentsByRelease"]] = None, + upgrades: Optional[List["_models.AgentPoolUpgradeProfilePropertiesUpgradesItem"]] = None, + components_by_releases: Optional[List["_models.ComponentsByRelease"]] = None, latest_node_image_version: Optional[str] = None, **kwargs: Any ) -> None: @@ -1451,7 +1449,7 @@ def __init__( self.os_type = os_type self.upgrades = upgrades self.components_by_releases = components_by_releases - self.recently_used_versions: Optional[list["_models.AgentPoolRecentlyUsedVersion"]] = None + self.recently_used_versions: Optional[List["_models.AgentPoolRecentlyUsedVersion"]] = None self.latest_node_image_version = latest_node_image_version @@ -1504,14 +1502,6 @@ class AgentPoolUpgradeSettings(_serialization.Model): information, including best practices, see: https://learn.microsoft.com/en-us/azure/aks/upgrade-cluster. :vartype max_surge: str - :ivar min_surge: This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). - If a percentage is specified, it is the percentage of the total agent pool size at the time of - the upgrade. For percentages, fractional nodes are rounded up. If node capacity constraints - prevent full surging, AKS would attempt a slower upgrade with fewer surge nodes. The upgrade - will proceed only if the available surge capacity meets or exceeds minSurge. If minSurge not - specified, the default is 50% of the maxSurge, for example, if maxSurge = 10%, the default is - 5%, if maxSurge = 10, the default is 5. - :vartype min_surge: str :ivar max_unavailable: The maximum number or percentage of nodes that can be simultaneously unavailable during upgrade. This can either be set to an integer (e.g. '1') or a percentage (e.g. '5%'). If a percentage is specified, it is the percentage of the total agent pool size at @@ -1552,7 +1542,6 @@ class AgentPoolUpgradeSettings(_serialization.Model): _attribute_map = { "max_surge": {"key": "maxSurge", "type": "str"}, - "min_surge": {"key": "minSurge", "type": "str"}, "max_unavailable": {"key": "maxUnavailable", "type": "str"}, "max_blocked_nodes": {"key": "maxBlockedNodes", "type": "str"}, "drain_timeout_in_minutes": {"key": "drainTimeoutInMinutes", "type": "int"}, @@ -1564,7 +1553,6 @@ def __init__( self, *, max_surge: Optional[str] = None, - min_surge: Optional[str] = None, max_unavailable: Optional[str] = None, max_blocked_nodes: Optional[str] = None, drain_timeout_in_minutes: Optional[int] = None, @@ -1580,14 +1568,6 @@ def __init__( information, including best practices, see: https://learn.microsoft.com/en-us/azure/aks/upgrade-cluster. :paramtype max_surge: str - :keyword min_surge: This can either be set to an integer (e.g. '5') or a percentage (e.g. - '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the - time of the upgrade. For percentages, fractional nodes are rounded up. If node capacity - constraints prevent full surging, AKS would attempt a slower upgrade with fewer surge nodes. - The upgrade will proceed only if the available surge capacity meets or exceeds minSurge. If - minSurge not specified, the default is 50% of the maxSurge, for example, if maxSurge = 10%, the - default is 5%, if maxSurge = 10, the default is 5. - :paramtype min_surge: str :keyword max_unavailable: The maximum number or percentage of nodes that can be simultaneously unavailable during upgrade. This can either be set to an integer (e.g. '1') or a percentage (e.g. '5%'). If a percentage is specified, it is the percentage of the total agent pool size at @@ -1622,7 +1602,6 @@ def __init__( """ super().__init__(**kwargs) self.max_surge = max_surge - self.min_surge = min_surge self.max_unavailable = max_unavailable self.max_blocked_nodes = max_blocked_nodes self.drain_timeout_in_minutes = drain_timeout_in_minutes @@ -1798,7 +1777,7 @@ class CompatibleVersions(_serialization.Model): "versions": {"key": "versions", "type": "[str]"}, } - def __init__(self, *, name: Optional[str] = None, versions: Optional[list[str]] = None, **kwargs: Any) -> None: + def __init__(self, *, name: Optional[str] = None, versions: Optional[List[str]] = None, **kwargs: Any) -> None: """ :keyword name: The product/service name. :paramtype name: str @@ -1871,7 +1850,7 @@ def __init__( self, *, kubernetes_version: Optional[str] = None, - components: Optional[list["_models.Component"]] = None, + components: Optional[List["_models.Component"]] = None, **kwargs: Any ) -> None: """ @@ -2042,9 +2021,9 @@ def __init__( load_balancer_profile: Optional["_models.ManagedClusterLoadBalancerProfile"] = None, nat_gateway_profile: Optional["_models.ManagedClusterNATGatewayProfile"] = None, static_egress_gateway_profile: Optional["_models.ManagedClusterStaticEgressGatewayProfile"] = None, - pod_cidrs: Optional[list[str]] = None, - service_cidrs: Optional[list[str]] = None, - ip_families: Optional[list[Union[str, "_models.IPFamily"]]] = None, + pod_cidrs: Optional[List[str]] = None, + service_cidrs: Optional[List[str]] = None, + ip_families: Optional[List[Union[str, "_models.IPFamily"]]] = None, pod_link_local_access: Optional[Union[str, "_models.PodLinkLocalAccess"]] = None, kube_proxy_config: Optional["_models.ContainerServiceNetworkProfileKubeProxyConfig"] = None, advanced_networking: Optional["_models.AdvancedNetworking"] = None, @@ -2269,7 +2248,7 @@ class ContainerServiceSshConfiguration(_serialization.Model): "public_keys": {"key": "publicKeys", "type": "[ContainerServiceSshPublicKey]"}, } - def __init__(self, *, public_keys: list["_models.ContainerServiceSshPublicKey"], **kwargs: Any) -> None: + def __init__(self, *, public_keys: List["_models.ContainerServiceSshPublicKey"], **kwargs: Any) -> None: """ :keyword public_keys: The list of SSH public keys used to authenticate with Linux-based VMs. A maximum of 1 key may be specified. Required. @@ -2377,7 +2356,7 @@ class CredentialResults(_serialization.Model): def __init__(self, **kwargs: Any) -> None: """ """ super().__init__(**kwargs) - self.kubeconfigs: Optional[list["_models.CredentialResult"]] = None + self.kubeconfigs: Optional[List["_models.CredentialResult"]] = None class DailySchedule(_serialization.Model): @@ -2505,7 +2484,7 @@ def __init__( self, *, domain_name: Optional[str] = None, - endpoint_details: Optional[list["_models.EndpointDetail"]] = None, + endpoint_details: Optional[List["_models.EndpointDetail"]] = None, **kwargs: Any ) -> None: """ @@ -2632,8 +2611,8 @@ def __init__(self, **kwargs: Any) -> None: self.code: Optional[str] = None self.message: Optional[str] = None self.target: Optional[str] = None - self.details: Optional[list["_models.ErrorDetail"]] = None - self.additional_info: Optional[list["_models.ErrorAdditionalInfo"]] = None + self.details: Optional[List["_models.ErrorDetail"]] = None + self.additional_info: Optional[List["_models.ErrorAdditionalInfo"]] = None class ErrorResponse(_serialization.Model): @@ -2840,7 +2819,7 @@ class GuardrailsAvailableVersionsList(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.GuardrailsAvailableVersion"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.GuardrailsAvailableVersion"]] = None, **kwargs: Any) -> None: """ :keyword value: Array of AKS supported Guardrails versions. :paramtype value: list[~azure.mgmt.containerservice.models.GuardrailsAvailableVersion] @@ -2972,7 +2951,7 @@ class IdentityBindingListResult(_serialization.Model): } def __init__( - self, *, value: list["_models.IdentityBinding"], next_link: Optional[str] = None, **kwargs: Any + self, *, value: List["_models.IdentityBinding"], next_link: Optional[str] = None, **kwargs: Any ) -> None: """ :keyword value: The IdentityBinding items on this page. Required. @@ -3180,8 +3159,8 @@ class IstioComponents(_serialization.Model): def __init__( self, *, - ingress_gateways: Optional[list["_models.IstioIngressGateway"]] = None, - egress_gateways: Optional[list["_models.IstioEgressGateway"]] = None, + ingress_gateways: Optional[List["_models.IstioIngressGateway"]] = None, + egress_gateways: Optional[List["_models.IstioEgressGateway"]] = None, proxy_redirection_mechanism: Optional[Union[str, "_models.ProxyRedirectionMechanism"]] = None, **kwargs: Any ) -> None: @@ -3379,7 +3358,7 @@ def __init__( *, components: Optional["_models.IstioComponents"] = None, certificate_authority: Optional["_models.IstioCertificateAuthority"] = None, - revisions: Optional[list[str]] = None, + revisions: Optional[List[str]] = None, **kwargs: Any ) -> None: """ @@ -3517,7 +3496,7 @@ def __init__( username: "_models.JWTAuthenticatorClaimMappingExpression", groups: Optional["_models.JWTAuthenticatorClaimMappingExpression"] = None, uid: Optional["_models.JWTAuthenticatorClaimMappingExpression"] = None, - extra: Optional[list["_models.JWTAuthenticatorExtraClaimMappingExpression"]] = None, + extra: Optional[List["_models.JWTAuthenticatorExtraClaimMappingExpression"]] = None, **kwargs: Any ) -> None: """ @@ -3602,7 +3581,7 @@ class JWTAuthenticatorIssuer(_serialization.Model): "audiences": {"key": "audiences", "type": "[str]"}, } - def __init__(self, *, url: str, audiences: list[str], **kwargs: Any) -> None: + def __init__(self, *, url: str, audiences: List[str], **kwargs: Any) -> None: """ :keyword url: The issuer URL. The URL must begin with the scheme https and cannot contain a query string or fragment. This must match the "iss" claim in the presented JWT, and the issuer @@ -3641,7 +3620,7 @@ class JWTAuthenticatorListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: list["_models.JWTAuthenticator"], **kwargs: Any) -> None: + def __init__(self, *, value: List["_models.JWTAuthenticator"], **kwargs: Any) -> None: """ :keyword value: The list of JWT authenticators. Required. :paramtype value: list[~azure.mgmt.containerservice.models.JWTAuthenticator] @@ -3700,8 +3679,8 @@ def __init__( *, issuer: "_models.JWTAuthenticatorIssuer", claim_mappings: "_models.JWTAuthenticatorClaimMappings", - claim_validation_rules: Optional[list["_models.JWTAuthenticatorValidationRule"]] = None, - user_validation_rules: Optional[list["_models.JWTAuthenticatorValidationRule"]] = None, + claim_validation_rules: Optional[List["_models.JWTAuthenticatorValidationRule"]] = None, + user_validation_rules: Optional[List["_models.JWTAuthenticatorValidationRule"]] = None, **kwargs: Any ) -> None: """ @@ -3834,7 +3813,7 @@ def __init__( image_gc_high_threshold: Optional[int] = None, image_gc_low_threshold: Optional[int] = None, topology_manager_policy: Optional[str] = None, - allowed_unsafe_sysctls: Optional[list[str]] = None, + allowed_unsafe_sysctls: Optional[List[str]] = None, fail_swap_on: Optional[bool] = None, container_log_max_size_mb: Optional[int] = None, container_log_max_files: Optional[int] = None, @@ -3912,7 +3891,7 @@ class KubernetesPatchVersion(_serialization.Model): "upgrades": {"key": "upgrades", "type": "[str]"}, } - def __init__(self, *, upgrades: Optional[list[str]] = None, **kwargs: Any) -> None: + def __init__(self, *, upgrades: Optional[List[str]] = None, **kwargs: Any) -> None: """ :keyword upgrades: Possible upgrade path for given patch version. :paramtype upgrades: list[str] @@ -3982,7 +3961,7 @@ def __init__( capabilities: Optional["_models.KubernetesVersionCapabilities"] = None, is_default: Optional[bool] = None, is_preview: Optional[bool] = None, - patch_versions: Optional[dict[str, "_models.KubernetesPatchVersion"]] = None, + patch_versions: Optional[Dict[str, "_models.KubernetesPatchVersion"]] = None, **kwargs: Any ) -> None: """ @@ -4018,7 +3997,7 @@ class KubernetesVersionCapabilities(_serialization.Model): } def __init__( - self, *, support_plan: Optional[list[Union[str, "_models.KubernetesSupportPlan"]]] = None, **kwargs: Any + self, *, support_plan: Optional[List[Union[str, "_models.KubernetesSupportPlan"]]] = None, **kwargs: Any ) -> None: """ :keyword support_plan: @@ -4039,7 +4018,7 @@ class KubernetesVersionListResult(_serialization.Model): "values": {"key": "values", "type": "[KubernetesVersion]"}, } - def __init__(self, *, values: Optional[list["_models.KubernetesVersion"]] = None, **kwargs: Any) -> None: + def __init__(self, *, values: Optional[List["_models.KubernetesVersion"]] = None, **kwargs: Any) -> None: """ :keyword values: Array of AKS supported Kubernetes versions. :paramtype values: list[~azure.mgmt.containerservice.models.KubernetesVersion] @@ -4071,8 +4050,8 @@ class LabelSelector(_serialization.Model): def __init__( self, *, - match_labels: Optional[list[str]] = None, - match_expressions: Optional[list["_models.LabelSelectorRequirement"]] = None, + match_labels: Optional[List[str]] = None, + match_expressions: Optional[List["_models.LabelSelectorRequirement"]] = None, **kwargs: Any ) -> None: """ @@ -4115,7 +4094,7 @@ def __init__( *, key: Optional[str] = None, operator: Optional[Union[str, "_models.Operator"]] = None, - values: Optional[list[str]] = None, + values: Optional[List[str]] = None, **kwargs: Any ) -> None: """ @@ -4318,7 +4297,7 @@ class LoadBalancerListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.LoadBalancer"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.LoadBalancer"]] = None, **kwargs: Any) -> None: """ :keyword value: The list of Load Balancers. :paramtype value: list[~azure.mgmt.containerservice.models.LoadBalancer] @@ -4459,8 +4438,8 @@ def __init__( self, *, mode: Union[str, "_models.LocalDNSMode"] = "Preferred", - vnet_dns_overrides: Optional[dict[str, "_models.LocalDNSOverride"]] = None, - kube_dns_overrides: Optional[dict[str, "_models.LocalDNSOverride"]] = None, + vnet_dns_overrides: Optional[Dict[str, "_models.LocalDNSOverride"]] = None, + kube_dns_overrides: Optional[Dict[str, "_models.LocalDNSOverride"]] = None, **kwargs: Any ) -> None: """ @@ -4518,7 +4497,7 @@ class Machine(SubResource): def __init__( self, *, - zones: Optional[list[str]] = None, + zones: Optional[List[str]] = None, properties: Optional["_models.MachineProperties"] = None, **kwargs: Any ) -> None: @@ -4672,12 +4651,12 @@ class MachineKubernetesProfile(_serialization.Model): def __init__( self, *, - node_labels: Optional[dict[str, str]] = None, + node_labels: Optional[Dict[str, str]] = None, orchestrator_version: Optional[str] = None, kubelet_disk_type: Optional[Union[str, "_models.KubeletDiskType"]] = None, kubelet_config: Optional["_models.KubeletConfig"] = None, - node_initialization_taints: Optional[list[str]] = None, - node_taints: Optional[list[str]] = None, + node_initialization_taints: Optional[List[str]] = None, + node_taints: Optional[List[str]] = None, max_pods: Optional[int] = None, workload_runtime: Optional[Union[str, "_models.WorkloadRuntime"]] = None, artifact_streaming_profile: Optional["_models.AgentPoolArtifactStreamingProfile"] = None, @@ -4747,7 +4726,7 @@ class MachineListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.Machine"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.Machine"]] = None, **kwargs: Any) -> None: """ :keyword value: The list of Machines in cluster. :paramtype value: list[~azure.mgmt.containerservice.models.Machine] @@ -4808,7 +4787,7 @@ def __init__( pod_subnet_id: Optional[str] = None, enable_node_public_ip: Optional[bool] = None, node_public_ip_prefix_id: Optional[str] = None, - node_public_ip_tags: Optional[list["_models.IPTag"]] = None, + node_public_ip_tags: Optional[List["_models.IPTag"]] = None, **kwargs: Any ) -> None: """ @@ -4836,7 +4815,7 @@ def __init__( :paramtype node_public_ip_tags: list[~azure.mgmt.containerservice.models.IPTag] """ super().__init__(**kwargs) - self.ip_addresses: Optional[list["_models.MachineIpAddress"]] = None + self.ip_addresses: Optional[List["_models.MachineIpAddress"]] = None self.vnet_subnet_id = vnet_subnet_id self.pod_subnet_id = pod_subnet_id self.enable_node_public_ip = enable_node_public_ip @@ -4996,7 +4975,7 @@ class MachineProperties(_serialization.Model): "Gateway", "ManagedSystem", and "Machines". :vartype mode: str or ~azure.mgmt.containerservice.models.AgentPoolMode :ivar security: The security settings of the machine. - :vartype security: ~azure.mgmt.containerservice.models.AgentPoolSecurityProfile + :vartype security: ~azure.mgmt.containerservice.models.MachineSecurityProfile :ivar priority: The priority for the machine. If not specified, the default is 'Regular'. Known values are: "Spot" and "Regular". :vartype priority: str or ~azure.mgmt.containerservice.models.ScaleSetPriority @@ -5017,7 +4996,6 @@ class MachineProperties(_serialization.Model): _validation = { "resource_id": {"readonly": True}, - "node_image_version": {"readonly": True}, "provisioning_state": {"readonly": True}, "e_tag": {"readonly": True}, "status": {"readonly": True}, @@ -5030,7 +5008,7 @@ class MachineProperties(_serialization.Model): "operating_system": {"key": "operatingSystem", "type": "MachineOSProfile"}, "kubernetes": {"key": "kubernetes", "type": "MachineKubernetesProfile"}, "mode": {"key": "mode", "type": "str"}, - "security": {"key": "security", "type": "AgentPoolSecurityProfile"}, + "security": {"key": "security", "type": "MachineSecurityProfile"}, "priority": {"key": "priority", "type": "str"}, "node_image_version": {"key": "nodeImageVersion", "type": "str"}, "provisioning_state": {"key": "provisioningState", "type": "str"}, @@ -5047,9 +5025,10 @@ def __init__( operating_system: Optional["_models.MachineOSProfile"] = None, kubernetes: Optional["_models.MachineKubernetesProfile"] = None, mode: Optional[Union[str, "_models.AgentPoolMode"]] = None, - security: Optional["_models.AgentPoolSecurityProfile"] = None, + security: Optional["_models.MachineSecurityProfile"] = None, priority: Union[str, "_models.ScaleSetPriority"] = "Regular", - tags: Optional[dict[str, str]] = None, + node_image_version: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, **kwargs: Any ) -> None: """ @@ -5065,10 +5044,12 @@ def __init__( "User", "Gateway", "ManagedSystem", and "Machines". :paramtype mode: str or ~azure.mgmt.containerservice.models.AgentPoolMode :keyword security: The security settings of the machine. - :paramtype security: ~azure.mgmt.containerservice.models.AgentPoolSecurityProfile + :paramtype security: ~azure.mgmt.containerservice.models.MachineSecurityProfile :keyword priority: The priority for the machine. If not specified, the default is 'Regular'. Known values are: "Spot" and "Regular". :paramtype priority: str or ~azure.mgmt.containerservice.models.ScaleSetPriority + :keyword node_image_version: The version of node image. + :paramtype node_image_version: str :keyword tags: The tags to be persisted on the machine. :paramtype tags: dict[str, str] """ @@ -5081,13 +5062,73 @@ def __init__( self.mode = mode self.security = security self.priority = priority - self.node_image_version: Optional[str] = None + self.node_image_version = node_image_version self.provisioning_state: Optional[str] = None self.tags = tags self.e_tag: Optional[str] = None self.status: Optional["_models.MachineStatus"] = None +class MachineSecurityProfile(_serialization.Model): + """The security settings of the machine. + + :ivar ssh_access: SSH access method of an agent pool. Known values are: "LocalUser", + "Disabled", and "EntraId". + :vartype ssh_access: str or ~azure.mgmt.containerservice.models.AgentPoolSSHAccess + :ivar enable_vtpm: vTPM is a Trusted Launch feature for configuring a dedicated secure vault + for keys and measurements held locally on the node. For more details, see + aka.ms/aks/trustedlaunch. If not specified, the default is false. + :vartype enable_vtpm: bool + :ivar enable_secure_boot: Secure Boot is a feature of Trusted Launch which ensures that only + signed operating systems and drivers can boot. For more details, see aka.ms/aks/trustedlaunch. + If not specified, the default is false. + :vartype enable_secure_boot: bool + :ivar enable_encryption_at_host: Whether to enable host based OS and data drive encryption. + This is only supported on certain VM sizes and in certain Azure regions. For more information, + see: https://docs.microsoft.com/azure/aks/enable-host-encryption. + :vartype enable_encryption_at_host: bool + """ + + _attribute_map = { + "ssh_access": {"key": "sshAccess", "type": "str"}, + "enable_vtpm": {"key": "enableVTPM", "type": "bool"}, + "enable_secure_boot": {"key": "enableSecureBoot", "type": "bool"}, + "enable_encryption_at_host": {"key": "enableEncryptionAtHost", "type": "bool"}, + } + + def __init__( + self, + *, + ssh_access: Optional[Union[str, "_models.AgentPoolSSHAccess"]] = None, + enable_vtpm: Optional[bool] = None, + enable_secure_boot: Optional[bool] = None, + enable_encryption_at_host: Optional[bool] = None, + **kwargs: Any + ) -> None: + """ + :keyword ssh_access: SSH access method of an agent pool. Known values are: "LocalUser", + "Disabled", and "EntraId". + :paramtype ssh_access: str or ~azure.mgmt.containerservice.models.AgentPoolSSHAccess + :keyword enable_vtpm: vTPM is a Trusted Launch feature for configuring a dedicated secure vault + for keys and measurements held locally on the node. For more details, see + aka.ms/aks/trustedlaunch. If not specified, the default is false. + :paramtype enable_vtpm: bool + :keyword enable_secure_boot: Secure Boot is a feature of Trusted Launch which ensures that only + signed operating systems and drivers can boot. For more details, see aka.ms/aks/trustedlaunch. + If not specified, the default is false. + :paramtype enable_secure_boot: bool + :keyword enable_encryption_at_host: Whether to enable host based OS and data drive encryption. + This is only supported on certain VM sizes and in certain Azure regions. For more information, + see: https://docs.microsoft.com/azure/aks/enable-host-encryption. + :paramtype enable_encryption_at_host: bool + """ + super().__init__(**kwargs) + self.ssh_access = ssh_access + self.enable_vtpm = enable_vtpm + self.enable_secure_boot = enable_secure_boot + self.enable_encryption_at_host = enable_encryption_at_host + + class MachineStatus(_serialization.Model): """Contains read-only information about the machine. @@ -5182,8 +5223,8 @@ class MaintenanceConfiguration(SubResource): def __init__( self, *, - time_in_week: Optional[list["_models.TimeInWeek"]] = None, - not_allowed_time: Optional[list["_models.TimeSpan"]] = None, + time_in_week: Optional[List["_models.TimeInWeek"]] = None, + not_allowed_time: Optional[List["_models.TimeSpan"]] = None, maintenance_window: Optional["_models.MaintenanceWindow"] = None, **kwargs: Any ) -> None: @@ -5224,7 +5265,7 @@ class MaintenanceConfigurationListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.MaintenanceConfiguration"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.MaintenanceConfiguration"]] = None, **kwargs: Any) -> None: """ :keyword value: The list of maintenance configurations. :paramtype value: list[~azure.mgmt.containerservice.models.MaintenanceConfiguration] @@ -5285,7 +5326,7 @@ def __init__( start_time: str, utc_offset: Optional[str] = None, start_date: Optional[datetime.date] = None, - not_allowed_dates: Optional[list["_models.DateSpan"]] = None, + not_allowed_dates: Optional[List["_models.DateSpan"]] = None, **kwargs: Any ) -> None: """ @@ -5361,7 +5402,7 @@ class TrackedResource(Resource): "location": {"key": "location", "type": "str"}, } - def __init__(self, *, location: str, tags: Optional[dict[str, str]] = None, **kwargs: Any) -> None: + def __init__(self, *, location: str, tags: Optional[Dict[str, str]] = None, **kwargs: Any) -> None: """ :keyword tags: Resource tags. :paramtype tags: dict[str, str] @@ -5659,7 +5700,7 @@ def __init__( # pylint: disable=too-many-locals self, *, location: str, - tags: Optional[dict[str, str]] = None, + tags: Optional[Dict[str, str]] = None, sku: Optional["_models.ManagedClusterSKU"] = None, extended_location: Optional["_models.ExtendedLocation"] = None, identity: Optional["_models.ManagedClusterIdentity"] = None, @@ -5668,11 +5709,11 @@ def __init__( # pylint: disable=too-many-locals kubernetes_version: Optional[str] = None, dns_prefix: Optional[str] = None, fqdn_subdomain: Optional[str] = None, - agent_pool_profiles: Optional[list["_models.ManagedClusterAgentPoolProfile"]] = None, + agent_pool_profiles: Optional[List["_models.ManagedClusterAgentPoolProfile"]] = None, linux_profile: Optional["_models.ContainerServiceLinuxProfile"] = None, windows_profile: Optional["_models.ManagedClusterWindowsProfile"] = None, service_principal_profile: Optional["_models.ManagedClusterServicePrincipalProfile"] = None, - addon_profiles: Optional[dict[str, "_models.ManagedClusterAddonProfile"]] = None, + addon_profiles: Optional[Dict[str, "_models.ManagedClusterAddonProfile"]] = None, pod_identity_profile: Optional["_models.ManagedClusterPodIdentityProfile"] = None, oidc_issuer_profile: Optional["_models.ManagedClusterOIDCIssuerProfile"] = None, node_resource_group: Optional[str] = None, @@ -5687,8 +5728,8 @@ def __init__( # pylint: disable=too-many-locals auto_scaler_profile: Optional["_models.ManagedClusterPropertiesAutoScalerProfile"] = None, api_server_access_profile: Optional["_models.ManagedClusterAPIServerAccessProfile"] = None, disk_encryption_set_id: Optional[str] = None, - identity_profile: Optional[dict[str, "_models.UserAssignedIdentity"]] = None, - private_link_resources: Optional[list["_models.PrivateLinkResource"]] = None, + identity_profile: Optional[Dict[str, "_models.UserAssignedIdentity"]] = None, + private_link_resources: Optional[List["_models.PrivateLinkResource"]] = None, disable_local_accounts: Optional[bool] = None, http_proxy_config: Optional["_models.ManagedClusterHTTPProxyConfig"] = None, security_profile: Optional["_models.ManagedClusterSecurityProfile"] = None, @@ -5946,7 +5987,7 @@ def __init__( *, managed: Optional[bool] = None, enable_azure_rbac: Optional[bool] = None, - admin_group_object_i_ds: Optional[list[str]] = None, + admin_group_object_i_ds: Optional[List[str]] = None, client_app_id: Optional[str] = None, server_app_id: Optional[str] = None, server_app_secret: Optional[str] = None, @@ -6032,7 +6073,7 @@ def __init__( self, *, location: str, - tags: Optional[dict[str, str]] = None, + tags: Optional[Dict[str, str]] = None, kube_config: Optional[bytes] = None, **kwargs: Any ) -> None: @@ -6074,7 +6115,7 @@ class ManagedClusterAddonProfile(_serialization.Model): "identity": {"key": "identity", "type": "ManagedClusterAddonProfileIdentity"}, } - def __init__(self, *, enabled: bool, config: Optional[dict[str, str]] = None, **kwargs: Any) -> None: + def __init__(self, *, enabled: bool, config: Optional[Dict[str, str]] = None, **kwargs: Any) -> None: """ :keyword enabled: Whether the add-on is enabled or not. Required. :paramtype enabled: bool @@ -6460,16 +6501,16 @@ def __init__( # pylint: disable=too-many-locals upgrade_settings: Optional["_models.AgentPoolUpgradeSettings"] = None, upgrade_settings_blue_green: Optional["_models.AgentPoolBlueGreenUpgradeSettings"] = None, power_state: Optional["_models.PowerState"] = None, - availability_zones: Optional[list[str]] = None, + availability_zones: Optional[List[str]] = None, enable_node_public_ip: Optional[bool] = None, node_public_ip_prefix_id: Optional[str] = None, scale_set_priority: Union[str, "_models.ScaleSetPriority"] = "Regular", scale_set_eviction_policy: Union[str, "_models.ScaleSetEvictionPolicy"] = "Delete", spot_max_price: float = -1, - tags: Optional[dict[str, str]] = None, - node_labels: Optional[dict[str, str]] = None, - node_taints: Optional[list[str]] = None, - node_initialization_taints: Optional[list[str]] = None, + tags: Optional[Dict[str, str]] = None, + node_labels: Optional[Dict[str, str]] = None, + node_taints: Optional[List[str]] = None, + node_initialization_taints: Optional[List[str]] = None, proximity_placement_group_id: Optional[str] = None, kubelet_config: Optional["_models.KubeletConfig"] = None, linux_os_config: Optional["_models.LinuxOSConfig"] = None, @@ -6486,7 +6527,7 @@ def __init__( # pylint: disable=too-many-locals gpu_profile: Optional["_models.GPUProfile"] = None, artifact_streaming_profile: Optional["_models.AgentPoolArtifactStreamingProfile"] = None, virtual_machines_profile: Optional["_models.VirtualMachinesProfile"] = None, - virtual_machine_nodes_status: Optional[list["_models.VirtualMachineNodes"]] = None, + virtual_machine_nodes_status: Optional[List["_models.VirtualMachineNodes"]] = None, gateway_profile: Optional["_models.AgentPoolGatewayProfile"] = None, status: Optional["_models.AgentPoolStatus"] = None, local_dns_profile: Optional["_models.LocalDNSProfile"] = None, @@ -7098,16 +7139,16 @@ def __init__( # pylint: disable=too-many-locals upgrade_settings: Optional["_models.AgentPoolUpgradeSettings"] = None, upgrade_settings_blue_green: Optional["_models.AgentPoolBlueGreenUpgradeSettings"] = None, power_state: Optional["_models.PowerState"] = None, - availability_zones: Optional[list[str]] = None, + availability_zones: Optional[List[str]] = None, enable_node_public_ip: Optional[bool] = None, node_public_ip_prefix_id: Optional[str] = None, scale_set_priority: Union[str, "_models.ScaleSetPriority"] = "Regular", scale_set_eviction_policy: Union[str, "_models.ScaleSetEvictionPolicy"] = "Delete", spot_max_price: float = -1, - tags: Optional[dict[str, str]] = None, - node_labels: Optional[dict[str, str]] = None, - node_taints: Optional[list[str]] = None, - node_initialization_taints: Optional[list[str]] = None, + tags: Optional[Dict[str, str]] = None, + node_labels: Optional[Dict[str, str]] = None, + node_taints: Optional[List[str]] = None, + node_initialization_taints: Optional[List[str]] = None, proximity_placement_group_id: Optional[str] = None, kubelet_config: Optional["_models.KubeletConfig"] = None, linux_os_config: Optional["_models.LinuxOSConfig"] = None, @@ -7124,7 +7165,7 @@ def __init__( # pylint: disable=too-many-locals gpu_profile: Optional["_models.GPUProfile"] = None, artifact_streaming_profile: Optional["_models.AgentPoolArtifactStreamingProfile"] = None, virtual_machines_profile: Optional["_models.VirtualMachinesProfile"] = None, - virtual_machine_nodes_status: Optional[list["_models.VirtualMachineNodes"]] = None, + virtual_machine_nodes_status: Optional[List["_models.VirtualMachineNodes"]] = None, gateway_profile: Optional["_models.AgentPoolGatewayProfile"] = None, status: Optional["_models.AgentPoolStatus"] = None, local_dns_profile: Optional["_models.LocalDNSProfile"] = None, @@ -7478,7 +7519,7 @@ class ManagedClusterAPIServerAccessProfile(_serialization.Model): def __init__( self, *, - authorized_ip_ranges: Optional[list[str]] = None, + authorized_ip_ranges: Optional[List[str]] = None, enable_private_cluster: Optional[bool] = None, private_dns_zone: Optional[str] = None, enable_private_cluster_public_fqdn: Optional[bool] = None, @@ -8059,7 +8100,7 @@ def __init__( *, http_proxy: Optional[str] = None, https_proxy: Optional[str] = None, - no_proxy: Optional[list[str]] = None, + no_proxy: Optional[List[str]] = None, trusted_ca: Optional[str] = None, enabled: Optional[bool] = None, **kwargs: Any @@ -8081,7 +8122,7 @@ def __init__( self.http_proxy = http_proxy self.https_proxy = https_proxy self.no_proxy = no_proxy - self.effective_no_proxy: Optional[list[str]] = None + self.effective_no_proxy: Optional[List[str]] = None self.trusted_ca = trusted_ca self.enabled = enabled @@ -8133,9 +8174,9 @@ def __init__( self, *, type: Optional[Union[str, "_models.ResourceIdentityType"]] = None, - delegated_resources: Optional[dict[str, "_models.DelegatedResource"]] = None, + delegated_resources: Optional[Dict[str, "_models.DelegatedResource"]] = None, user_assigned_identities: Optional[ - dict[str, "_models.ManagedServiceIdentityUserAssignedIdentitiesValue"] + Dict[str, "_models.ManagedServiceIdentityUserAssignedIdentitiesValue"] ] = None, **kwargs: Any ) -> None: @@ -8377,7 +8418,7 @@ def __init__( self, *, enabled: Optional[bool] = None, - dns_zone_resource_ids: Optional[list[str]] = None, + dns_zone_resource_ids: Optional[List[str]] = None, nginx: Optional["_models.ManagedClusterIngressProfileNginx"] = None, default_domain: Optional["_models.ManagedClusterIngressDefaultDomainProfile"] = None, **kwargs: Any @@ -8427,7 +8468,7 @@ class ManagedClusterListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.ManagedCluster"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.ManagedCluster"]] = None, **kwargs: Any) -> None: """ :keyword value: The list of managed clusters. :paramtype value: list[~azure.mgmt.containerservice.models.ManagedCluster] @@ -8548,7 +8589,7 @@ def __init__( self.managed_outbound_i_ps = managed_outbound_i_ps self.outbound_ip_prefixes = outbound_ip_prefixes self.outbound_i_ps = outbound_i_ps - self.effective_outbound_i_ps: Optional[list["_models.ResourceReference"]] = None + self.effective_outbound_i_ps: Optional[List["_models.ResourceReference"]] = None self.allocated_outbound_ports = allocated_outbound_ports self.idle_timeout_in_minutes = idle_timeout_in_minutes self.enable_multiple_standard_load_balancers = enable_multiple_standard_load_balancers @@ -8607,7 +8648,7 @@ class ManagedClusterLoadBalancerProfileOutboundIPPrefixes(_serialization.Model): } def __init__( - self, *, public_ip_prefixes: Optional[list["_models.ResourceReference"]] = None, **kwargs: Any + self, *, public_ip_prefixes: Optional[List["_models.ResourceReference"]] = None, **kwargs: Any ) -> None: """ :keyword public_ip_prefixes: A list of public IP prefix resources. @@ -8628,7 +8669,7 @@ class ManagedClusterLoadBalancerProfileOutboundIPs(_serialization.Model): # pyl "public_i_ps": {"key": "publicIPs", "type": "[ResourceReference]"}, } - def __init__(self, *, public_i_ps: Optional[list["_models.ResourceReference"]] = None, **kwargs: Any) -> None: + def __init__(self, *, public_i_ps: Optional[List["_models.ResourceReference"]] = None, **kwargs: Any) -> None: """ :keyword public_i_ps: A list of public IP resources. :paramtype public_i_ps: list[~azure.mgmt.containerservice.models.ResourceReference] @@ -8731,7 +8772,7 @@ def __init__( """ super().__init__(**kwargs) self.managed_outbound_ip_profile = managed_outbound_ip_profile - self.effective_outbound_i_ps: Optional[list["_models.ResourceReference"]] = None + self.effective_outbound_i_ps: Optional[List["_models.ResourceReference"]] = None self.idle_timeout_in_minutes = idle_timeout_in_minutes @@ -8935,7 +8976,7 @@ class ManagedClusterPodIdentityException(_serialization.Model): "pod_labels": {"key": "podLabels", "type": "{str}"}, } - def __init__(self, *, name: str, namespace: str, pod_labels: dict[str, str], **kwargs: Any) -> None: + def __init__(self, *, name: str, namespace: str, pod_labels: Dict[str, str], **kwargs: Any) -> None: """ :keyword name: The name of the pod identity exception. Required. :paramtype name: str @@ -8987,8 +9028,8 @@ def __init__( *, enabled: Optional[bool] = None, allow_network_plugin_kubenet: Optional[bool] = None, - user_assigned_identities: Optional[list["_models.ManagedClusterPodIdentity"]] = None, - user_assigned_identity_exceptions: Optional[list["_models.ManagedClusterPodIdentityException"]] = None, + user_assigned_identities: Optional[List["_models.ManagedClusterPodIdentity"]] = None, + user_assigned_identity_exceptions: Optional[List["_models.ManagedClusterPodIdentityException"]] = None, **kwargs: Any ) -> None: """ @@ -9069,7 +9110,7 @@ def __init__( code: Optional[str] = None, message: Optional[str] = None, target: Optional[str] = None, - details: Optional[list["_models.ManagedClusterPodIdentityProvisioningErrorBody"]] = None, + details: Optional[List["_models.ManagedClusterPodIdentityProvisioningErrorBody"]] = None, **kwargs: Any ) -> None: """ @@ -9154,8 +9195,8 @@ def __init__( kubernetes_version: str, os_type: Union[str, "_models.OSType"] = "Linux", name: Optional[str] = None, - upgrades: Optional[list["_models.ManagedClusterPoolUpgradeProfileUpgradesItem"]] = None, - components_by_releases: Optional[list["_models.ComponentsByRelease"]] = None, + upgrades: Optional[List["_models.ManagedClusterPoolUpgradeProfileUpgradesItem"]] = None, + components_by_releases: Optional[List["_models.ComponentsByRelease"]] = None, **kwargs: Any ) -> None: """ @@ -9575,7 +9616,7 @@ def __init__( image_cleaner: Optional["_models.ManagedClusterSecurityProfileImageCleaner"] = None, image_integrity: Optional["_models.ManagedClusterSecurityProfileImageIntegrity"] = None, node_restriction: Optional["_models.ManagedClusterSecurityProfileNodeRestriction"] = None, - custom_ca_trust_certificates: Optional[list[bytes]] = None, + custom_ca_trust_certificates: Optional[List[bytes]] = None, **kwargs: Any ) -> None: """ @@ -9721,7 +9762,7 @@ def __init__( self, *, enabled: Optional[bool] = None, - identities: Optional[list["_models.ManagedClusterSecurityProfileDefenderSecurityGatingIdentitiesItem"]] = None, + identities: Optional[List["_models.ManagedClusterSecurityProfileDefenderSecurityGatingIdentitiesItem"]] = None, allow_secret_access: Optional[bool] = None, **kwargs: Any ) -> None: @@ -10023,7 +10064,7 @@ def __init__( self, *, location: str, - tags: Optional[dict[str, str]] = None, + tags: Optional[Dict[str, str]] = None, creation_data: Optional["_models.CreationData"] = None, snapshot_type: Union[str, "_models.SnapshotType"] = "NodePool", **kwargs: Any @@ -10066,7 +10107,7 @@ class ManagedClusterSnapshotListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.ManagedClusterSnapshot"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.ManagedClusterSnapshot"]] = None, **kwargs: Any) -> None: """ :keyword value: The list of managed cluster snapshots. :paramtype value: list[~azure.mgmt.containerservice.models.ManagedClusterSnapshot] @@ -10304,7 +10345,7 @@ def __init__( self, *, control_plane_profile: "_models.ManagedClusterPoolUpgradeProfile", - agent_pool_profiles: list["_models.ManagedClusterPoolUpgradeProfile"], + agent_pool_profiles: List["_models.ManagedClusterPoolUpgradeProfile"], **kwargs: Any ) -> None: """ @@ -10572,7 +10613,7 @@ class ManagedNamespace(SubResource): def __init__( self, *, - tags: Optional[dict[str, str]] = None, + tags: Optional[Dict[str, str]] = None, location: Optional[str] = None, properties: Optional["_models.NamespaceProperties"] = None, **kwargs: Any @@ -10610,7 +10651,7 @@ class ManagedNamespaceListResult(_serialization.Model): def __init__( self, *, - value: Optional[list["_models.ManagedNamespace"]] = None, + value: Optional[List["_models.ManagedNamespace"]] = None, next_link: Optional[str] = None, **kwargs: Any ) -> None: @@ -10810,7 +10851,7 @@ class MeshMembershipsListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.MeshMembership"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.MeshMembership"]] = None, **kwargs: Any) -> None: """ :keyword value: The list of mesh memberships. :paramtype value: list[~azure.mgmt.containerservice.models.MeshMembership] @@ -10842,8 +10883,8 @@ def __init__( self, *, revision: Optional[str] = None, - upgrades: Optional[list[str]] = None, - compatible_with: Optional[list["_models.CompatibleVersions"]] = None, + upgrades: Optional[List[str]] = None, + compatible_with: Optional[List["_models.CompatibleVersions"]] = None, **kwargs: Any ) -> None: """ @@ -10925,7 +10966,7 @@ class MeshRevisionProfileList(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.MeshRevisionProfile"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.MeshRevisionProfile"]] = None, **kwargs: Any) -> None: """ :keyword value: Array of service mesh add-on revision profiles for all supported mesh modes. :paramtype value: list[~azure.mgmt.containerservice.models.MeshRevisionProfile] @@ -10946,7 +10987,7 @@ class MeshRevisionProfileProperties(_serialization.Model): "mesh_revisions": {"key": "meshRevisions", "type": "[MeshRevision]"}, } - def __init__(self, *, mesh_revisions: Optional[list["_models.MeshRevision"]] = None, **kwargs: Any) -> None: + def __init__(self, *, mesh_revisions: Optional[List["_models.MeshRevision"]] = None, **kwargs: Any) -> None: """ :keyword mesh_revisions: :paramtype mesh_revisions: list[~azure.mgmt.containerservice.models.MeshRevision] @@ -11019,7 +11060,7 @@ class MeshUpgradeProfileList(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.MeshUpgradeProfile"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.MeshUpgradeProfile"]] = None, **kwargs: Any) -> None: """ :keyword value: Array of supported service mesh add-on upgrade profiles. :paramtype value: list[~azure.mgmt.containerservice.models.MeshUpgradeProfile] @@ -11097,8 +11138,8 @@ class NamespaceProperties(_serialization.Model): def __init__( self, *, - labels: Optional[dict[str, str]] = None, - annotations: Optional[dict[str, str]] = None, + labels: Optional[Dict[str, str]] = None, + annotations: Optional[Dict[str, str]] = None, default_resource_quota: Optional["_models.ResourceQuota"] = None, default_network_policy: Optional["_models.NetworkPolicies"] = None, adoption_policy: Optional[Union[str, "_models.AdoptionPolicy"]] = None, @@ -11327,7 +11368,7 @@ class NodeImageVersionsListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.NodeImageVersion"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.NodeImageVersion"]] = None, **kwargs: Any) -> None: """ :keyword value: Array of AKS Node Image versions. :paramtype value: list[~azure.mgmt.containerservice.models.NodeImageVersion] @@ -11357,7 +11398,7 @@ class OperationListResult(_serialization.Model): def __init__(self, **kwargs: Any) -> None: """ """ super().__init__(**kwargs) - self.value: Optional[list["_models.OperationValue"]] = None + self.value: Optional[List["_models.OperationValue"]] = None class OperationStatusResult(_serialization.Model): @@ -11415,7 +11456,7 @@ def __init__( percent_complete: Optional[float] = None, start_time: Optional[datetime.datetime] = None, end_time: Optional[datetime.datetime] = None, - operations: Optional[list["_models.OperationStatusResult"]] = None, + operations: Optional[List["_models.OperationStatusResult"]] = None, error: Optional["_models.ErrorDetail"] = None, **kwargs: Any ) -> None: @@ -11473,7 +11514,7 @@ class OperationStatusResultList(_serialization.Model): def __init__(self, **kwargs: Any) -> None: """ """ super().__init__(**kwargs) - self.value: Optional[list["_models.OperationStatusResult"]] = None + self.value: Optional[List["_models.OperationStatusResult"]] = None self.next_link: Optional[str] = None @@ -11544,7 +11585,7 @@ def __init__( self, *, category: Optional[str] = None, - endpoints: Optional[list["_models.EndpointDependency"]] = None, + endpoints: Optional[List["_models.EndpointDependency"]] = None, **kwargs: Any ) -> None: """ @@ -11582,7 +11623,7 @@ class OutboundEnvironmentEndpointCollection(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: list["_models.OutboundEnvironmentEndpoint"], **kwargs: Any) -> None: + def __init__(self, *, value: List["_models.OutboundEnvironmentEndpoint"], **kwargs: Any) -> None: """ :keyword value: Collection of resources. Required. :paramtype value: list[~azure.mgmt.containerservice.models.OutboundEnvironmentEndpoint] @@ -11759,7 +11800,7 @@ class PrivateEndpointConnectionListResult(_serialization.Model): "value": {"key": "value", "type": "[PrivateEndpointConnection]"}, } - def __init__(self, *, value: Optional[list["_models.PrivateEndpointConnection"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.PrivateEndpointConnection"]] = None, **kwargs: Any) -> None: """ :keyword value: The collection value. :paramtype value: list[~azure.mgmt.containerservice.models.PrivateEndpointConnection] @@ -11808,7 +11849,7 @@ def __init__( name: Optional[str] = None, type: Optional[str] = None, group_id: Optional[str] = None, - required_members: Optional[list[str]] = None, + required_members: Optional[List[str]] = None, **kwargs: Any ) -> None: """ @@ -11843,7 +11884,7 @@ class PrivateLinkResourcesListResult(_serialization.Model): "value": {"key": "value", "type": "[PrivateLinkResource]"}, } - def __init__(self, *, value: Optional[list["_models.PrivateLinkResource"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.PrivateLinkResource"]] = None, **kwargs: Any) -> None: """ :keyword value: The collection value. :paramtype value: list[~azure.mgmt.containerservice.models.PrivateLinkResource] @@ -11898,7 +11939,7 @@ class RebalanceLoadBalancersRequestBody(_serialization.Model): "load_balancer_names": {"key": "loadBalancerNames", "type": "[str]"}, } - def __init__(self, *, load_balancer_names: Optional[list[str]] = None, **kwargs: Any) -> None: + def __init__(self, *, load_balancer_names: Optional[List[str]] = None, **kwargs: Any) -> None: """ :keyword load_balancer_names: The load balancer names list. :paramtype load_balancer_names: list[str] @@ -12214,7 +12255,7 @@ class SafeguardsAvailableVersionsList(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.SafeguardsAvailableVersion"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.SafeguardsAvailableVersion"]] = None, **kwargs: Any) -> None: """ :keyword value: Array of AKS supported Safeguards versions. :paramtype value: list[~azure.mgmt.containerservice.models.SafeguardsAvailableVersion] @@ -12271,7 +12312,7 @@ class ScaleProfile(_serialization.Model): def __init__( self, *, - manual: Optional[list["_models.ManualScaleProfile"]] = None, + manual: Optional[List["_models.ManualScaleProfile"]] = None, autoscale: Optional["_models.AutoScaleProfile"] = None, **kwargs: Any ) -> None: @@ -12534,7 +12575,7 @@ def __init__( self, *, location: str, - tags: Optional[dict[str, str]] = None, + tags: Optional[Dict[str, str]] = None, creation_data: Optional["_models.CreationData"] = None, snapshot_type: Union[str, "_models.SnapshotType"] = "NodePool", **kwargs: Any @@ -12582,7 +12623,7 @@ class SnapshotListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.Snapshot"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.Snapshot"]] = None, **kwargs: Any) -> None: """ :keyword value: The list of snapshots. :paramtype value: list[~azure.mgmt.containerservice.models.Snapshot] @@ -12887,7 +12928,7 @@ class TagsObject(_serialization.Model): "tags": {"key": "tags", "type": "{str}"}, } - def __init__(self, *, tags: Optional[dict[str, str]] = None, **kwargs: Any) -> None: + def __init__(self, *, tags: Optional[Dict[str, str]] = None, **kwargs: Any) -> None: """ :keyword tags: Resource tags. :paramtype tags: dict[str, str] @@ -12918,7 +12959,7 @@ def __init__( self, *, day: Optional[Union[str, "_models.WeekDay"]] = None, - hour_slots: Optional[list[int]] = None, + hour_slots: Optional[List[int]] = None, **kwargs: Any ) -> None: """ @@ -12996,7 +13037,7 @@ def __init__(self, **kwargs: Any) -> None: super().__init__(**kwargs) self.source_resource_type: Optional[str] = None self.name: Optional[str] = None - self.rules: Optional[list["_models.TrustedAccessRoleRule"]] = None + self.rules: Optional[List["_models.TrustedAccessRoleRule"]] = None class TrustedAccessRoleBinding(Resource): @@ -13049,7 +13090,7 @@ class TrustedAccessRoleBinding(Resource): "roles": {"key": "properties.roles", "type": "[str]"}, } - def __init__(self, *, source_resource_id: str, roles: list[str], **kwargs: Any) -> None: + def __init__(self, *, source_resource_id: str, roles: List[str], **kwargs: Any) -> None: """ :keyword source_resource_id: The ARM resource ID of source resource that trusted access is configured for. Required. @@ -13084,7 +13125,7 @@ class TrustedAccessRoleBindingListResult(_serialization.Model): "next_link": {"key": "nextLink", "type": "str"}, } - def __init__(self, *, value: Optional[list["_models.TrustedAccessRoleBinding"]] = None, **kwargs: Any) -> None: + def __init__(self, *, value: Optional[List["_models.TrustedAccessRoleBinding"]] = None, **kwargs: Any) -> None: """ :keyword value: Role binding list. :paramtype value: list[~azure.mgmt.containerservice.models.TrustedAccessRoleBinding] @@ -13118,7 +13159,7 @@ class TrustedAccessRoleListResult(_serialization.Model): def __init__(self, **kwargs: Any) -> None: """ """ super().__init__(**kwargs) - self.value: Optional[list["_models.TrustedAccessRole"]] = None + self.value: Optional[List["_models.TrustedAccessRole"]] = None self.next_link: Optional[str] = None @@ -13158,11 +13199,11 @@ class TrustedAccessRoleRule(_serialization.Model): def __init__(self, **kwargs: Any) -> None: """ """ super().__init__(**kwargs) - self.verbs: Optional[list[str]] = None - self.api_groups: Optional[list[str]] = None - self.resources: Optional[list[str]] = None - self.resource_names: Optional[list[str]] = None - self.non_resource_ur_ls: Optional[list[str]] = None + self.verbs: Optional[List[str]] = None + self.api_groups: Optional[List[str]] = None + self.resources: Optional[List[str]] = None + self.resource_names: Optional[List[str]] = None + self.non_resource_ur_ls: Optional[List[str]] = None class UpgradeOverrideSettings(_serialization.Model): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/_patch.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/_patch.py index 87676c65a8f..8bcb627aa47 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/_patch.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models/_patch.py @@ -7,9 +7,9 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ +from typing import List - -__all__: list[str] = [] # Add all objects you want publicly available to users at this package level +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py index fb070195d72..6e62491a7bb 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_agent_pools_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +from typing import Any, Callable, Dict, IO, Iterable, Iterator, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import PipelineClient @@ -33,11 +33,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -49,7 +48,7 @@ def build_abort_latest_operation_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -92,7 +91,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -132,7 +131,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -182,7 +181,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -239,7 +238,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -288,7 +287,7 @@ def build_get_upgrade_profile_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -331,7 +330,7 @@ def build_complete_upgrade_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -374,7 +373,7 @@ def build_delete_machines_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -420,7 +419,7 @@ def build_get_available_agent_pool_versions_request( # pylint: disable=name-too _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -460,7 +459,7 @@ def build_upgrade_node_image_version_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -509,7 +508,7 @@ class AgentPoolsOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -558,10 +557,7 @@ def _abort_latest_operation_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -643,7 +639,7 @@ def get_long_running_output(pipeline_response): # pylint: disable=inconsistent- return LROPoller[None](self._client, raw_result, get_long_running_output, polling_method) # type: ignore @distributed_trace - def list(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> ItemPaged["_models.AgentPool"]: + def list(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> Iterable["_models.AgentPool"]: """Gets a list of agent pools in the specified managed cluster. Gets a list of agent pools in the specified managed cluster. @@ -719,10 +715,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -782,10 +775,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("AgentPool", pipeline_response.http_response) @@ -858,10 +848,7 @@ def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) @@ -1086,10 +1073,7 @@ def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -1230,10 +1214,7 @@ def get_upgrade_profile( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("AgentPoolUpgradeProfile", pipeline_response.http_response) @@ -1285,10 +1266,7 @@ def _complete_upgrade_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -1425,10 +1403,7 @@ def _delete_machines_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -1629,10 +1604,7 @@ def get_available_agent_pool_versions( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("AgentPoolAvailableVersions", pipeline_response.http_response) @@ -1684,10 +1656,7 @@ def _upgrade_node_image_version_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_container_service_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_container_service_operations.py index 537c43df3c2..251cff245cd 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_container_service_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_container_service_operations.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from collections.abc import MutableMapping -from typing import Any, Callable, Optional, TypeVar +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar import urllib.parse from azure.core import PipelineClient @@ -27,11 +27,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -41,7 +40,7 @@ def build_list_node_image_versions_request(location: str, subscription_id: str, _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -77,7 +76,7 @@ class ContainerServiceOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -85,7 +84,7 @@ def __init__(self, *args, **kwargs) -> None: self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace - def list_node_image_versions(self, location: str, **kwargs: Any) -> ItemPaged["_models.NodeImageVersion"]: + def list_node_image_versions(self, location: str, **kwargs: Any) -> Iterable["_models.NodeImageVersion"]: """Gets a list of supported NodeImage versions in the specified subscription. Only returns the latest version of each node image. For example there may be an @@ -159,10 +158,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_identity_bindings_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_identity_bindings_operations.py index 42748bf293c..9ffbfbd1093 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_identity_bindings_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_identity_bindings_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +from typing import Any, Callable, Dict, IO, Iterable, Iterator, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import PipelineClient @@ -33,11 +33,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -49,7 +48,7 @@ def build_list_by_managed_cluster_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -89,7 +88,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -137,7 +136,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -188,7 +187,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -242,7 +241,7 @@ class IdentityBindingsOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -252,7 +251,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> ItemPaged["_models.IdentityBinding"]: + ) -> Iterable["_models.IdentityBinding"]: """Gets a list of identity bindings in the specified managed cluster. Gets a list of identity bindings in the specified managed cluster. @@ -328,10 +327,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -391,10 +387,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("IdentityBinding", pipeline_response.http_response) @@ -463,10 +456,7 @@ def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -675,10 +665,7 @@ def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_jwt_authenticators_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_jwt_authenticators_operations.py index dc1d2913959..190f156bc57 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_jwt_authenticators_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_jwt_authenticators_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +from typing import Any, Callable, Dict, IO, Iterable, Iterator, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import PipelineClient @@ -33,11 +33,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -49,7 +48,7 @@ def build_list_by_managed_cluster_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -89,7 +88,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -137,7 +136,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -188,7 +187,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -242,7 +241,7 @@ class JWTAuthenticatorsOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -252,7 +251,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> ItemPaged["_models.JWTAuthenticator"]: + ) -> Iterable["_models.JWTAuthenticator"]: """Gets a list of JWT authenticators in the specified managed cluster. Gets a list of JWT authenticators in the specified managed cluster. @@ -328,10 +327,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -391,10 +387,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("JWTAuthenticator", pipeline_response.http_response) @@ -463,10 +456,7 @@ def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -679,10 +669,7 @@ def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_load_balancers_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_load_balancers_operations.py index 3f09590828f..7d4616dddcf 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_load_balancers_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_load_balancers_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +from typing import Any, Callable, Dict, IO, Iterable, Iterator, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import PipelineClient @@ -33,11 +33,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -49,7 +48,7 @@ def build_list_by_managed_cluster_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -89,7 +88,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -137,7 +136,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -188,7 +187,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -242,7 +241,7 @@ class LoadBalancersOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -252,7 +251,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> ItemPaged["_models.LoadBalancer"]: + ) -> Iterable["_models.LoadBalancer"]: """Gets a list of load balancers in the specified managed cluster. Gets a list of load balancers in the specified managed cluster. @@ -328,10 +327,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -391,10 +387,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("LoadBalancer", pipeline_response.http_response) @@ -541,10 +534,7 @@ def create_or_update( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("LoadBalancer", pipeline_response.http_response) @@ -596,10 +586,7 @@ def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_machines_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_machines_operations.py index 5698e142864..c544c19d8c8 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_machines_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_machines_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +from typing import Any, Callable, Dict, IO, Iterable, Iterator, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import PipelineClient @@ -33,11 +33,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -49,7 +48,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -97,7 +96,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -151,7 +150,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -210,7 +209,7 @@ class MachinesOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -220,7 +219,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list( self, resource_group_name: str, resource_name: str, agent_pool_name: str, **kwargs: Any - ) -> ItemPaged["_models.Machine"]: + ) -> Iterable["_models.Machine"]: """Gets a list of machines in the specified agent pool. Gets a list of machines in the specified agent pool. @@ -299,10 +298,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -365,10 +361,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("Machine", pipeline_response.http_response) @@ -443,10 +436,7 @@ def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_maintenance_configurations_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_maintenance_configurations_operations.py index 5f945d8b7d8..bb2dde69e93 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_maintenance_configurations_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_maintenance_configurations_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, overload import urllib.parse from azure.core import PipelineClient @@ -29,11 +29,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -45,7 +44,7 @@ def build_list_by_managed_cluster_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -85,7 +84,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -126,7 +125,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -170,7 +169,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -217,7 +216,7 @@ class MaintenanceConfigurationsOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -227,7 +226,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> ItemPaged["_models.MaintenanceConfiguration"]: + ) -> Iterable["_models.MaintenanceConfiguration"]: """Gets a list of maintenance configurations in the specified managed cluster. Gets a list of maintenance configurations in the specified managed cluster. @@ -305,10 +304,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -328,7 +324,8 @@ def get( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. Required. :type resource_name: str - :param config_name: The name of the maintenance configuration. Required. + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. :type config_name: str :return: MaintenanceConfiguration or the result of cls(response) :rtype: ~azure.mgmt.containerservice.models.MaintenanceConfiguration @@ -368,10 +365,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("MaintenanceConfiguration", pipeline_response.http_response) @@ -401,7 +395,8 @@ def create_or_update( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. Required. :type resource_name: str - :param config_name: The name of the maintenance configuration. Required. + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. :type config_name: str :param parameters: The maintenance configuration to create or update. Required. :type parameters: ~azure.mgmt.containerservice.models.MaintenanceConfiguration @@ -433,7 +428,8 @@ def create_or_update( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. Required. :type resource_name: str - :param config_name: The name of the maintenance configuration. Required. + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. :type config_name: str :param parameters: The maintenance configuration to create or update. Required. :type parameters: IO[bytes] @@ -463,7 +459,8 @@ def create_or_update( :type resource_group_name: str :param resource_name: The name of the managed cluster resource. Required. :type resource_name: str - :param config_name: The name of the maintenance configuration. Required. + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. :type config_name: str :param parameters: The maintenance configuration to create or update. Is either a MaintenanceConfiguration type or a IO[bytes] type. Required. @@ -518,10 +515,7 @@ def create_or_update( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("MaintenanceConfiguration", pipeline_response.http_response) @@ -544,7 +538,8 @@ def delete( # pylint: disable=inconsistent-return-statements :type resource_group_name: str :param resource_name: The name of the managed cluster resource. Required. :type resource_name: str - :param config_name: The name of the maintenance configuration. Required. + :param config_name: The name of the maintenance configuration. Supported values are 'default', + 'aksManagedAutoUpgradeSchedule', or 'aksManagedNodeOSUpgradeSchedule'. Required. :type config_name: str :return: None or the result of cls(response) :rtype: None @@ -584,10 +579,7 @@ def delete( # pylint: disable=inconsistent-return-statements if response.status_code not in [200, 204]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_cluster_snapshots_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_cluster_snapshots_operations.py index 0c6af664397..caf6792e75b 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_cluster_snapshots_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_cluster_snapshots_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, overload import urllib.parse from azure.core import PipelineClient @@ -29,11 +29,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -43,7 +42,7 @@ def build_list_request(subscription_id: str, **kwargs: Any) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -69,7 +68,7 @@ def build_list_by_resource_group_request(resource_group_name: str, subscription_ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -99,7 +98,7 @@ def build_get_request(resource_group_name: str, resource_name: str, subscription _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -139,7 +138,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -182,7 +181,7 @@ def build_update_tags_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -225,7 +224,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -271,7 +270,7 @@ class ManagedClusterSnapshotsOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -279,7 +278,7 @@ def __init__(self, *args, **kwargs) -> None: self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace - def list(self, **kwargs: Any) -> ItemPaged["_models.ManagedClusterSnapshot"]: + def list(self, **kwargs: Any) -> Iterable["_models.ManagedClusterSnapshot"]: """Gets a list of managed cluster snapshots in the specified subscription. Gets a list of managed cluster snapshots in the specified subscription. @@ -350,10 +349,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -363,7 +359,7 @@ def get_next(next_link=None): @distributed_trace def list_by_resource_group( self, resource_group_name: str, **kwargs: Any - ) -> ItemPaged["_models.ManagedClusterSnapshot"]: + ) -> Iterable["_models.ManagedClusterSnapshot"]: """Lists managed cluster snapshots in the specified subscription and resource group. Lists managed cluster snapshots in the specified subscription and resource group. @@ -438,10 +434,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -496,10 +489,7 @@ def get(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> _m if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedClusterSnapshot", pipeline_response.http_response) @@ -636,10 +626,7 @@ def create_or_update( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedClusterSnapshot", pipeline_response.http_response) @@ -778,10 +765,7 @@ def update_tags( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedClusterSnapshot", pipeline_response.http_response) @@ -841,10 +825,7 @@ def delete( # pylint: disable=inconsistent-return-statements if response.status_code not in [200, 204]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_clusters_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_clusters_operations.py index dc281ffe4ae..a8703d045b0 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_clusters_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_clusters_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +from typing import Any, Callable, Dict, IO, Iterable, Iterator, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import PipelineClient @@ -33,11 +33,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -47,7 +46,7 @@ def build_list_kubernetes_versions_request(location: str, subscription_id: str, _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -75,7 +74,7 @@ def build_list_request(subscription_id: str, **kwargs: Any) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -101,7 +100,7 @@ def build_list_by_resource_group_request(resource_group_name: str, subscription_ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -133,7 +132,7 @@ def build_get_upgrade_profile_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -173,7 +172,7 @@ def build_get_access_profile_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -219,7 +218,7 @@ def build_list_cluster_admin_credentials_request( # pylint: disable=name-too-lo _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -267,7 +266,7 @@ def build_list_cluster_user_credentials_request( # pylint: disable=name-too-lon _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -316,7 +315,7 @@ def build_list_cluster_monitoring_user_credentials_request( # pylint: disable=n _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -356,7 +355,7 @@ def build_get_request(resource_group_name: str, resource_name: str, subscription _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -402,7 +401,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -449,7 +448,7 @@ def build_update_tags_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -500,7 +499,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -546,7 +545,7 @@ def build_reset_service_principal_profile_request( # pylint: disable=name-too-l _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -589,7 +588,7 @@ def build_reset_aad_profile_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -632,7 +631,7 @@ def build_abort_latest_operation_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -672,7 +671,7 @@ def build_rotate_cluster_certificates_request( # pylint: disable=name-too-long _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -712,7 +711,7 @@ def build_rotate_service_account_signing_keys_request( # pylint: disable=name-t _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -752,7 +751,7 @@ def build_stop_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -792,7 +791,7 @@ def build_start_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -832,7 +831,7 @@ def build_run_command_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -875,7 +874,7 @@ def build_get_command_result_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -916,7 +915,7 @@ def build_list_outbound_network_dependencies_endpoints_request( # pylint: disab _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -956,7 +955,7 @@ def build_get_guardrails_versions_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -985,7 +984,7 @@ def build_list_guardrails_versions_request(location: str, subscription_id: str, _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1015,7 +1014,7 @@ def build_get_safeguards_versions_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1044,7 +1043,7 @@ def build_list_safeguards_versions_request(location: str, subscription_id: str, _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1074,7 +1073,7 @@ def build_list_mesh_revision_profiles_request( # pylint: disable=name-too-long _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1104,7 +1103,7 @@ def build_get_mesh_revision_profile_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1142,7 +1141,7 @@ def build_list_mesh_upgrade_profiles_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1182,7 +1181,7 @@ def build_get_mesh_upgrade_profile_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -1230,7 +1229,7 @@ def build_rebalance_load_balancers_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -1279,7 +1278,7 @@ class ManagedClustersOperations: # pylint: disable=too-many-public-methods models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -1331,10 +1330,7 @@ def list_kubernetes_versions(self, location: str, **kwargs: Any) -> _models.Kube if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("KubernetesVersionListResult", pipeline_response.http_response) @@ -1345,7 +1341,7 @@ def list_kubernetes_versions(self, location: str, **kwargs: Any) -> _models.Kube return deserialized # type: ignore @distributed_trace - def list(self, **kwargs: Any) -> ItemPaged["_models.ManagedCluster"]: + def list(self, **kwargs: Any) -> Iterable["_models.ManagedCluster"]: """Gets a list of managed clusters in the specified subscription. Gets a list of managed clusters in the specified subscription. @@ -1414,10 +1410,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -1425,7 +1418,7 @@ def get_next(next_link=None): return ItemPaged(get_next, extract_data) @distributed_trace - def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) -> ItemPaged["_models.ManagedCluster"]: + def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) -> Iterable["_models.ManagedCluster"]: """Lists managed clusters in the specified subscription and resource group. Lists managed clusters in the specified subscription and resource group. @@ -1498,10 +1491,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -1558,10 +1548,7 @@ def get_upgrade_profile( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedClusterUpgradeProfile", pipeline_response.http_response) @@ -1627,10 +1614,7 @@ def get_access_profile( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedClusterAccessProfile", pipeline_response.http_response) @@ -1693,10 +1677,7 @@ def list_cluster_admin_credentials( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) @@ -1770,10 +1751,7 @@ def list_cluster_user_credentials( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) @@ -1836,10 +1814,7 @@ def list_cluster_monitoring_user_credentials( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) @@ -1897,10 +1872,7 @@ def get(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> _m if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedCluster", pipeline_response.http_response) @@ -1971,10 +1943,7 @@ def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) @@ -2201,10 +2170,7 @@ def _update_tags_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) @@ -2407,10 +2373,7 @@ def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -2551,10 +2514,7 @@ def _reset_service_principal_profile_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -2753,10 +2713,7 @@ def _reset_aad_profile_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -2944,10 +2901,7 @@ def _abort_latest_operation_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -3066,10 +3020,7 @@ def _rotate_cluster_certificates_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -3184,10 +3135,7 @@ def _rotate_service_account_signing_keys_initial( # pylint: disable=name-too-lo except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -3299,10 +3247,7 @@ def _stop_initial(self, resource_group_name: str, resource_name: str, **kwargs: except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -3416,10 +3361,7 @@ def _start_initial(self, resource_group_name: str, resource_name: str, **kwargs: except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -3548,10 +3490,7 @@ def _run_command_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -3758,10 +3697,7 @@ def get_command_result( if response.status_code not in [200, 202]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = None @@ -3780,7 +3716,7 @@ def get_command_result( @distributed_trace def list_outbound_network_dependencies_endpoints( # pylint: disable=name-too-long self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> ItemPaged["_models.OutboundEnvironmentEndpoint"]: + ) -> Iterable["_models.OutboundEnvironmentEndpoint"]: """Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified managed cluster. @@ -3860,10 +3796,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -3917,10 +3850,7 @@ def get_guardrails_versions(self, location: str, version: str, **kwargs: Any) -> if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("GuardrailsAvailableVersion", pipeline_response.http_response) @@ -3931,7 +3861,7 @@ def get_guardrails_versions(self, location: str, version: str, **kwargs: Any) -> return deserialized # type: ignore @distributed_trace - def list_guardrails_versions(self, location: str, **kwargs: Any) -> ItemPaged["_models.GuardrailsAvailableVersion"]: + def list_guardrails_versions(self, location: str, **kwargs: Any) -> Iterable["_models.GuardrailsAvailableVersion"]: """Gets a list of supported Guardrails versions in the specified subscription and location. Contains list of Guardrails version along with its support info and whether it is a default @@ -4006,10 +3936,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -4063,10 +3990,7 @@ def get_safeguards_versions(self, location: str, version: str, **kwargs: Any) -> if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("SafeguardsAvailableVersion", pipeline_response.http_response) @@ -4077,7 +4001,7 @@ def get_safeguards_versions(self, location: str, version: str, **kwargs: Any) -> return deserialized # type: ignore @distributed_trace - def list_safeguards_versions(self, location: str, **kwargs: Any) -> ItemPaged["_models.SafeguardsAvailableVersion"]: + def list_safeguards_versions(self, location: str, **kwargs: Any) -> Iterable["_models.SafeguardsAvailableVersion"]: """Gets a list of supported Safeguards versions in the specified subscription and location. Contains list of Safeguards version along with its support info and whether it is a default @@ -4152,10 +4076,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -4163,7 +4084,7 @@ def get_next(next_link=None): return ItemPaged(get_next, extract_data) @distributed_trace - def list_mesh_revision_profiles(self, location: str, **kwargs: Any) -> ItemPaged["_models.MeshRevisionProfile"]: + def list_mesh_revision_profiles(self, location: str, **kwargs: Any) -> Iterable["_models.MeshRevisionProfile"]: """Lists mesh revision profiles for all meshes in the specified location. Contains extra metadata on each revision, including supported revisions, cluster compatibility @@ -4236,10 +4157,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -4294,10 +4212,7 @@ def get_mesh_revision_profile(self, location: str, mode: str, **kwargs: Any) -> if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("MeshRevisionProfile", pipeline_response.http_response) @@ -4310,7 +4225,7 @@ def get_mesh_revision_profile(self, location: str, mode: str, **kwargs: Any) -> @distributed_trace def list_mesh_upgrade_profiles( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> ItemPaged["_models.MeshUpgradeProfile"]: + ) -> Iterable["_models.MeshUpgradeProfile"]: """Lists available upgrades for all service meshes in a specific cluster. Lists available upgrades for all service meshes in a specific cluster. @@ -4386,10 +4301,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -4449,10 +4361,7 @@ def get_mesh_upgrade_profile( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("MeshUpgradeProfile", pipeline_response.http_response) @@ -4519,10 +4428,7 @@ def _rebalance_load_balancers_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_namespaces_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_namespaces_operations.py index 3568ff4b996..67cd89f5d87 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_namespaces_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_managed_namespaces_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +from typing import Any, Callable, Dict, IO, Iterable, Iterator, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import PipelineClient @@ -33,11 +33,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -49,7 +48,7 @@ def build_list_by_managed_cluster_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -89,7 +88,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -137,7 +136,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -188,7 +187,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -236,7 +235,7 @@ def build_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -287,7 +286,7 @@ def build_list_credential_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -341,7 +340,7 @@ class ManagedNamespacesOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -351,7 +350,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> ItemPaged["_models.ManagedNamespace"]: + ) -> Iterable["_models.ManagedNamespace"]: """Gets a list of managed namespaces in the specified managed cluster. Gets a list of managed namespaces in the specified managed cluster. @@ -427,10 +426,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -490,10 +486,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedNamespace", pipeline_response.http_response) @@ -562,10 +555,7 @@ def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -782,10 +772,7 @@ def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} @@ -1006,10 +993,7 @@ def update( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("ManagedNamespace", pipeline_response.http_response) @@ -1072,10 +1056,7 @@ def list_credential( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("CredentialResults", pipeline_response.http_response) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_mesh_memberships_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_mesh_memberships_operations.py index b3ba58bf11d..9a9b54e3c0a 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_mesh_memberships_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_mesh_memberships_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +from typing import Any, Callable, Dict, IO, Iterable, Iterator, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import PipelineClient @@ -33,11 +33,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -49,7 +48,7 @@ def build_list_by_managed_cluster_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -89,7 +88,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -137,7 +136,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -188,7 +187,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -242,7 +241,7 @@ class MeshMembershipsOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -252,7 +251,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list_by_managed_cluster( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> ItemPaged["_models.MeshMembership"]: + ) -> Iterable["_models.MeshMembership"]: """Lists mesh memberships in a managed cluster. Lists mesh memberships in a managed cluster. @@ -328,10 +327,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -391,10 +387,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("MeshMembership", pipeline_response.http_response) @@ -463,10 +456,7 @@ def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) @@ -660,10 +650,7 @@ def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_operation_status_result_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_operation_status_result_operations.py index e622d5be2ae..582ab7ac1e5 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_operation_status_result_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_operation_status_result_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from collections.abc import MutableMapping -from typing import Any, Callable, Optional, TypeVar +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar import urllib.parse from azure.core import PipelineClient @@ -28,11 +28,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -44,7 +43,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -84,7 +83,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -130,7 +129,7 @@ def build_get_by_agent_pool_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -180,7 +179,7 @@ class OperationStatusResultOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -190,7 +189,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> ItemPaged["_models.OperationStatusResult"]: + ) -> Iterable["_models.OperationStatusResult"]: """Gets a list of operations in the specified managedCluster. Gets a list of operations in the specified managedCluster. @@ -267,10 +266,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -330,10 +326,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("OperationStatusResult", pipeline_response.http_response) @@ -399,10 +392,7 @@ def get_by_agent_pool( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("OperationStatusResult", pipeline_response.http_response) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_operations.py index e62a2b567f1..eee70d493fb 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_operations.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from collections.abc import MutableMapping -from typing import Any, Callable, Optional, TypeVar +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar import urllib.parse from azure.core import PipelineClient @@ -27,11 +27,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -41,7 +40,7 @@ def build_list_request(**kwargs: Any) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -68,7 +67,7 @@ class Operations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -76,7 +75,7 @@ def __init__(self, *args, **kwargs) -> None: self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace - def list(self, **kwargs: Any) -> ItemPaged["_models.OperationValue"]: + def list(self, **kwargs: Any) -> Iterable["_models.OperationValue"]: """Gets a list of operations. Gets a list of operations. @@ -144,10 +143,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_patch.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_patch.py index 87676c65a8f..8bcb627aa47 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_patch.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_patch.py @@ -7,9 +7,9 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ +from typing import List - -__all__: list[str] = [] # Add all objects you want publicly available to users at this package level +__all__: List[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_private_endpoint_connections_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_private_endpoint_connections_operations.py index 7320ef748b4..b671119e817 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_private_endpoint_connections_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_private_endpoint_connections_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +from typing import Any, Callable, Dict, IO, Iterator, Optional, TypeVar, Union, cast, overload from azure.core import PipelineClient from azure.core.exceptions import ( @@ -31,11 +31,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -47,7 +46,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -91,7 +90,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -138,7 +137,7 @@ def build_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -188,7 +187,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -237,7 +236,7 @@ class PrivateEndpointConnectionsOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -295,10 +294,7 @@ def list( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("PrivateEndpointConnectionListResult", pipeline_response.http_response) @@ -362,10 +358,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("PrivateEndpointConnection", pipeline_response.http_response) @@ -512,10 +505,7 @@ def update( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("PrivateEndpointConnection", pipeline_response.http_response) @@ -567,10 +557,7 @@ def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_private_link_resources_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_private_link_resources_operations.py index c404c557bef..2ff0f51eae7 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_private_link_resources_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_private_link_resources_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from collections.abc import MutableMapping -from typing import Any, Callable, Optional, TypeVar +from typing import Any, Callable, Dict, Optional, TypeVar from azure.core import PipelineClient from azure.core.exceptions import ( @@ -26,11 +26,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -42,7 +41,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -88,7 +87,7 @@ class PrivateLinkResourcesOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -146,10 +145,7 @@ def list( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("PrivateLinkResourcesListResult", pipeline_response.http_response) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_resolve_private_link_service_id_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_resolve_private_link_service_id_operations.py index 863a478d0d1..982fcefcece 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_resolve_private_link_service_id_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_resolve_private_link_service_id_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, overload from azure.core import PipelineClient from azure.core.exceptions import ( @@ -27,11 +27,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -43,7 +42,7 @@ def build_post_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -92,7 +91,7 @@ class ResolvePrivateLinkServiceIdOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -226,10 +225,7 @@ def post( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("PrivateLinkResource", pipeline_response.http_response) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_snapshots_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_snapshots_operations.py index 0b153013647..3fbc20f4e66 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_snapshots_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_snapshots_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Optional, TypeVar, Union, overload +from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, overload import urllib.parse from azure.core import PipelineClient @@ -29,11 +29,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -43,7 +42,7 @@ def build_list_request(subscription_id: str, **kwargs: Any) -> HttpRequest: _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -67,7 +66,7 @@ def build_list_by_resource_group_request(resource_group_name: str, subscription_ _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -97,7 +96,7 @@ def build_get_request(resource_group_name: str, resource_name: str, subscription _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -137,7 +136,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -180,7 +179,7 @@ def build_update_tags_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -223,7 +222,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -269,7 +268,7 @@ class SnapshotsOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -277,7 +276,7 @@ def __init__(self, *args, **kwargs) -> None: self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace - def list(self, **kwargs: Any) -> ItemPaged["_models.Snapshot"]: + def list(self, **kwargs: Any) -> Iterable["_models.Snapshot"]: """Gets a list of snapshots in the specified subscription. Gets a list of snapshots in the specified subscription. @@ -346,10 +345,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -357,7 +353,7 @@ def get_next(next_link=None): return ItemPaged(get_next, extract_data) @distributed_trace - def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) -> ItemPaged["_models.Snapshot"]: + def list_by_resource_group(self, resource_group_name: str, **kwargs: Any) -> Iterable["_models.Snapshot"]: """Lists snapshots in the specified subscription and resource group. Lists snapshots in the specified subscription and resource group. @@ -430,10 +426,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -488,10 +481,7 @@ def get(self, resource_group_name: str, resource_name: str, **kwargs: Any) -> _m if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("Snapshot", pipeline_response.http_response) @@ -628,10 +618,7 @@ def create_or_update( if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("Snapshot", pipeline_response.http_response) @@ -768,10 +755,7 @@ def update_tags( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("Snapshot", pipeline_response.http_response) @@ -831,10 +815,7 @@ def delete( # pylint: disable=inconsistent-return-statements if response.status_code not in [200, 204]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_trusted_access_role_bindings_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_trusted_access_role_bindings_operations.py index 5bff1f5beab..ab1c7676ea8 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_trusted_access_role_bindings_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_trusted_access_role_bindings_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- from collections.abc import MutableMapping from io import IOBase -from typing import Any, Callable, IO, Iterator, Optional, TypeVar, Union, cast, overload +from typing import Any, Callable, Dict, IO, Iterable, Iterator, Optional, TypeVar, Union, cast, overload import urllib.parse from azure.core import PipelineClient @@ -33,11 +33,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -49,7 +48,7 @@ def build_list_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -93,7 +92,7 @@ def build_get_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -145,7 +144,7 @@ def build_create_or_update_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None)) accept = _headers.pop("Accept", "application/json") @@ -200,7 +199,7 @@ def build_delete_request( _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -254,7 +253,7 @@ class TrustedAccessRoleBindingsOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -264,7 +263,7 @@ def __init__(self, *args, **kwargs) -> None: @distributed_trace def list( self, resource_group_name: str, resource_name: str, **kwargs: Any - ) -> ItemPaged["_models.TrustedAccessRoleBinding"]: + ) -> Iterable["_models.TrustedAccessRoleBinding"]: """List trusted access role bindings. List trusted access role bindings. @@ -342,10 +341,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response @@ -405,10 +401,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize("TrustedAccessRoleBinding", pipeline_response.http_response) @@ -477,10 +470,7 @@ def _create_or_update_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = response.stream_download(self._client._pipeline, decompress=_decompress) @@ -678,10 +668,7 @@ def _delete_initial( except (StreamConsumedError, StreamClosedError): pass map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) response_headers = {} diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_trusted_access_roles_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_trusted_access_roles_operations.py index 6d2f27aaecb..41816f65ef6 100644 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_trusted_access_roles_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/operations/_trusted_access_roles_operations.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from collections.abc import MutableMapping -from typing import Any, Callable, Optional, TypeVar +from typing import Any, Callable, Dict, Iterable, Optional, TypeVar import urllib.parse from azure.core import PipelineClient @@ -27,11 +27,10 @@ from .. import models as _models from .._configuration import ContainerServiceClientConfiguration -from .._utils.serialization import Deserializer, Serializer +from .._serialization import Deserializer, Serializer T = TypeVar("T") -ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, dict[str, Any]], Any]] -List = list +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False @@ -41,7 +40,7 @@ def build_list_request(location: str, subscription_id: str, **kwargs: Any) -> Ht _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {}) _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) - api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-09-02-preview")) + api_version: str = kwargs.pop("api_version", _params.pop("api-version", "2025-10-02-preview")) accept = _headers.pop("Accept", "application/json") # Construct URL @@ -77,7 +76,7 @@ class TrustedAccessRolesOperations: models = _models - def __init__(self, *args, **kwargs) -> None: + def __init__(self, *args, **kwargs): input_args = list(args) self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client") self._config: ContainerServiceClientConfiguration = input_args.pop(0) if input_args else kwargs.pop("config") @@ -85,7 +84,7 @@ def __init__(self, *args, **kwargs) -> None: self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace - def list(self, location: str, **kwargs: Any) -> ItemPaged["_models.TrustedAccessRole"]: + def list(self, location: str, **kwargs: Any) -> Iterable["_models.TrustedAccessRole"]: """List supported trusted access roles. List supported trusted access roles. @@ -157,10 +156,7 @@ def get_next(next_link=None): if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize.failsafe_deserialize( - _models.ErrorResponse, - pipeline_response, - ) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response diff --git a/src/aks-preview/setup.py b/src/aks-preview/setup.py index 71aea34136e..67b4629cef2 100644 --- a/src/aks-preview/setup.py +++ b/src/aks-preview/setup.py @@ -9,7 +9,7 @@ from setuptools import find_packages, setup -VERSION = "19.0.0b16" +VERSION = "19.0.0b17" CLASSIFIERS = [ "Development Status :: 4 - Beta", diff --git a/src/confcom/HISTORY.rst b/src/confcom/HISTORY.rst index 06434b1a04d..8ffb3997568 100644 --- a/src/confcom/HISTORY.rst +++ b/src/confcom/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.4.5 +++++++ +* Drop the dependency on OPA + 1.4.4 ++++++ * Improve the package building process diff --git a/src/confcom/azext_confcom/lib/opa.py b/src/confcom/azext_confcom/lib/opa.py deleted file mode 100644 index 4b1fa5150d5..00000000000 --- a/src/confcom/azext_confcom/lib/opa.py +++ /dev/null @@ -1,62 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -import platform -import requests -import hashlib -import json -import os -import subprocess - -from typing import Iterable -from pathlib import Path -from azext_confcom.lib.paths import get_binaries_dir - - -_binaries_dir = get_binaries_dir() -_opa_binaries = { - "Linux": { - "path": _binaries_dir / "opa", - "url": "https://github.com/open-policy-agent/opa/releases/download/v1.10.1/opa_linux_amd64", - "sha256": "fe8e191d44fec33db2a3d0ca788b9f83f866d980c5371063620c3c6822792877", - }, - "Windows": { - "path": _binaries_dir / "opa.exe", - "url": "https://github.com/open-policy-agent/opa/releases/download/v1.10.1/opa_windows_amd64.exe", - "sha256": "4c932053350eabca47681208924046fbf3ad9de922d6853fb12cddf59aef15ce", - }, -} - - -def opa_get(): - - for binary_info in _opa_binaries.values(): - opa_fetch_resp = requests.get(binary_info["url"], verify=True) - opa_fetch_resp.raise_for_status() - - assert hashlib.sha256(opa_fetch_resp.content).hexdigest() == binary_info["sha256"] - - with open(binary_info["path"], "wb") as f: - f.write(opa_fetch_resp.content) - - os.chmod(binary_info["path"], 0o755) - - -def opa_run(args: Iterable[str]) -> subprocess.CompletedProcess: - return subprocess.run( - [_opa_binaries[platform.system()]["path"], *args], - check=True, - stdout=subprocess.PIPE, - text=True, - ) - - -def opa_eval(data_path: Path, query: str): - return json.loads(opa_run([ - "eval", - "--format", "json", - "--data", str(data_path), - query, - ]).stdout.strip()) diff --git a/src/confcom/azext_confcom/lib/serialization.py b/src/confcom/azext_confcom/lib/serialization.py index 4dcaab18bfe..7702bfef8ba 100644 --- a/src/confcom/azext_confcom/lib/serialization.py +++ b/src/confcom/azext_confcom/lib/serialization.py @@ -4,15 +4,14 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from dataclasses import asdict import json -from pathlib import Path +import re + +from dataclasses import asdict from textwrap import dedent from typing import Union -from azext_confcom.lib.opa import opa_eval from azext_confcom.lib.policy import Container, FragmentReference, Fragment, Policy -import re # This is a single entrypoint for serializing both Policy and Fragment objects @@ -80,21 +79,58 @@ def fragment_serialize(fragment: Fragment): def policy_deserialize(file_path: str): with open(file_path, 'r') as f: - content = f.read() - - package_match = re.search(r'package\s+(\S+)', content) - package_name = package_match.group(1) - - PolicyType = Policy if package_name == "policy" else Fragment - - raw_json = opa_eval(Path(file_path), f"data.{package_name}")["result"][0]["expressions"][0]["value"] - - raw_fragments = raw_json.pop("fragments", []) - raw_containers = raw_json.pop("containers", []) + content = f.readlines() + + def _brace_delta(line: str) -> int: + delta = 0 + for char in line: + if char in ['{', '[', '(']: + delta += 1 + elif char in ['}', ']', ')']: + delta -= 1 + return delta + + policy_json = {} + line_idx = 0 + + while line_idx < len(content): + line = content[line_idx] + + packages_search = re.search(r'package\s+(\S+)', line) + if packages_search: + policy_json["package"] = packages_search.group(1) + line_idx += 1 + continue + + assignment = re.match(r"\s*(?P[A-Za-z0-9_]+)\s*:=\s*(?P.*)", line) + if assignment: + name = assignment.group('name') + expr = assignment.group('expr').strip() + expr_parts = [expr] + depth = _brace_delta(expr) + + while depth > 0 and line_idx + 1 < len(content): + line_idx += 1 + continuation = content[line_idx].strip() + expr_parts.append(continuation) + depth += _brace_delta(continuation) + + full_expr = "\n".join(expr_parts).strip().rstrip(",") + try: + policy_json[name] = json.loads(full_expr) + except json.JSONDecodeError: + # Skip non-literal expressions (e.g. data.framework bindings) + ... + + line_idx += 1 + + PolicyType = Policy if policy_json.get("package") == "policy" else Fragment + + raw_fragments = policy_json.pop("fragments", []) + raw_containers = policy_json.pop("containers", []) return PolicyType( - package=package_name, + **policy_json, fragments=[FragmentReference(**fragment) for fragment in raw_fragments], containers=[Container(**container) for container in raw_containers], - **raw_json ) diff --git a/src/confcom/setup.py b/src/confcom/setup.py index 2f56737c440..7b8c1157a0d 100644 --- a/src/confcom/setup.py +++ b/src/confcom/setup.py @@ -11,7 +11,6 @@ from azext_confcom.rootfs_proxy import SecurityPolicyProxy from azext_confcom.kata_proxy import KataPolicyGenProxy from azext_confcom.cose_proxy import CoseSignToolProxy -from azext_confcom.lib.opa import opa_get try: from azure_bdist_wheel import cmdclass @@ -20,7 +19,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") -VERSION = "1.4.4" +VERSION = "1.4.5" # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -49,7 +48,6 @@ SecurityPolicyProxy.download_binaries() KataPolicyGenProxy.download_binaries() CoseSignToolProxy.download_binaries() -opa_get() with open("README.md", "r", encoding="utf-8") as f: README = f.read() diff --git a/src/dataprotection/HISTORY.rst b/src/dataprotection/HISTORY.rst index 1204567e8b5..81a31859a51 100644 --- a/src/dataprotection/HISTORY.rst +++ b/src/dataprotection/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +1.8.0 ++++++ +* `az dataprotection backup-instance update`: New parameter: `--backup-configuration` to update AKS datasource parameters. +* Fix in `helpers.py` to correctly prepare/normalize AKS backup-configuration payloads passed via the CLI. 1.7.1 +++++ diff --git a/src/dataprotection/azext_dataprotection/manual/_help.py b/src/dataprotection/azext_dataprotection/manual/_help.py index a9e1ea527b7..8774ac429f5 100644 --- a/src/dataprotection/azext_dataprotection/manual/_help.py +++ b/src/dataprotection/azext_dataprotection/manual/_help.py @@ -31,6 +31,8 @@ examples: - name: Update backed up containers for a vaulted blob backup instance text: az dataprotection backup-instance update --backup-instance-name MyDisk1 --vaulted-blob-container-list {backup_configuration} -g MyResourceGroup --vault-name MyVault + - name: Update backed up namespaces for an aks backup instance + text: az dataprotection backup-instance update --backup-instance-name MyAKSCluster1 --aks-backup-configuration {aks_backup_configuration} -g MyResourceGroup --vault-name MyVault """ helps['dataprotection backup-instance update-policy'] = """ diff --git a/src/dataprotection/azext_dataprotection/manual/_params.py b/src/dataprotection/azext_dataprotection/manual/_params.py index 4d230c7a27d..0dc23ec5fd0 100644 --- a/src/dataprotection/azext_dataprotection/manual/_params.py +++ b/src/dataprotection/azext_dataprotection/manual/_params.py @@ -134,6 +134,9 @@ def load_arguments(self, _): c.argument('vaulted_blob_container_list', type=validate_file_or_dict, options_list=['--vaulted-blob-container-list', '--container-blob-list'], help="Enter the container list to modify a vaulted blob backup. The output for " "'az dataprotection backup-instance initialize-backupconfig' needs to be provided as input") + c.argument('aks_backup_configuration', type=validate_file_or_dict, options_list=['--aks-backup-configuration', '--aks-config'], + help="Enter the AKS backup configuration to modify AKS backup datasource parameters. " + "The output for 'az dataprotection backup-instance initialize-backupconfig --datasource-type AzureKubernetesService' needs to be provided as input.") c.argument('use_system_assigned_identity', options_list=['--system-assigned', '--use-system-identity', '--use-system-assigned-identity'], arg_type=get_three_state_flag(), help="Use system assigned identity") c.argument('user_assigned_identity_arm_url', options_list=['--user-assigned', '--user-assigned-identity-arm-url', '--uami'], type=str, help="ARM ID of the User Assigned Managed Identity") diff --git a/src/dataprotection/azext_dataprotection/manual/custom.py b/src/dataprotection/azext_dataprotection/manual/custom.py index e1857a44b48..670c15ff5a4 100644 --- a/src/dataprotection/azext_dataprotection/manual/custom.py +++ b/src/dataprotection/azext_dataprotection/manual/custom.py @@ -14,6 +14,7 @@ # pylint: disable=no-else-continue # pylint: disable=no-else-raise import time +import json from azure.cli.core.azclierror import ( RequiredArgumentMissingError, InvalidArgumentValueError, @@ -246,7 +247,7 @@ def dataprotection_backup_instance_validate_for_update(cmd, resource_group_name, def dataprotection_backup_instance_update(cmd, resource_group_name, vault_name, backup_instance_name, - vaulted_blob_container_list=None, no_wait=False, + vaulted_blob_container_list=None, aks_backup_configuration=None, no_wait=False, use_system_assigned_identity=None, user_assigned_identity_arm_url=None): from azext_dataprotection.aaz.latest.dataprotection.backup_instance import Show as BackupInstanceShow backup_instance = BackupInstanceShow(cli_ctx=cmd.cli_ctx)(command_args={ @@ -266,10 +267,36 @@ def dataprotection_backup_instance_update(cmd, resource_group_name, vault_name, identity_details = helper.get_identity_details(use_system_assigned_identity, user_assigned_identity_arm_url) backup_instance["properties"]["identityDetails"] = identity_details - # Policy changes - updating the vaulted blob container list for vaulted blob backups - if vaulted_blob_container_list is not None: - backup_instance['properties']['policyInfo']['policyParameters']['backupDatasourceParametersList'] = \ - [vaulted_blob_container_list,] + # Policy changes + # - Updating the vaulted blob container list for vaulted blob backups + # - Updating the backup datasource parameters for AKS backups + datasource_type = backup_instance["properties"]["dataSourceInfo"]["datasourceType"] + + # If user provided any of the datasource parameter update inputs, handle according to datasource type + if vaulted_blob_container_list is not None or aks_backup_configuration is not None: + if datasource_type == "Microsoft.ContainerService/managedClusters": + # AKS scenario (only --aks-backup-configuration is valid) + if vaulted_blob_container_list is not None: + raise InvalidArgumentValueError(f'Invalid argument --vaulted-blob-container-list for AKS datasource type: {datasource_type}. Use --aks-backup-configuration instead.') + elif aks_backup_configuration is not None: + # Allow passing JSON string or already-parsed object for AKS backup configuration + if isinstance(aks_backup_configuration, str): + try: + aks_backup_configuration = json.loads(aks_backup_configuration) + except json.JSONDecodeError: + raise InvalidArgumentValueError("Provided --aks-backup-configuration is not valid JSON.") + except Exception: + raise InvalidArgumentValueError("Provided --aks-backup-configuration is not valid.") + backup_instance['properties']['policyInfo']['policyParameters']['backupDatasourceParametersList'] = [aks_backup_configuration] + elif datasource_type == "Microsoft.Storage/storageAccounts/blobServices": + # Blob scenario (only --vaulted-blob-container-list is valid) + if aks_backup_configuration is not None: + raise InvalidArgumentValueError(f'Invalid argument --aks-backup-configuration for Blob datasource type: {datasource_type}. Use --vaulted-blob-container-list instead.') + elif vaulted_blob_container_list is not None: + backup_instance['properties']['policyInfo']['policyParameters']['backupDatasourceParametersList'] = [vaulted_blob_container_list] + else: + raise InvalidArgumentValueError(f"Setting backup datasource parameters is not supported for datasource type: {datasource_type}.\n " + "Supported datasource types are Microsoft.ContainerService/managedClusters (AKS) and Microsoft.Storage/storageAccounts/blobServices (Blob).") backup_instance = helper.convert_backup_instance_show_to_input(backup_instance) diff --git a/src/dataprotection/azext_dataprotection/manual/helpers.py b/src/dataprotection/azext_dataprotection/manual/helpers.py index 4ba090b9e3b..543cc9a3592 100644 --- a/src/dataprotection/azext_dataprotection/manual/helpers.py +++ b/src/dataprotection/azext_dataprotection/manual/helpers.py @@ -997,6 +997,16 @@ def convert_backup_instance_show_to_input(backup_instance): del backup_instance['properties']['protectionStatus'] if 'provisioningState' in backup_instance['properties']: del backup_instance['properties']['provisioningState'] + # Cleaning up resourceProperties if objectType is null to avoid schema validation error + for datasource_property in ['dataSourceInfo', 'dataSourceSetInfo']: + if datasource_property in backup_instance['properties']: + datasource_info = backup_instance['properties'][datasource_property] + if (isinstance(datasource_info, dict) and + 'resourceProperties' in datasource_info and + isinstance(datasource_info['resourceProperties'], dict)): + if datasource_info['resourceProperties'].get('objectType') is None: + # Cleaning up resourceProperties when objectType is null to avoid schema validation error + del backup_instance['properties'][datasource_property]['resourceProperties'] return backup_instance diff --git a/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_backup_instance_update_aks_configuration.yaml b/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_backup_instance_update_aks_configuration.yaml new file mode 100644 index 00000000000..90b73d7ab1b --- /dev/null +++ b/src/dataprotection/azext_dataprotection/tests/latest/recordings/test_dataprotection_backup_instance_update_aks_configuration.yaml @@ -0,0 +1,340 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dataprotection backup-instance show + Connection: + - keep-alive + ParameterSetName: + - -g --vault-name --name + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.9 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c?api-version=2025-07-01 + response: + body: + string: '{"properties":{"friendlyName":"clitest-cluster1-donotdelete\\clitestsabidonotdelete","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","resourceProperties":{"objectType":null},"objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupPolicies/akspolicy","policyVersion":"","policyParameters":{"dataStoreParametersList":[{"dataStoreType":"OperationalStore","objectType":"AzureOperationalStoreParameters","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg"}],"backupDatasourceParametersList":[{"objectType":"KubernetesClusterBackupDatasourceParameters","excludedResourceTypes":["ResourceX"],"includeClusterScopeResources":false,"includedNamespaces":["nsA","nsB"],"labelSelectors":["app=web"],"snapshotVolumes":false,"excludedNamespaces":null,"includedResourceTypes":null,"includedVolumeTypes":null,"backupHookReferences":null}]}},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","identityDetails":{"useSystemAssignedIdentity":true},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","name":"clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","type":"Microsoft.DataProtection/backupVaults/backupInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '2848' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 03 Dec 2025 07:27:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e927f4b9-3591-42c4-a0c4-05508605bfeb/centralindia/71ade053-d098-43d8-90f8-7e48665672ca + x-ms-ratelimit-remaining-subscription-resource-requests: + - '1099' + x-msedge-ref: + - 'Ref A: 5A07A187D8D248C3A2A41595491E45B2 Ref B: MAA201060516021 Ref C: 2025-12-03T07:27:21Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dataprotection backup-instance update + Connection: + - keep-alive + ParameterSetName: + - -g --vault-name --backup-instance-name --aks-backup-configuration + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.9 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c?api-version=2025-07-01 + response: + body: + string: '{"properties":{"friendlyName":"clitest-cluster1-donotdelete\\clitestsabidonotdelete","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","resourceProperties":{"objectType":null},"objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupPolicies/akspolicy","policyVersion":"","policyParameters":{"dataStoreParametersList":[{"dataStoreType":"OperationalStore","objectType":"AzureOperationalStoreParameters","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg"}],"backupDatasourceParametersList":[{"objectType":"KubernetesClusterBackupDatasourceParameters","excludedResourceTypes":["ResourceX"],"includeClusterScopeResources":false,"includedNamespaces":["nsA","nsB"],"labelSelectors":["app=web"],"snapshotVolumes":false,"excludedNamespaces":null,"includedResourceTypes":null,"includedVolumeTypes":null,"backupHookReferences":null}]}},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","identityDetails":{"useSystemAssignedIdentity":true},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","name":"clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","type":"Microsoft.DataProtection/backupVaults/backupInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '2848' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 03 Dec 2025 07:27:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e927f4b9-3591-42c4-a0c4-05508605bfeb/centralindia/a8ab83b5-7a48-40d2-a53d-70e0e9a73547 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '1099' + x-msedge-ref: + - 'Ref A: CBB05B0513164B1BA41A090CD8035053 Ref B: MAA201060514035 Ref C: 2025-12-03T07:27:23Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"dataSourceInfo": {"datasourceType": "Microsoft.ContainerService/managedClusters", + "objectType": "Datasource", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete", + "resourceLocation": "eastus2euap", "resourceName": "clitest-cluster1-donotdelete", + "resourceType": "Microsoft.ContainerService/managedClusters", "resourceUri": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete"}, + "dataSourceSetInfo": {"datasourceType": "Microsoft.ContainerService/managedClusters", + "objectType": "DatasourceSet", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete", + "resourceLocation": "eastus2euap", "resourceName": "clitest-cluster1-donotdelete", + "resourceType": "Microsoft.ContainerService/managedClusters", "resourceUri": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete"}, + "friendlyName": "clitest-cluster1-donotdelete\\clitestsabidonotdelete", "identityDetails": + {"useSystemAssignedIdentity": true}, "objectType": "BackupInstance", "policyInfo": + {"policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupPolicies/akspolicy", + "policyParameters": {"backupDatasourceParametersList": [{"objectType": "KubernetesClusterBackupDatasourceParameters", + "excludedResourceTypes": ["ResourceX"], "includeClusterScopeResources": false, + "includedNamespaces": ["nsA", "nsB"], "labelSelectors": ["app=web"], "snapshotVolumes": + false}], "dataStoreParametersList": [{"dataStoreType": "OperationalStore", "objectType": + "AzureOperationalStoreParameters", "resourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg"}]}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dataprotection backup-instance update + Connection: + - keep-alive + Content-Length: + - '2158' + Content-Type: + - application/json + ParameterSetName: + - -g --vault-name --backup-instance-name --aks-backup-configuration + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.9 (Windows-11-10.0.26200-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c?api-version=2025-07-01 + response: + body: + string: '{"properties":{"friendlyName":"clitest-cluster1-donotdelete\\clitestsabidonotdelete","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","resourceProperties":{"objectType":null},"objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupPolicies/akspolicy","policyVersion":"","policyParameters":{"dataStoreParametersList":[{"dataStoreType":"OperationalStore","objectType":"AzureOperationalStoreParameters","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg"}],"backupDatasourceParametersList":[{"objectType":"KubernetesClusterBackupDatasourceParameters","excludedResourceTypes":["ResourceX"],"includeClusterScopeResources":false,"includedNamespaces":["nsA","nsB"],"labelSelectors":["app=web"],"snapshotVolumes":false,"excludedNamespaces":null,"includedResourceTypes":null,"includedVolumeTypes":null,"backupHookReferences":null}]}},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","identityDetails":{"useSystemAssignedIdentity":true},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","name":"clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","type":"Microsoft.DataProtection/backupVaults/backupInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '2848' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 03 Dec 2025 07:27:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e927f4b9-3591-42c4-a0c4-05508605bfeb/centraluseuap/91cd3d70-144f-455d-bbe9-cf4da200c6fb + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 3A1D3C3356A04C8F91442427EDE2315B Ref B: MAA201060513049 Ref C: 2025-12-03T07:27:25Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dataprotection backup-instance show + Connection: + - keep-alive + ParameterSetName: + - -g --vault-name --name + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.9 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c?api-version=2025-07-01 + response: + body: + string: '{"properties":{"friendlyName":"clitest-cluster1-donotdelete\\clitestsabidonotdelete","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","resourceProperties":{"objectType":null},"objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupPolicies/akspolicy","policyVersion":"","policyParameters":{"dataStoreParametersList":[{"dataStoreType":"OperationalStore","objectType":"AzureOperationalStoreParameters","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg"}],"backupDatasourceParametersList":[{"objectType":"KubernetesClusterBackupDatasourceParameters","excludedResourceTypes":["ResourceX"],"includeClusterScopeResources":false,"includedNamespaces":["nsA","nsB"],"labelSelectors":["app=web"],"snapshotVolumes":false,"excludedNamespaces":null,"includedResourceTypes":null,"includedVolumeTypes":null,"backupHookReferences":null}]}},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","identityDetails":{"useSystemAssignedIdentity":true},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","name":"clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","type":"Microsoft.DataProtection/backupVaults/backupInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '2848' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 03 Dec 2025 07:27:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e927f4b9-3591-42c4-a0c4-05508605bfeb/centraluseuap/98d5e016-df4b-4300-884d-bfc8c75a215b + x-ms-ratelimit-remaining-subscription-resource-requests: + - '1099' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: C18481BAE40C416AB7FE942FFE5BECCB Ref B: MAA201060516053 Ref C: 2025-12-03T07:27:27Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dataprotection backup-instance update + Connection: + - keep-alive + ParameterSetName: + - -g --vault-name --backup-instance-name --aks-backup-configuration + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.9 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c?api-version=2025-07-01 + response: + body: + string: '{"properties":{"friendlyName":"clitest-cluster1-donotdelete\\clitestsabidonotdelete","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","resourceProperties":{"objectType":null},"objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupPolicies/akspolicy","policyVersion":"","policyParameters":{"dataStoreParametersList":[{"dataStoreType":"OperationalStore","objectType":"AzureOperationalStoreParameters","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg"}],"backupDatasourceParametersList":[{"objectType":"KubernetesClusterBackupDatasourceParameters","excludedResourceTypes":["ResourceX"],"includeClusterScopeResources":false,"includedNamespaces":["nsA","nsB"],"labelSelectors":["app=web"],"snapshotVolumes":false,"excludedNamespaces":null,"includedResourceTypes":null,"includedVolumeTypes":null,"backupHookReferences":null}]}},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","identityDetails":{"useSystemAssignedIdentity":true},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","name":"clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","type":"Microsoft.DataProtection/backupVaults/backupInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '2848' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 03 Dec 2025 07:27:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e927f4b9-3591-42c4-a0c4-05508605bfeb/centraluseuap/db6d9ffa-d653-4dde-8472-3855fe21d22f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '1099' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 00F5030AC09844E8B067BE8FABC90137 Ref B: MAA201060515033 Ref C: 2025-12-03T07:27:29Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"dataSourceInfo": {"datasourceType": "Microsoft.ContainerService/managedClusters", + "objectType": "Datasource", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete", + "resourceLocation": "eastus2euap", "resourceName": "clitest-cluster1-donotdelete", + "resourceType": "Microsoft.ContainerService/managedClusters", "resourceUri": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete"}, + "dataSourceSetInfo": {"datasourceType": "Microsoft.ContainerService/managedClusters", + "objectType": "DatasourceSet", "resourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete", + "resourceLocation": "eastus2euap", "resourceName": "clitest-cluster1-donotdelete", + "resourceType": "Microsoft.ContainerService/managedClusters", "resourceUri": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete"}, + "friendlyName": "clitest-cluster1-donotdelete\\clitestsabidonotdelete", "identityDetails": + {"useSystemAssignedIdentity": true}, "objectType": "BackupInstance", "policyInfo": + {"policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupPolicies/akspolicy", + "policyParameters": {"backupDatasourceParametersList": [{"objectType": "KubernetesClusterBackupDatasourceParameters", + "excludedResourceTypes": ["ResourceX"], "includeClusterScopeResources": false, + "includedNamespaces": ["nsA", "nsB"], "labelSelectors": ["app=web"], "snapshotVolumes": + false}], "dataStoreParametersList": [{"dataStoreType": "OperationalStore", "objectType": + "AzureOperationalStoreParameters", "resourceGroupId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg"}]}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - dataprotection backup-instance update + Connection: + - keep-alive + Content-Length: + - '2158' + Content-Type: + - application/json + ParameterSetName: + - -g --vault-name --backup-instance-name --aks-backup-configuration + User-Agent: + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.13.9 (Windows-11-10.0.26200-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c?api-version=2025-07-01 + response: + body: + string: '{"properties":{"friendlyName":"clitest-cluster1-donotdelete\\clitestsabidonotdelete","dataSourceInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","resourceProperties":{"objectType":null},"objectType":"Datasource"},"dataSourceSetInfo":{"resourceID":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","resourceUri":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete","datasourceType":"Microsoft.ContainerService/managedClusters","resourceName":"clitest-cluster1-donotdelete","resourceType":"Microsoft.ContainerService/managedClusters","resourceLocation":"eastus2euap","objectType":"DatasourceSet"},"policyInfo":{"policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupPolicies/akspolicy","policyVersion":"","policyParameters":{"dataStoreParametersList":[{"dataStoreType":"OperationalStore","objectType":"AzureOperationalStoreParameters","resourceGroupId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg"}],"backupDatasourceParametersList":[{"objectType":"KubernetesClusterBackupDatasourceParameters","excludedResourceTypes":["ResourceX"],"includeClusterScopeResources":false,"includedNamespaces":["nsA","nsB"],"labelSelectors":["app=web"],"snapshotVolumes":false,"excludedNamespaces":null,"includedResourceTypes":null,"includedVolumeTypes":null,"backupHookReferences":null}]}},"protectionStatus":{"status":"ProtectionConfigured"},"currentProtectionState":"ProtectionConfigured","provisioningState":"Succeeded","identityDetails":{"useSystemAssignedIdentity":true},"objectType":"BackupInstance"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupInstances/clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","name":"clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c","type":"Microsoft.DataProtection/backupVaults/backupInstances"}' + headers: + cache-control: + - no-cache + content-length: + - '2848' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 03 Dec 2025 07:27:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e927f4b9-3591-42c4-a0c4-05508605bfeb/centraluseuap/c4864009-89a4-49f9-9911-c18b4891916a + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: D8264EA51EC34B6393B512F478771F31 Ref B: MAA201060513035 Ref C: 2025-12-03T07:27:29Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/dataprotection/azext_dataprotection/tests/latest/test_dataprotection_backup_instance_operations.py b/src/dataprotection/azext_dataprotection/tests/latest/test_dataprotection_backup_instance_operations.py index 45c281d7ac2..dfb24c2adb5 100644 --- a/src/dataprotection/azext_dataprotection/tests/latest/test_dataprotection_backup_instance_operations.py +++ b/src/dataprotection/azext_dataprotection/tests/latest/test_dataprotection_backup_instance_operations.py @@ -279,3 +279,52 @@ def test_dataprotection_backup_instance_softdelete(test): # Once protection elsewhere is stopped, we can resume protection on the undeleted BI time.sleep(60) reset_softdelete_base_state(test) + + @AllowLargeResponse() + def test_dataprotection_backup_instance_update_aks_configuration(test): + # Update with AKS backup configuration using simple az CLI commands. + test.kwargs.update({ + 'location': 'eastus2euap', + 'rg': 'clitest-dpp-rg', + 'vaultName': 'clitest-bkp-vault-aks-donotdelete', + 'policyId': '/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/clitest-dpp-rg/providers/Microsoft.DataProtection/backupVaults/clitest-bkp-vault-aks-donotdelete/backupPolicies/akspolicy', + 'dataSourceType': 'AzureKubernetesService', + 'aksClusterName': 'clitest-cluster1-donotdelete', + 'aksClusterId': '/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/oss-clitest-rg/providers/Microsoft.ContainerService/managedClusters/clitest-cluster1-donotdelete', + 'friendlyName': 'clitest-cluster1-donotdelete\\clitestsabidonotdelete', + 'backupInstanceName': 'clitest-cluster1-donotdelete-clitest-cluster1-donotdelete-bd3ae6fd-0d5f-4f76-85b4-8d7f0fe7006c' + }) + + # Fetch original BI backupDatasourceParametersList (if any) to allow resetting later + original_bi = test.cmd('az dataprotection backup-instance show -g "{rg}" --vault-name "{vaultName}" --name "{backupInstanceName}"').get_output_in_json() + originalBackupConfig = original_bi['properties']['policyInfo']['policyParameters'].get('backupDatasourceParametersList')[0] + test.kwargs.update({ + 'backupConfig': originalBackupConfig + }) + + # Generate the AKS backup configuration with specific values in a single command to make the change observable + new_backup_config_json = test.cmd('az dataprotection backup-instance initialize-backupconfig --datasource-type AzureKubernetesService ' + '--included-namespaces "nsA" "nsB" --label-selectors "app=web" --excluded-resource-types "ResourceX" ' + '--include-cluster-scope-resources false --snapshot-volumes false').get_output_in_json() + test.kwargs.update({ + 'tempBackupConfig': new_backup_config_json + }) + + # Apply temp configuration + test.cmd('az dataprotection backup-instance update -g "{rg}" --vault-name "{vaultName}" --backup-instance-name "{backupInstanceName}" --aks-backup-configuration "{tempBackupConfig}"', checks=[ + test.check('name', "{backupInstanceName}") + ]) + + # Fetch the BI and verify that the backupDatasourceParametersList was updated to reflect the AKS config + test.cmd('az dataprotection backup-instance show -g "{rg}" --vault-name "{vaultName}" --name "{backupInstanceName}"', checks=[ + test.check("properties.policyInfo.policyParameters.backupDatasourceParametersList[0].includedNamespaces", ['nsA', 'nsB']), + test.check("properties.policyInfo.policyParameters.backupDatasourceParametersList[0].labelSelectors", ['app=web']), + test.check("properties.policyInfo.policyParameters.backupDatasourceParametersList[0].excludedResourceTypes", ['ResourceX']), + test.check("properties.policyInfo.policyParameters.backupDatasourceParametersList[0].includeClusterScopeResources", False), + test.check("properties.policyInfo.policyParameters.backupDatasourceParametersList[0].snapshotVolumes", False) + ]) + + # Reset to original configuration + test.cmd('az dataprotection backup-instance update -g "{rg}" --vault-name "{vaultName}" --backup-instance-name "{backupInstanceName}" --aks-backup-configuration "{backupConfig}"', checks=[ + test.check('name', "{backupInstanceName}") + ]) \ No newline at end of file diff --git a/src/dataprotection/setup.py b/src/dataprotection/setup.py index b00e9c8218d..0af4bc59016 100644 --- a/src/dataprotection/setup.py +++ b/src/dataprotection/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages # HISTORY.rst entry. -VERSION = '1.7.1' +VERSION = '1.8.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/elastic/azext_elastic/tests/latest/recordings/test_elastic_monitor_open_ai_integration.yaml b/src/elastic/azext_elastic/tests/latest/recordings/test_elastic_monitor_open_ai_integration.yaml index e5de09c1f9b..aee1213ae81 100644 --- a/src/elastic/azext_elastic/tests/latest/recordings/test_elastic_monitor_open_ai_integration.yaml +++ b/src/elastic/azext_elastic/tests/latest/recordings/test_elastic_monitor_open_ai_integration.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_elastic_monitor000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001","name":"cli_test_elastic_monitor000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_elastic_monitor_open_ai_integration","date":"2025-10-17T06:33:18Z","module":"elastic"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001","name":"cli_test_elastic_monitor000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2025-12-09T06:17:26Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '407' + - '338' content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:33:24 GMT + - Tue, 09 Dec 2025 06:17:38 GMT expires: - '-1' pragma: @@ -41,13 +41,13 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E793FBB33B99425E848A81129394D509 Ref B: JKT201051406052 Ref C: 2025-10-17T06:33:24Z' + - 'Ref A: A2256823AF00468CB336785A6F3B46C9 Ref B: SG2AA1070304042 Ref C: 2025-12-09T06:17:38Z' status: code: 200 message: OK - request: body: '{"location": "eastus", "properties": {"userInfo": {"companyName": "Microsoft", - "emailAddress": "CLITesting3@testtestliftrtest5.onmicrosoft.com", "firstName": + "emailAddress": "jkoretesting1201@testtestliftrtest5.onmicrosoft.com", "firstName": "Alice", "lastName": "bob"}}, "sku": {"name": "ess-consumption-2024_Monthly"}}' headers: Accept: @@ -59,35 +59,35 @@ interactions: Connection: - keep-alive Content-Length: - - '236' + - '241' Content-Type: - application/json ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002?api-version=2025-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","name":"monitor000002","type":"microsoft.elastic/monitors","sku":{"name":"ess-consumption-2024_Monthly"},"location":"eastus","systemData":{"createdBy":"CLITesting3@testtestliftrtest5.onmicrosoft.com","createdByType":"User","createdAt":"2025-10-17T06:33:27.1032262Z","lastModifiedBy":"CLITesting3@testtestliftrtest5.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-17T06:33:27.1032262Z"},"properties":{"userInfo":{"companyName":"Microsoft","emailAddress":"CLITesting3@testtestliftrtest5.onmicrosoft.com","firstName":"Alice","lastName":"bob"},"provisioningState":"Accepted"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","name":"monitor000002","type":"microsoft.elastic/monitors","sku":{"name":"ess-consumption-2024_Monthly"},"location":"eastus","systemData":{"createdBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","createdByType":"User","createdAt":"2025-12-09T06:17:39.9447388Z","lastModifiedBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-09T06:17:39.9447388Z"},"properties":{"userInfo":{"companyName":"Microsoft","emailAddress":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","firstName":"Alice","lastName":"bob"},"provisioningState":"Accepted"}}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0?api-version=2025-06-01&t=638962796098531772&c=MIIIpTCCBo2gAwIBAgITFgGpymN7LTW4kGDY9AABAanKYzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE2MDY0NzU2WhcNMjYwMTEyMDY0NzU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKTm5YrLmfx9BQfyqn0KlKU5oAoMO71ploN13WymwudXY4jancWivKtgBQUtClbNOMf8GYtxePPkFtxCfON6ynaA50b2GFHRrjRAHMFB49frm55UXml1ym0Wz3JH6bXBwGJBhpQkMn2aLk58hRpzNpxEu8BK4avf0oZczbk_PMUH85rY1z-QQUNFQb_nIO7v3SIOCK3CKt4GdAKztacTI1NAnA_-1QYq5xcwep6CETOHLmlB_JNwscGCDdFNyGB72czos_xXG50Xhzs81LE3w3j92c_7ddvO9ojBuiNMBdFbP7GW31DrqzglZVWg5GHxjEcuVEIKM8kcIdQ2s7z8aGkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTviIwcnAMMwKNPI0scxiwQPceQFTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAB7FilN5Nb2BMo0idhK0QI7CLur1vEiQDTx3r1PyBucoZKAhxeeSGSgzuFXBjtOGdl6KlaAyTE6thgbXA5VqVyLYuRnuvUDMFTX51g7bJmFMAwi3IsYN5OQ5fQkuPX3Ao0gysXGrQmU3uH3rbGlVWXLp9xDSUfHh3jfeoU0Q4cgn2VZBiXWIGMiSW0OI1ZQtmEAvtUUja-Za7Q8TrERfxJg1nnqfjm8pH78RqklGECDK_m93WbGutB81jiRb598PoEFLqatWtUWEOagPl1wHToKm4tfgg5pN24otf99UUJQrf6A8kHQVZhuyARbhm-_Y9HSN43NooeVkaEzxST2gsLitbuz9EW6djyVhce8jc4d89cfOQaamQ7wOpiwXusaP-u5Vh-mmGXqkJVn4g_pDI4iv6NGaCosqQodrbEwWjkxiG_jX08qhEuGUhw-vo0jXacuguanQ0ap7Rns1PSLEOSmOB0LlsacAuoBAAQasSIYAX1woGPttqGnuqoCxw6jclcJayt0x4q1URe4WhXuTzySAt-1OtDyzZrXnwfkNB-J1J0iocdL_DCgWGQa2MlPP9EZiR9ox-VqkrOPQAMZBqtP9tQacMeO-V3JqiNzdu8ZzGnJrVT0fbgiS5E3emSyi_rYbuKDR06QJurZseja_toZCirAeHMjBVtn2wNuaY6Rr&s=PgbPZ5FeCwlS39VhF9aywWQfGHYah5xQKcJVNeltCk8DhtFnqAf379FJTCX83C2B99PTTklsT4Yqxj9sbpI1DI1j9-lRsmoGR1SR8w3VbmZ16S5kDwwobyyXAdW_AWNQpXkSUr9LNc13cgobDIshpLnhTNdGuQH8SvCeql8dFiVbEM2AyfDK7sI3NjBwnwTnc_6RMnoGpJWDAHwAmbLfEj7yFm6ft_vK3oq4Srwtt0vafuLM3KxuNSoeUZhkVpFlrAIDlWFn_YCSG-Jz8HQRCt-rHcJk0mEpt3Sq0UUtrq43dGF6LNqEkqQahtE_ZFfnudxioLA3DmSYFDp0jK-xrw&h=DCvduKpRf4U0t1bX3TmdMK_Dl8aW5snX2z5jtjomAsc + - https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF?api-version=2025-06-01&t=639008578622415937&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=ZjQGfff3AtAIG6fK7_w_yOwtXnwjCg_i-mW5PFp90tKEHFIPbgRdHzEZLImKIXv95V9nKQU10O6BHhAM3C7IeuA4n_DxL0WrqV2SFL_OpSzATQ5aYfHXz55-AuIjS__aMueTI6Vhq2CrP0EbD6O9SAGtcK3zYK06Eqr6OKX3-K4Y3349Qg1ERXrCBo2AsTK-Arfh3ynlAaGdWDiFpVOJIMRmliP5ylFc_Hpn6odZF2xVu8b9OdhSOTrVwptXo49BhG4y5LvMWB1cOnnlrfagkqz-SYd2gf24DAkWm2U86OKEBzyOeUky6r6bnHU4AVt-OcHpEi4ryhuFuqNEQstSJA&h=sKSV8GNWQmBgyxW3zXoXLTwstmAtlCaDzY9yjUgdFqA cache-control: - no-cache content-length: - - '752' + - '767' content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:33:29 GMT + - Tue, 09 Dec 2025 06:17:42 GMT etag: - - '"6a00bb20-0000-0100-0000-68f1e3390000"' + - '"6a036424-0000-0100-0000-6937bf060000"' expires: - '-1' mise-correlation-id: - - 4d612f44-f309-4dcf-adda-5ac1e0a303d1 + - 4ea41a28-c300-4487-9af9-d3dd5b5690a7 pragma: - no-cache request-context: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=cedaac2b-9d09-4ae2-b0de-7b34d3dc5926/eastus/c5d173ca-5238-46e5-8dc8-61a508df3d61 + - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=6b6ef90d-8bb8-4042-ae98-c1b8088928ab/eastus/06fcf767-b885-4e5c-96d0-05cc84a4c8d0 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-writes: @@ -107,7 +107,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: F746F6F25488442ABF94E4AB6A1CBE77 Ref B: JKT201051407034 Ref C: 2025-10-17T06:33:25Z' + - 'Ref A: C8BECB34A46541259C2E4BE976611F04 Ref B: SG2AA1070303054 Ref C: 2025-12-09T06:17:39Z' status: code: 201 message: Created @@ -125,12 +125,12 @@ interactions: ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0?api-version=2025-06-01&t=638962796098531772&c=MIIIpTCCBo2gAwIBAgITFgGpymN7LTW4kGDY9AABAanKYzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE2MDY0NzU2WhcNMjYwMTEyMDY0NzU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKTm5YrLmfx9BQfyqn0KlKU5oAoMO71ploN13WymwudXY4jancWivKtgBQUtClbNOMf8GYtxePPkFtxCfON6ynaA50b2GFHRrjRAHMFB49frm55UXml1ym0Wz3JH6bXBwGJBhpQkMn2aLk58hRpzNpxEu8BK4avf0oZczbk_PMUH85rY1z-QQUNFQb_nIO7v3SIOCK3CKt4GdAKztacTI1NAnA_-1QYq5xcwep6CETOHLmlB_JNwscGCDdFNyGB72czos_xXG50Xhzs81LE3w3j92c_7ddvO9ojBuiNMBdFbP7GW31DrqzglZVWg5GHxjEcuVEIKM8kcIdQ2s7z8aGkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTviIwcnAMMwKNPI0scxiwQPceQFTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAB7FilN5Nb2BMo0idhK0QI7CLur1vEiQDTx3r1PyBucoZKAhxeeSGSgzuFXBjtOGdl6KlaAyTE6thgbXA5VqVyLYuRnuvUDMFTX51g7bJmFMAwi3IsYN5OQ5fQkuPX3Ao0gysXGrQmU3uH3rbGlVWXLp9xDSUfHh3jfeoU0Q4cgn2VZBiXWIGMiSW0OI1ZQtmEAvtUUja-Za7Q8TrERfxJg1nnqfjm8pH78RqklGECDK_m93WbGutB81jiRb598PoEFLqatWtUWEOagPl1wHToKm4tfgg5pN24otf99UUJQrf6A8kHQVZhuyARbhm-_Y9HSN43NooeVkaEzxST2gsLitbuz9EW6djyVhce8jc4d89cfOQaamQ7wOpiwXusaP-u5Vh-mmGXqkJVn4g_pDI4iv6NGaCosqQodrbEwWjkxiG_jX08qhEuGUhw-vo0jXacuguanQ0ap7Rns1PSLEOSmOB0LlsacAuoBAAQasSIYAX1woGPttqGnuqoCxw6jclcJayt0x4q1URe4WhXuTzySAt-1OtDyzZrXnwfkNB-J1J0iocdL_DCgWGQa2MlPP9EZiR9ox-VqkrOPQAMZBqtP9tQacMeO-V3JqiNzdu8ZzGnJrVT0fbgiS5E3emSyi_rYbuKDR06QJurZseja_toZCirAeHMjBVtn2wNuaY6Rr&s=PgbPZ5FeCwlS39VhF9aywWQfGHYah5xQKcJVNeltCk8DhtFnqAf379FJTCX83C2B99PTTklsT4Yqxj9sbpI1DI1j9-lRsmoGR1SR8w3VbmZ16S5kDwwobyyXAdW_AWNQpXkSUr9LNc13cgobDIshpLnhTNdGuQH8SvCeql8dFiVbEM2AyfDK7sI3NjBwnwTnc_6RMnoGpJWDAHwAmbLfEj7yFm6ft_vK3oq4Srwtt0vafuLM3KxuNSoeUZhkVpFlrAIDlWFn_YCSG-Jz8HQRCt-rHcJk0mEpt3Sq0UUtrq43dGF6LNqEkqQahtE_ZFfnudxioLA3DmSYFDp0jK-xrw&h=DCvduKpRf4U0t1bX3TmdMK_Dl8aW5snX2z5jtjomAsc + uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF?api-version=2025-06-01&t=639008578622415937&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=ZjQGfff3AtAIG6fK7_w_yOwtXnwjCg_i-mW5PFp90tKEHFIPbgRdHzEZLImKIXv95V9nKQU10O6BHhAM3C7IeuA4n_DxL0WrqV2SFL_OpSzATQ5aYfHXz55-AuIjS__aMueTI6Vhq2CrP0EbD6O9SAGtcK3zYK06Eqr6OKX3-K4Y3349Qg1ERXrCBo2AsTK-Arfh3ynlAaGdWDiFpVOJIMRmliP5ylFc_Hpn6odZF2xVu8b9OdhSOTrVwptXo49BhG4y5LvMWB1cOnnlrfagkqz-SYd2gf24DAkWm2U86OKEBzyOeUky6r6bnHU4AVt-OcHpEi4ryhuFuqNEQstSJA&h=sKSV8GNWQmBgyxW3zXoXLTwstmAtlCaDzY9yjUgdFqA response: body: - string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","name":"c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-10-17T06:33:29.2572333Z"}' + string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","name":"cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-12-09T06:17:41.6427052Z"}' headers: cache-control: - no-cache @@ -139,9 +139,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:33:30 GMT + - Tue, 09 Dec 2025 06:17:42 GMT etag: - - '"e70adfe8-0000-0100-0000-68f1e3390000"' + - '"a0009ee6-0000-0100-0000-6937bf050000"' expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-ms-operation-identifier: - '' x-msedge-ref: - - 'Ref A: 20B363907FE5496782FB624DCC9A8DF0 Ref B: JKT201051407034 Ref C: 2025-10-17T06:33:30Z' + - 'Ref A: 3F9AC90262C74A41ACFB6DCFF226818B Ref B: SG2AA1070303054 Ref C: 2025-12-09T06:17:42Z' status: code: 200 message: OK @@ -173,12 +173,12 @@ interactions: ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0?api-version=2025-06-01&t=638962796098531772&c=MIIIpTCCBo2gAwIBAgITFgGpymN7LTW4kGDY9AABAanKYzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE2MDY0NzU2WhcNMjYwMTEyMDY0NzU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKTm5YrLmfx9BQfyqn0KlKU5oAoMO71ploN13WymwudXY4jancWivKtgBQUtClbNOMf8GYtxePPkFtxCfON6ynaA50b2GFHRrjRAHMFB49frm55UXml1ym0Wz3JH6bXBwGJBhpQkMn2aLk58hRpzNpxEu8BK4avf0oZczbk_PMUH85rY1z-QQUNFQb_nIO7v3SIOCK3CKt4GdAKztacTI1NAnA_-1QYq5xcwep6CETOHLmlB_JNwscGCDdFNyGB72czos_xXG50Xhzs81LE3w3j92c_7ddvO9ojBuiNMBdFbP7GW31DrqzglZVWg5GHxjEcuVEIKM8kcIdQ2s7z8aGkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTviIwcnAMMwKNPI0scxiwQPceQFTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAB7FilN5Nb2BMo0idhK0QI7CLur1vEiQDTx3r1PyBucoZKAhxeeSGSgzuFXBjtOGdl6KlaAyTE6thgbXA5VqVyLYuRnuvUDMFTX51g7bJmFMAwi3IsYN5OQ5fQkuPX3Ao0gysXGrQmU3uH3rbGlVWXLp9xDSUfHh3jfeoU0Q4cgn2VZBiXWIGMiSW0OI1ZQtmEAvtUUja-Za7Q8TrERfxJg1nnqfjm8pH78RqklGECDK_m93WbGutB81jiRb598PoEFLqatWtUWEOagPl1wHToKm4tfgg5pN24otf99UUJQrf6A8kHQVZhuyARbhm-_Y9HSN43NooeVkaEzxST2gsLitbuz9EW6djyVhce8jc4d89cfOQaamQ7wOpiwXusaP-u5Vh-mmGXqkJVn4g_pDI4iv6NGaCosqQodrbEwWjkxiG_jX08qhEuGUhw-vo0jXacuguanQ0ap7Rns1PSLEOSmOB0LlsacAuoBAAQasSIYAX1woGPttqGnuqoCxw6jclcJayt0x4q1URe4WhXuTzySAt-1OtDyzZrXnwfkNB-J1J0iocdL_DCgWGQa2MlPP9EZiR9ox-VqkrOPQAMZBqtP9tQacMeO-V3JqiNzdu8ZzGnJrVT0fbgiS5E3emSyi_rYbuKDR06QJurZseja_toZCirAeHMjBVtn2wNuaY6Rr&s=PgbPZ5FeCwlS39VhF9aywWQfGHYah5xQKcJVNeltCk8DhtFnqAf379FJTCX83C2B99PTTklsT4Yqxj9sbpI1DI1j9-lRsmoGR1SR8w3VbmZ16S5kDwwobyyXAdW_AWNQpXkSUr9LNc13cgobDIshpLnhTNdGuQH8SvCeql8dFiVbEM2AyfDK7sI3NjBwnwTnc_6RMnoGpJWDAHwAmbLfEj7yFm6ft_vK3oq4Srwtt0vafuLM3KxuNSoeUZhkVpFlrAIDlWFn_YCSG-Jz8HQRCt-rHcJk0mEpt3Sq0UUtrq43dGF6LNqEkqQahtE_ZFfnudxioLA3DmSYFDp0jK-xrw&h=DCvduKpRf4U0t1bX3TmdMK_Dl8aW5snX2z5jtjomAsc + uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF?api-version=2025-06-01&t=639008578622415937&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=ZjQGfff3AtAIG6fK7_w_yOwtXnwjCg_i-mW5PFp90tKEHFIPbgRdHzEZLImKIXv95V9nKQU10O6BHhAM3C7IeuA4n_DxL0WrqV2SFL_OpSzATQ5aYfHXz55-AuIjS__aMueTI6Vhq2CrP0EbD6O9SAGtcK3zYK06Eqr6OKX3-K4Y3349Qg1ERXrCBo2AsTK-Arfh3ynlAaGdWDiFpVOJIMRmliP5ylFc_Hpn6odZF2xVu8b9OdhSOTrVwptXo49BhG4y5LvMWB1cOnnlrfagkqz-SYd2gf24DAkWm2U86OKEBzyOeUky6r6bnHU4AVt-OcHpEi4ryhuFuqNEQstSJA&h=sKSV8GNWQmBgyxW3zXoXLTwstmAtlCaDzY9yjUgdFqA response: body: - string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","name":"c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-10-17T06:33:29.2572333Z"}' + string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","name":"cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-12-09T06:17:41.6427052Z"}' headers: cache-control: - no-cache @@ -187,9 +187,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:34:00 GMT + - Tue, 09 Dec 2025 06:18:13 GMT etag: - - '"e70adfe8-0000-0100-0000-68f1e3390000"' + - '"a0009ee6-0000-0100-0000-6937bf050000"' expires: - '-1' pragma: @@ -203,7 +203,7 @@ interactions: x-ms-operation-identifier: - '' x-msedge-ref: - - 'Ref A: EDD52B4867E54289920C51919BEC4DB8 Ref B: JKT201051407034 Ref C: 2025-10-17T06:34:01Z' + - 'Ref A: CD779B0667634CB3A580A6972F13FED4 Ref B: SG2AA1070303054 Ref C: 2025-12-09T06:18:12Z' status: code: 200 message: OK @@ -221,12 +221,12 @@ interactions: ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0?api-version=2025-06-01&t=638962796098531772&c=MIIIpTCCBo2gAwIBAgITFgGpymN7LTW4kGDY9AABAanKYzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE2MDY0NzU2WhcNMjYwMTEyMDY0NzU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKTm5YrLmfx9BQfyqn0KlKU5oAoMO71ploN13WymwudXY4jancWivKtgBQUtClbNOMf8GYtxePPkFtxCfON6ynaA50b2GFHRrjRAHMFB49frm55UXml1ym0Wz3JH6bXBwGJBhpQkMn2aLk58hRpzNpxEu8BK4avf0oZczbk_PMUH85rY1z-QQUNFQb_nIO7v3SIOCK3CKt4GdAKztacTI1NAnA_-1QYq5xcwep6CETOHLmlB_JNwscGCDdFNyGB72czos_xXG50Xhzs81LE3w3j92c_7ddvO9ojBuiNMBdFbP7GW31DrqzglZVWg5GHxjEcuVEIKM8kcIdQ2s7z8aGkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTviIwcnAMMwKNPI0scxiwQPceQFTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAB7FilN5Nb2BMo0idhK0QI7CLur1vEiQDTx3r1PyBucoZKAhxeeSGSgzuFXBjtOGdl6KlaAyTE6thgbXA5VqVyLYuRnuvUDMFTX51g7bJmFMAwi3IsYN5OQ5fQkuPX3Ao0gysXGrQmU3uH3rbGlVWXLp9xDSUfHh3jfeoU0Q4cgn2VZBiXWIGMiSW0OI1ZQtmEAvtUUja-Za7Q8TrERfxJg1nnqfjm8pH78RqklGECDK_m93WbGutB81jiRb598PoEFLqatWtUWEOagPl1wHToKm4tfgg5pN24otf99UUJQrf6A8kHQVZhuyARbhm-_Y9HSN43NooeVkaEzxST2gsLitbuz9EW6djyVhce8jc4d89cfOQaamQ7wOpiwXusaP-u5Vh-mmGXqkJVn4g_pDI4iv6NGaCosqQodrbEwWjkxiG_jX08qhEuGUhw-vo0jXacuguanQ0ap7Rns1PSLEOSmOB0LlsacAuoBAAQasSIYAX1woGPttqGnuqoCxw6jclcJayt0x4q1URe4WhXuTzySAt-1OtDyzZrXnwfkNB-J1J0iocdL_DCgWGQa2MlPP9EZiR9ox-VqkrOPQAMZBqtP9tQacMeO-V3JqiNzdu8ZzGnJrVT0fbgiS5E3emSyi_rYbuKDR06QJurZseja_toZCirAeHMjBVtn2wNuaY6Rr&s=PgbPZ5FeCwlS39VhF9aywWQfGHYah5xQKcJVNeltCk8DhtFnqAf379FJTCX83C2B99PTTklsT4Yqxj9sbpI1DI1j9-lRsmoGR1SR8w3VbmZ16S5kDwwobyyXAdW_AWNQpXkSUr9LNc13cgobDIshpLnhTNdGuQH8SvCeql8dFiVbEM2AyfDK7sI3NjBwnwTnc_6RMnoGpJWDAHwAmbLfEj7yFm6ft_vK3oq4Srwtt0vafuLM3KxuNSoeUZhkVpFlrAIDlWFn_YCSG-Jz8HQRCt-rHcJk0mEpt3Sq0UUtrq43dGF6LNqEkqQahtE_ZFfnudxioLA3DmSYFDp0jK-xrw&h=DCvduKpRf4U0t1bX3TmdMK_Dl8aW5snX2z5jtjomAsc + uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF?api-version=2025-06-01&t=639008578622415937&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=ZjQGfff3AtAIG6fK7_w_yOwtXnwjCg_i-mW5PFp90tKEHFIPbgRdHzEZLImKIXv95V9nKQU10O6BHhAM3C7IeuA4n_DxL0WrqV2SFL_OpSzATQ5aYfHXz55-AuIjS__aMueTI6Vhq2CrP0EbD6O9SAGtcK3zYK06Eqr6OKX3-K4Y3349Qg1ERXrCBo2AsTK-Arfh3ynlAaGdWDiFpVOJIMRmliP5ylFc_Hpn6odZF2xVu8b9OdhSOTrVwptXo49BhG4y5LvMWB1cOnnlrfagkqz-SYd2gf24DAkWm2U86OKEBzyOeUky6r6bnHU4AVt-OcHpEi4ryhuFuqNEQstSJA&h=sKSV8GNWQmBgyxW3zXoXLTwstmAtlCaDzY9yjUgdFqA response: body: - string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","name":"c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-10-17T06:33:29.2572333Z"}' + string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","name":"cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-12-09T06:17:41.6427052Z"}' headers: cache-control: - no-cache @@ -235,9 +235,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:34:31 GMT + - Tue, 09 Dec 2025 06:18:43 GMT etag: - - '"e70adfe8-0000-0100-0000-68f1e3390000"' + - '"a0009ee6-0000-0100-0000-6937bf050000"' expires: - '-1' pragma: @@ -251,7 +251,7 @@ interactions: x-ms-operation-identifier: - '' x-msedge-ref: - - 'Ref A: 8A8138EF100B4B979CA5DD9E1DBDDD3D Ref B: JKT201051407034 Ref C: 2025-10-17T06:34:32Z' + - 'Ref A: 50676106D9CB413C88C66B4C2EE79A68 Ref B: SG2AA1070303054 Ref C: 2025-12-09T06:18:43Z' status: code: 200 message: OK @@ -269,12 +269,12 @@ interactions: ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0?api-version=2025-06-01&t=638962796098531772&c=MIIIpTCCBo2gAwIBAgITFgGpymN7LTW4kGDY9AABAanKYzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE2MDY0NzU2WhcNMjYwMTEyMDY0NzU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKTm5YrLmfx9BQfyqn0KlKU5oAoMO71ploN13WymwudXY4jancWivKtgBQUtClbNOMf8GYtxePPkFtxCfON6ynaA50b2GFHRrjRAHMFB49frm55UXml1ym0Wz3JH6bXBwGJBhpQkMn2aLk58hRpzNpxEu8BK4avf0oZczbk_PMUH85rY1z-QQUNFQb_nIO7v3SIOCK3CKt4GdAKztacTI1NAnA_-1QYq5xcwep6CETOHLmlB_JNwscGCDdFNyGB72czos_xXG50Xhzs81LE3w3j92c_7ddvO9ojBuiNMBdFbP7GW31DrqzglZVWg5GHxjEcuVEIKM8kcIdQ2s7z8aGkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTviIwcnAMMwKNPI0scxiwQPceQFTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAB7FilN5Nb2BMo0idhK0QI7CLur1vEiQDTx3r1PyBucoZKAhxeeSGSgzuFXBjtOGdl6KlaAyTE6thgbXA5VqVyLYuRnuvUDMFTX51g7bJmFMAwi3IsYN5OQ5fQkuPX3Ao0gysXGrQmU3uH3rbGlVWXLp9xDSUfHh3jfeoU0Q4cgn2VZBiXWIGMiSW0OI1ZQtmEAvtUUja-Za7Q8TrERfxJg1nnqfjm8pH78RqklGECDK_m93WbGutB81jiRb598PoEFLqatWtUWEOagPl1wHToKm4tfgg5pN24otf99UUJQrf6A8kHQVZhuyARbhm-_Y9HSN43NooeVkaEzxST2gsLitbuz9EW6djyVhce8jc4d89cfOQaamQ7wOpiwXusaP-u5Vh-mmGXqkJVn4g_pDI4iv6NGaCosqQodrbEwWjkxiG_jX08qhEuGUhw-vo0jXacuguanQ0ap7Rns1PSLEOSmOB0LlsacAuoBAAQasSIYAX1woGPttqGnuqoCxw6jclcJayt0x4q1URe4WhXuTzySAt-1OtDyzZrXnwfkNB-J1J0iocdL_DCgWGQa2MlPP9EZiR9ox-VqkrOPQAMZBqtP9tQacMeO-V3JqiNzdu8ZzGnJrVT0fbgiS5E3emSyi_rYbuKDR06QJurZseja_toZCirAeHMjBVtn2wNuaY6Rr&s=PgbPZ5FeCwlS39VhF9aywWQfGHYah5xQKcJVNeltCk8DhtFnqAf379FJTCX83C2B99PTTklsT4Yqxj9sbpI1DI1j9-lRsmoGR1SR8w3VbmZ16S5kDwwobyyXAdW_AWNQpXkSUr9LNc13cgobDIshpLnhTNdGuQH8SvCeql8dFiVbEM2AyfDK7sI3NjBwnwTnc_6RMnoGpJWDAHwAmbLfEj7yFm6ft_vK3oq4Srwtt0vafuLM3KxuNSoeUZhkVpFlrAIDlWFn_YCSG-Jz8HQRCt-rHcJk0mEpt3Sq0UUtrq43dGF6LNqEkqQahtE_ZFfnudxioLA3DmSYFDp0jK-xrw&h=DCvduKpRf4U0t1bX3TmdMK_Dl8aW5snX2z5jtjomAsc + uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF?api-version=2025-06-01&t=639008578622415937&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=ZjQGfff3AtAIG6fK7_w_yOwtXnwjCg_i-mW5PFp90tKEHFIPbgRdHzEZLImKIXv95V9nKQU10O6BHhAM3C7IeuA4n_DxL0WrqV2SFL_OpSzATQ5aYfHXz55-AuIjS__aMueTI6Vhq2CrP0EbD6O9SAGtcK3zYK06Eqr6OKX3-K4Y3349Qg1ERXrCBo2AsTK-Arfh3ynlAaGdWDiFpVOJIMRmliP5ylFc_Hpn6odZF2xVu8b9OdhSOTrVwptXo49BhG4y5LvMWB1cOnnlrfagkqz-SYd2gf24DAkWm2U86OKEBzyOeUky6r6bnHU4AVt-OcHpEi4ryhuFuqNEQstSJA&h=sKSV8GNWQmBgyxW3zXoXLTwstmAtlCaDzY9yjUgdFqA response: body: - string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","name":"c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-10-17T06:33:29.2572333Z"}' + string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","name":"cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-12-09T06:17:41.6427052Z"}' headers: cache-control: - no-cache @@ -283,9 +283,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:35:02 GMT + - Tue, 09 Dec 2025 06:19:14 GMT etag: - - '"e70adfe8-0000-0100-0000-68f1e3390000"' + - '"a0009ee6-0000-0100-0000-6937bf050000"' expires: - '-1' pragma: @@ -299,7 +299,7 @@ interactions: x-ms-operation-identifier: - '' x-msedge-ref: - - 'Ref A: 9264EF0EC47242959BACA222B8CF7850 Ref B: JKT201051407034 Ref C: 2025-10-17T06:35:02Z' + - 'Ref A: 13DE3B7934B24DEDAF663063369A7FD2 Ref B: SG2AA1070303054 Ref C: 2025-12-09T06:19:13Z' status: code: 200 message: OK @@ -317,12 +317,12 @@ interactions: ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0?api-version=2025-06-01&t=638962796098531772&c=MIIIpTCCBo2gAwIBAgITFgGpymN7LTW4kGDY9AABAanKYzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE2MDY0NzU2WhcNMjYwMTEyMDY0NzU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKTm5YrLmfx9BQfyqn0KlKU5oAoMO71ploN13WymwudXY4jancWivKtgBQUtClbNOMf8GYtxePPkFtxCfON6ynaA50b2GFHRrjRAHMFB49frm55UXml1ym0Wz3JH6bXBwGJBhpQkMn2aLk58hRpzNpxEu8BK4avf0oZczbk_PMUH85rY1z-QQUNFQb_nIO7v3SIOCK3CKt4GdAKztacTI1NAnA_-1QYq5xcwep6CETOHLmlB_JNwscGCDdFNyGB72czos_xXG50Xhzs81LE3w3j92c_7ddvO9ojBuiNMBdFbP7GW31DrqzglZVWg5GHxjEcuVEIKM8kcIdQ2s7z8aGkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTviIwcnAMMwKNPI0scxiwQPceQFTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAB7FilN5Nb2BMo0idhK0QI7CLur1vEiQDTx3r1PyBucoZKAhxeeSGSgzuFXBjtOGdl6KlaAyTE6thgbXA5VqVyLYuRnuvUDMFTX51g7bJmFMAwi3IsYN5OQ5fQkuPX3Ao0gysXGrQmU3uH3rbGlVWXLp9xDSUfHh3jfeoU0Q4cgn2VZBiXWIGMiSW0OI1ZQtmEAvtUUja-Za7Q8TrERfxJg1nnqfjm8pH78RqklGECDK_m93WbGutB81jiRb598PoEFLqatWtUWEOagPl1wHToKm4tfgg5pN24otf99UUJQrf6A8kHQVZhuyARbhm-_Y9HSN43NooeVkaEzxST2gsLitbuz9EW6djyVhce8jc4d89cfOQaamQ7wOpiwXusaP-u5Vh-mmGXqkJVn4g_pDI4iv6NGaCosqQodrbEwWjkxiG_jX08qhEuGUhw-vo0jXacuguanQ0ap7Rns1PSLEOSmOB0LlsacAuoBAAQasSIYAX1woGPttqGnuqoCxw6jclcJayt0x4q1URe4WhXuTzySAt-1OtDyzZrXnwfkNB-J1J0iocdL_DCgWGQa2MlPP9EZiR9ox-VqkrOPQAMZBqtP9tQacMeO-V3JqiNzdu8ZzGnJrVT0fbgiS5E3emSyi_rYbuKDR06QJurZseja_toZCirAeHMjBVtn2wNuaY6Rr&s=PgbPZ5FeCwlS39VhF9aywWQfGHYah5xQKcJVNeltCk8DhtFnqAf379FJTCX83C2B99PTTklsT4Yqxj9sbpI1DI1j9-lRsmoGR1SR8w3VbmZ16S5kDwwobyyXAdW_AWNQpXkSUr9LNc13cgobDIshpLnhTNdGuQH8SvCeql8dFiVbEM2AyfDK7sI3NjBwnwTnc_6RMnoGpJWDAHwAmbLfEj7yFm6ft_vK3oq4Srwtt0vafuLM3KxuNSoeUZhkVpFlrAIDlWFn_YCSG-Jz8HQRCt-rHcJk0mEpt3Sq0UUtrq43dGF6LNqEkqQahtE_ZFfnudxioLA3DmSYFDp0jK-xrw&h=DCvduKpRf4U0t1bX3TmdMK_Dl8aW5snX2z5jtjomAsc + uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF?api-version=2025-06-01&t=639008578622415937&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=ZjQGfff3AtAIG6fK7_w_yOwtXnwjCg_i-mW5PFp90tKEHFIPbgRdHzEZLImKIXv95V9nKQU10O6BHhAM3C7IeuA4n_DxL0WrqV2SFL_OpSzATQ5aYfHXz55-AuIjS__aMueTI6Vhq2CrP0EbD6O9SAGtcK3zYK06Eqr6OKX3-K4Y3349Qg1ERXrCBo2AsTK-Arfh3ynlAaGdWDiFpVOJIMRmliP5ylFc_Hpn6odZF2xVu8b9OdhSOTrVwptXo49BhG4y5LvMWB1cOnnlrfagkqz-SYd2gf24DAkWm2U86OKEBzyOeUky6r6bnHU4AVt-OcHpEi4ryhuFuqNEQstSJA&h=sKSV8GNWQmBgyxW3zXoXLTwstmAtlCaDzY9yjUgdFqA response: body: - string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","name":"c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-10-17T06:33:29.2572333Z"}' + string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","name":"cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-12-09T06:17:41.6427052Z"}' headers: cache-control: - no-cache @@ -331,9 +331,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:35:33 GMT + - Tue, 09 Dec 2025 06:19:45 GMT etag: - - '"e70adfe8-0000-0100-0000-68f1e3390000"' + - '"a0009ee6-0000-0100-0000-6937bf050000"' expires: - '-1' pragma: @@ -347,7 +347,7 @@ interactions: x-ms-operation-identifier: - '' x-msedge-ref: - - 'Ref A: 1A424225149C472AA7325A8F178138C6 Ref B: JKT201051407034 Ref C: 2025-10-17T06:35:33Z' + - 'Ref A: 299A7EE1564341C0AE86C5951E380309 Ref B: SG2AA1070303054 Ref C: 2025-12-09T06:19:44Z' status: code: 200 message: OK @@ -365,12 +365,12 @@ interactions: ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0?api-version=2025-06-01&t=638962796098531772&c=MIIIpTCCBo2gAwIBAgITFgGpymN7LTW4kGDY9AABAanKYzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE2MDY0NzU2WhcNMjYwMTEyMDY0NzU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKTm5YrLmfx9BQfyqn0KlKU5oAoMO71ploN13WymwudXY4jancWivKtgBQUtClbNOMf8GYtxePPkFtxCfON6ynaA50b2GFHRrjRAHMFB49frm55UXml1ym0Wz3JH6bXBwGJBhpQkMn2aLk58hRpzNpxEu8BK4avf0oZczbk_PMUH85rY1z-QQUNFQb_nIO7v3SIOCK3CKt4GdAKztacTI1NAnA_-1QYq5xcwep6CETOHLmlB_JNwscGCDdFNyGB72czos_xXG50Xhzs81LE3w3j92c_7ddvO9ojBuiNMBdFbP7GW31DrqzglZVWg5GHxjEcuVEIKM8kcIdQ2s7z8aGkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTviIwcnAMMwKNPI0scxiwQPceQFTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAB7FilN5Nb2BMo0idhK0QI7CLur1vEiQDTx3r1PyBucoZKAhxeeSGSgzuFXBjtOGdl6KlaAyTE6thgbXA5VqVyLYuRnuvUDMFTX51g7bJmFMAwi3IsYN5OQ5fQkuPX3Ao0gysXGrQmU3uH3rbGlVWXLp9xDSUfHh3jfeoU0Q4cgn2VZBiXWIGMiSW0OI1ZQtmEAvtUUja-Za7Q8TrERfxJg1nnqfjm8pH78RqklGECDK_m93WbGutB81jiRb598PoEFLqatWtUWEOagPl1wHToKm4tfgg5pN24otf99UUJQrf6A8kHQVZhuyARbhm-_Y9HSN43NooeVkaEzxST2gsLitbuz9EW6djyVhce8jc4d89cfOQaamQ7wOpiwXusaP-u5Vh-mmGXqkJVn4g_pDI4iv6NGaCosqQodrbEwWjkxiG_jX08qhEuGUhw-vo0jXacuguanQ0ap7Rns1PSLEOSmOB0LlsacAuoBAAQasSIYAX1woGPttqGnuqoCxw6jclcJayt0x4q1URe4WhXuTzySAt-1OtDyzZrXnwfkNB-J1J0iocdL_DCgWGQa2MlPP9EZiR9ox-VqkrOPQAMZBqtP9tQacMeO-V3JqiNzdu8ZzGnJrVT0fbgiS5E3emSyi_rYbuKDR06QJurZseja_toZCirAeHMjBVtn2wNuaY6Rr&s=PgbPZ5FeCwlS39VhF9aywWQfGHYah5xQKcJVNeltCk8DhtFnqAf379FJTCX83C2B99PTTklsT4Yqxj9sbpI1DI1j9-lRsmoGR1SR8w3VbmZ16S5kDwwobyyXAdW_AWNQpXkSUr9LNc13cgobDIshpLnhTNdGuQH8SvCeql8dFiVbEM2AyfDK7sI3NjBwnwTnc_6RMnoGpJWDAHwAmbLfEj7yFm6ft_vK3oq4Srwtt0vafuLM3KxuNSoeUZhkVpFlrAIDlWFn_YCSG-Jz8HQRCt-rHcJk0mEpt3Sq0UUtrq43dGF6LNqEkqQahtE_ZFfnudxioLA3DmSYFDp0jK-xrw&h=DCvduKpRf4U0t1bX3TmdMK_Dl8aW5snX2z5jtjomAsc + uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF?api-version=2025-06-01&t=639008578622415937&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=ZjQGfff3AtAIG6fK7_w_yOwtXnwjCg_i-mW5PFp90tKEHFIPbgRdHzEZLImKIXv95V9nKQU10O6BHhAM3C7IeuA4n_DxL0WrqV2SFL_OpSzATQ5aYfHXz55-AuIjS__aMueTI6Vhq2CrP0EbD6O9SAGtcK3zYK06Eqr6OKX3-K4Y3349Qg1ERXrCBo2AsTK-Arfh3ynlAaGdWDiFpVOJIMRmliP5ylFc_Hpn6odZF2xVu8b9OdhSOTrVwptXo49BhG4y5LvMWB1cOnnlrfagkqz-SYd2gf24DAkWm2U86OKEBzyOeUky6r6bnHU4AVt-OcHpEi4ryhuFuqNEQstSJA&h=sKSV8GNWQmBgyxW3zXoXLTwstmAtlCaDzY9yjUgdFqA response: body: - string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","name":"c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-10-17T06:33:29.2572333Z"}' + string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","name":"cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-12-09T06:17:41.6427052Z"}' headers: cache-control: - no-cache @@ -379,9 +379,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:36:03 GMT + - Tue, 09 Dec 2025 06:20:15 GMT etag: - - '"e70adfe8-0000-0100-0000-68f1e3390000"' + - '"a0009ee6-0000-0100-0000-6937bf050000"' expires: - '-1' pragma: @@ -395,7 +395,7 @@ interactions: x-ms-operation-identifier: - '' x-msedge-ref: - - 'Ref A: 876C61675BA94B2D82C714045211D9E7 Ref B: JKT201051407034 Ref C: 2025-10-17T06:36:04Z' + - 'Ref A: CC39BEF5389B40B880A9A046113B5A7E Ref B: SG2AA1070303054 Ref C: 2025-12-09T06:20:15Z' status: code: 200 message: OK @@ -413,12 +413,12 @@ interactions: ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0?api-version=2025-06-01&t=638962796098531772&c=MIIIpTCCBo2gAwIBAgITFgGpymN7LTW4kGDY9AABAanKYzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE2MDY0NzU2WhcNMjYwMTEyMDY0NzU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKTm5YrLmfx9BQfyqn0KlKU5oAoMO71ploN13WymwudXY4jancWivKtgBQUtClbNOMf8GYtxePPkFtxCfON6ynaA50b2GFHRrjRAHMFB49frm55UXml1ym0Wz3JH6bXBwGJBhpQkMn2aLk58hRpzNpxEu8BK4avf0oZczbk_PMUH85rY1z-QQUNFQb_nIO7v3SIOCK3CKt4GdAKztacTI1NAnA_-1QYq5xcwep6CETOHLmlB_JNwscGCDdFNyGB72czos_xXG50Xhzs81LE3w3j92c_7ddvO9ojBuiNMBdFbP7GW31DrqzglZVWg5GHxjEcuVEIKM8kcIdQ2s7z8aGkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTviIwcnAMMwKNPI0scxiwQPceQFTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAB7FilN5Nb2BMo0idhK0QI7CLur1vEiQDTx3r1PyBucoZKAhxeeSGSgzuFXBjtOGdl6KlaAyTE6thgbXA5VqVyLYuRnuvUDMFTX51g7bJmFMAwi3IsYN5OQ5fQkuPX3Ao0gysXGrQmU3uH3rbGlVWXLp9xDSUfHh3jfeoU0Q4cgn2VZBiXWIGMiSW0OI1ZQtmEAvtUUja-Za7Q8TrERfxJg1nnqfjm8pH78RqklGECDK_m93WbGutB81jiRb598PoEFLqatWtUWEOagPl1wHToKm4tfgg5pN24otf99UUJQrf6A8kHQVZhuyARbhm-_Y9HSN43NooeVkaEzxST2gsLitbuz9EW6djyVhce8jc4d89cfOQaamQ7wOpiwXusaP-u5Vh-mmGXqkJVn4g_pDI4iv6NGaCosqQodrbEwWjkxiG_jX08qhEuGUhw-vo0jXacuguanQ0ap7Rns1PSLEOSmOB0LlsacAuoBAAQasSIYAX1woGPttqGnuqoCxw6jclcJayt0x4q1URe4WhXuTzySAt-1OtDyzZrXnwfkNB-J1J0iocdL_DCgWGQa2MlPP9EZiR9ox-VqkrOPQAMZBqtP9tQacMeO-V3JqiNzdu8ZzGnJrVT0fbgiS5E3emSyi_rYbuKDR06QJurZseja_toZCirAeHMjBVtn2wNuaY6Rr&s=PgbPZ5FeCwlS39VhF9aywWQfGHYah5xQKcJVNeltCk8DhtFnqAf379FJTCX83C2B99PTTklsT4Yqxj9sbpI1DI1j9-lRsmoGR1SR8w3VbmZ16S5kDwwobyyXAdW_AWNQpXkSUr9LNc13cgobDIshpLnhTNdGuQH8SvCeql8dFiVbEM2AyfDK7sI3NjBwnwTnc_6RMnoGpJWDAHwAmbLfEj7yFm6ft_vK3oq4Srwtt0vafuLM3KxuNSoeUZhkVpFlrAIDlWFn_YCSG-Jz8HQRCt-rHcJk0mEpt3Sq0UUtrq43dGF6LNqEkqQahtE_ZFfnudxioLA3DmSYFDp0jK-xrw&h=DCvduKpRf4U0t1bX3TmdMK_Dl8aW5snX2z5jtjomAsc + uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF?api-version=2025-06-01&t=639008578622415937&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=ZjQGfff3AtAIG6fK7_w_yOwtXnwjCg_i-mW5PFp90tKEHFIPbgRdHzEZLImKIXv95V9nKQU10O6BHhAM3C7IeuA4n_DxL0WrqV2SFL_OpSzATQ5aYfHXz55-AuIjS__aMueTI6Vhq2CrP0EbD6O9SAGtcK3zYK06Eqr6OKX3-K4Y3349Qg1ERXrCBo2AsTK-Arfh3ynlAaGdWDiFpVOJIMRmliP5ylFc_Hpn6odZF2xVu8b9OdhSOTrVwptXo49BhG4y5LvMWB1cOnnlrfagkqz-SYd2gf24DAkWm2U86OKEBzyOeUky6r6bnHU4AVt-OcHpEi4ryhuFuqNEQstSJA&h=sKSV8GNWQmBgyxW3zXoXLTwstmAtlCaDzY9yjUgdFqA response: body: - string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","name":"c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-10-17T06:33:29.2572333Z"}' + string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","name":"cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Accepted","startTime":"2025-12-09T06:17:41.6427052Z"}' headers: cache-control: - no-cache @@ -427,9 +427,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:36:34 GMT + - Tue, 09 Dec 2025 06:20:46 GMT etag: - - '"e70adfe8-0000-0100-0000-68f1e3390000"' + - '"a0009ee6-0000-0100-0000-6937bf050000"' expires: - '-1' pragma: @@ -443,7 +443,7 @@ interactions: x-ms-operation-identifier: - '' x-msedge-ref: - - 'Ref A: 15EA04AC79AA4D91959A1061497C3EC4 Ref B: JKT201051407034 Ref C: 2025-10-17T06:36:34Z' + - 'Ref A: 47382577599847A3BDBEF73FA2D9CED8 Ref B: SG2AA1070303054 Ref C: 2025-12-09T06:20:46Z' status: code: 200 message: OK @@ -461,12 +461,12 @@ interactions: ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0?api-version=2025-06-01&t=638962796098531772&c=MIIIpTCCBo2gAwIBAgITFgGpymN7LTW4kGDY9AABAanKYzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE2MDY0NzU2WhcNMjYwMTEyMDY0NzU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKTm5YrLmfx9BQfyqn0KlKU5oAoMO71ploN13WymwudXY4jancWivKtgBQUtClbNOMf8GYtxePPkFtxCfON6ynaA50b2GFHRrjRAHMFB49frm55UXml1ym0Wz3JH6bXBwGJBhpQkMn2aLk58hRpzNpxEu8BK4avf0oZczbk_PMUH85rY1z-QQUNFQb_nIO7v3SIOCK3CKt4GdAKztacTI1NAnA_-1QYq5xcwep6CETOHLmlB_JNwscGCDdFNyGB72czos_xXG50Xhzs81LE3w3j92c_7ddvO9ojBuiNMBdFbP7GW31DrqzglZVWg5GHxjEcuVEIKM8kcIdQ2s7z8aGkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBTviIwcnAMMwKNPI0scxiwQPceQFTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAB7FilN5Nb2BMo0idhK0QI7CLur1vEiQDTx3r1PyBucoZKAhxeeSGSgzuFXBjtOGdl6KlaAyTE6thgbXA5VqVyLYuRnuvUDMFTX51g7bJmFMAwi3IsYN5OQ5fQkuPX3Ao0gysXGrQmU3uH3rbGlVWXLp9xDSUfHh3jfeoU0Q4cgn2VZBiXWIGMiSW0OI1ZQtmEAvtUUja-Za7Q8TrERfxJg1nnqfjm8pH78RqklGECDK_m93WbGutB81jiRb598PoEFLqatWtUWEOagPl1wHToKm4tfgg5pN24otf99UUJQrf6A8kHQVZhuyARbhm-_Y9HSN43NooeVkaEzxST2gsLitbuz9EW6djyVhce8jc4d89cfOQaamQ7wOpiwXusaP-u5Vh-mmGXqkJVn4g_pDI4iv6NGaCosqQodrbEwWjkxiG_jX08qhEuGUhw-vo0jXacuguanQ0ap7Rns1PSLEOSmOB0LlsacAuoBAAQasSIYAX1woGPttqGnuqoCxw6jclcJayt0x4q1URe4WhXuTzySAt-1OtDyzZrXnwfkNB-J1J0iocdL_DCgWGQa2MlPP9EZiR9ox-VqkrOPQAMZBqtP9tQacMeO-V3JqiNzdu8ZzGnJrVT0fbgiS5E3emSyi_rYbuKDR06QJurZseja_toZCirAeHMjBVtn2wNuaY6Rr&s=PgbPZ5FeCwlS39VhF9aywWQfGHYah5xQKcJVNeltCk8DhtFnqAf379FJTCX83C2B99PTTklsT4Yqxj9sbpI1DI1j9-lRsmoGR1SR8w3VbmZ16S5kDwwobyyXAdW_AWNQpXkSUr9LNc13cgobDIshpLnhTNdGuQH8SvCeql8dFiVbEM2AyfDK7sI3NjBwnwTnc_6RMnoGpJWDAHwAmbLfEj7yFm6ft_vK3oq4Srwtt0vafuLM3KxuNSoeUZhkVpFlrAIDlWFn_YCSG-Jz8HQRCt-rHcJk0mEpt3Sq0UUtrq43dGF6LNqEkqQahtE_ZFfnudxioLA3DmSYFDp0jK-xrw&h=DCvduKpRf4U0t1bX3TmdMK_Dl8aW5snX2z5jtjomAsc + uri: https://management.azure.com/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF?api-version=2025-06-01&t=639008578622415937&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=ZjQGfff3AtAIG6fK7_w_yOwtXnwjCg_i-mW5PFp90tKEHFIPbgRdHzEZLImKIXv95V9nKQU10O6BHhAM3C7IeuA4n_DxL0WrqV2SFL_OpSzATQ5aYfHXz55-AuIjS__aMueTI6Vhq2CrP0EbD6O9SAGtcK3zYK06Eqr6OKX3-K4Y3349Qg1ERXrCBo2AsTK-Arfh3ynlAaGdWDiFpVOJIMRmliP5ylFc_Hpn6odZF2xVu8b9OdhSOTrVwptXo49BhG4y5LvMWB1cOnnlrfagkqz-SYd2gf24DAkWm2U86OKEBzyOeUky6r6bnHU4AVt-OcHpEi4ryhuFuqNEQstSJA&h=sKSV8GNWQmBgyxW3zXoXLTwstmAtlCaDzY9yjUgdFqA response: body: - string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","name":"c5a99920-4b33-4cd8-8346-3b88f7f49dfa*DA2AB91742BF72199D58AF1FDEE8B79D99D4F7812701190862E7817558B5A4E0","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Succeeded","startTime":"2025-10-17T06:33:29.2572333Z","endTime":"2025-10-17T06:36:51.3072374Z","properties":null}' + string: '{"id":"/providers/Microsoft.Elastic/locations/EASTUS/operationStatuses/cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","name":"cfb90162-880d-402c-9b77-0bdd357f9820*14C3588388338802048553746233A55706CE4A43D573F5CE53F32EA116D829AF","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","status":"Succeeded","startTime":"2025-12-09T06:17:41.6427052Z","endTime":"2025-12-09T06:20:45.1043783Z","properties":null}' headers: cache-control: - no-cache @@ -475,9 +475,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:37:05 GMT + - Tue, 09 Dec 2025 06:21:17 GMT etag: - - '"8501c62c-0000-0500-0000-68f1e4050000"' + - '"e7052df6-0000-0500-0000-6937bfbe0000"' expires: - '-1' pragma: @@ -491,7 +491,7 @@ interactions: x-ms-operation-identifier: - '' x-msedge-ref: - - 'Ref A: 8E4ABD75DF564A3E9F407173A75BC711 Ref B: JKT201051407034 Ref C: 2025-10-17T06:37:05Z' + - 'Ref A: FD69A515FAF04FDD9400A2FA6D00ACF7 Ref B: SG2AA1070303054 Ref C: 2025-12-09T06:21:16Z' status: code: 200 message: OK @@ -509,23 +509,23 @@ interactions: ParameterSetName: - --name --resource-group --user-info --sku --debug User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002?api-version=2025-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","name":"monitor000002","type":"microsoft.elastic/monitors","sku":{"name":"ess-consumption-2024_Monthly"},"kind":"elastic-hosted-search","location":"eastus","systemData":{"createdBy":"CLITesting3@testtestliftrtest5.onmicrosoft.com","createdByType":"User","createdAt":"2025-10-17T06:33:27.1032262Z","lastModifiedBy":"CLITesting3@testtestliftrtest5.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-17T06:33:27.1032262Z"},"properties":{"provisioningState":"Succeeded","monitoringStatus":"Enabled","elasticProperties":{"elasticCloudUser":{"emailAddress":"CLITesting3@testtestliftrtest5.onmicrosoft.com","id":"2178496612","elasticCloudSsoDefaultUrl":"https://cloud.elastic.co"},"elasticCloudDeployment":{"name":"monitor000002","deploymentId":"2c4fedc2333146a3254c9ee524d8933c","azureSubscriptionId":"e16a0478-bcb5-4c34-b8c7-7f2aa1b9995e","elasticsearchRegion":"azure-eastus","elasticsearchServiceUrl":"https://monitor000002-2c4fed.es.eastus.azure.elastic-cloud.com","kibanaServiceUrl":"https://51f7ff736dae467ab35ba198ef99a53c.eastus.azure.elastic-cloud.com","kibanaSsoUrl":"/sso/v1/go/ec:2975094824:kibana-monitor000002-2c4fed?acs=https://monitor000002-2c4fed.kb.eastus.azure.elastic-cloud.com/api/security/saml/callback&sp_login_url=https://monitor000002-2c4fed.kb.eastus.azure.elastic-cloud.com"}},"liftrResourceCategory":"MonitorLogs","liftrResourcePreference":0,"generateApiKey":false,"hostingType":"Hosted"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002","name":"monitor000002","type":"microsoft.elastic/monitors","sku":{"name":"ess-consumption-2024_Monthly"},"kind":"elastic-hosted-search","location":"eastus","systemData":{"createdBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","createdByType":"User","createdAt":"2025-12-09T06:17:39.9447388Z","lastModifiedBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-09T06:17:39.9447388Z"},"properties":{"provisioningState":"Succeeded","monitoringStatus":"Enabled","elasticProperties":{"elasticCloudUser":{"emailAddress":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","id":"637554992","elasticCloudSsoDefaultUrl":"https://cloud.elastic.co"},"elasticCloudDeployment":{"name":"monitor000002","deploymentId":"3ddfadd5105e9c3a1f34ee48f51e2a1d","azureSubscriptionId":"e16a0478-bcb5-4c34-b8c7-7f2aa1b9995e","elasticsearchRegion":"azure-eastus","elasticsearchServiceUrl":"https://monitor000002-3ddfad.es.eastus.azure.elastic-cloud.com","kibanaServiceUrl":"https://be8982e37ba64f4aa90c0d914381ac4c.eastus.azure.elastic-cloud.com","kibanaSsoUrl":"/sso/v1/go/ec:1971936224:kibana-monitor000002-3ddfad?acs=https://monitor000002-3ddfad.kb.eastus.azure.elastic-cloud.com/api/security/saml/callback&sp_login_url=https://monitor000002-3ddfad.kb.eastus.azure.elastic-cloud.com"}},"liftrResourceCategory":"MonitorLogs","liftrResourcePreference":0,"generateApiKey":false,"hostingType":"Hosted"}}' headers: cache-control: - no-cache content-length: - - '1587' + - '1601' content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:37:06 GMT + - Tue, 09 Dec 2025 06:21:17 GMT etag: - - '"1901c9c3-0000-0800-0000-68f1e4030000"' + - '"0700d0d0-0000-0800-0000-6937bfbd0000"' expires: - '-1' pragma: @@ -541,12 +541,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F328BDAB6DDE4A74947033A5A6FE5F92 Ref B: JKT201051407034 Ref C: 2025-10-17T06:37:06Z' + - 'Ref A: 71B0C08AE6AE449A918B638DC8CCB86B Ref B: SG2AA1070303054 Ref C: 2025-12-09T06:21:17Z' status: code: 200 message: OK - request: - body: '{"properties": {"key": "9e1bac69b92242129ad1f2373dd06939", "openAIResourceEndpoint": + body: '{"properties": {"key": "mock-api-key-for-testing-purposes-only", "openAIResourceEndpoint": "https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview", "openAIResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025"}}' headers: @@ -559,34 +559,34 @@ interactions: Connection: - keep-alive Content-Length: - - '401' + - '407' Content-Type: - application/json ParameterSetName: - --resource-group --monitor-name --integration-name --open-ai-resource-id --open-ai-resource-endpoint --key User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default?api-version=2025-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default","name":"default","type":"microsoft.elastic/monitors/openaiintegrations","properties":{"openAIResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025","openAIResourceEndpoint":"https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview","lastRefreshAt":"2025-10-17T06:37:10.5945618Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default","name":"default","type":"microsoft.elastic/monitors/openaiintegrations","systemData":{"createdBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","createdByType":"User","createdAt":"2025-12-09T06:21:18.980699Z","lastModifiedBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-09T06:21:18.980699Z"},"properties":{"openAIResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025","openAIResourceEndpoint":"https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview","lastRefreshAt":"2025-12-09T06:21:20.5485346Z"}}' headers: cache-control: - no-cache content-length: - - '656' + - '948' content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:37:10 GMT + - Tue, 09 Dec 2025 06:21:20 GMT etag: - - '"48007b76-0000-0100-0000-68f1e4160000"' + - '"cc1aea43-0000-0100-0000-6937bfe00000"' expires: - '-1' mise-correlation-id: - - 37564d9b-9e41-4a35-b3a5-145a4f9848fb + - c1fcc856-364c-436e-864e-560927cbefda pragma: - no-cache request-context: @@ -598,7 +598,7 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=cedaac2b-9d09-4ae2-b0de-7b34d3dc5926/eastus/fa0f2f64-c849-4a59-af2f-287facf53249 + - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=6b6ef90d-8bb8-4042-ae98-c1b8088928ab/eastus/47086835-38a3-49cf-8b1c-7741c1974f42 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-writes: @@ -606,7 +606,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 41CC2D0A88924EFA9FAA4F7EA4C1E788 Ref B: JKT201051406042 Ref C: 2025-10-17T06:37:08Z' + - 'Ref A: C53EA2CBAD97485F86056A3050DCF786 Ref B: SG2AA1070305062 Ref C: 2025-12-09T06:21:18Z' status: code: 200 message: OK @@ -624,23 +624,23 @@ interactions: ParameterSetName: - -n -g --monitor-name --key --open-ai-resource-endpoint --open-ai-resource-id User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default?api-version=2025-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default","name":"default","type":"microsoft.elastic/monitors/openaiintegrations","properties":{"openAIResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025","openAIResourceEndpoint":"https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview","lastRefreshAt":"2025-10-17T06:37:10.5945618Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default","name":"default","type":"microsoft.elastic/monitors/openaiintegrations","systemData":{"createdBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","createdByType":"User","createdAt":"2025-12-09T06:21:18.980699Z","lastModifiedBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-09T06:21:18.980699Z"},"properties":{"openAIResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025","openAIResourceEndpoint":"https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview","lastRefreshAt":"2025-12-09T06:21:20.5485346Z"}}' headers: cache-control: - no-cache content-length: - - '656' + - '948' content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:37:11 GMT + - Tue, 09 Dec 2025 06:21:21 GMT etag: - - '"48007b76-0000-0100-0000-68f1e4160000"' + - '"cc1aea43-0000-0100-0000-6937bfe00000"' expires: - '-1' pragma: @@ -652,83 +652,18 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=cedaac2b-9d09-4ae2-b0de-7b34d3dc5926/eastus/b3395b37-bed8-46f7-aa67-d4d8d6cb7efb + - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=6b6ef90d-8bb8-4042-ae98-c1b8088928ab/eastus/5e17e4b1-62c9-4092-bdbf-63d9b1553e60 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 3AA12236E0B447029E6C85DFD2EFE51D Ref B: JKT201051407029 Ref C: 2025-10-17T06:37:11Z' + - 'Ref A: 55172362D7FB4C05AE9AE39D31A75B9D Ref B: SG2AA1040519031 Ref C: 2025-12-09T06:21:21Z' status: code: 200 message: OK - request: - body: '{"properties": {"key": "9e1bac69b92242129ad1f2373dd06939", "openAIResourceEndpoint": - "https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview", - "openAIResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - elastic monitor open-ai-integration update - Connection: - - keep-alive - Content-Length: - - '401' - Content-Type: - - application/json - ParameterSetName: - - -n -g --monitor-name --key --open-ai-resource-endpoint --open-ai-resource-id - User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default?api-version=2025-06-01 - response: - body: - string: '{"error":{"code":"ResourceCreationFailed","message":"ResourceCreationFailed: - Internal Server Error"}}' - headers: - cache-control: - - no-cache - content-length: - - '101' - content-type: - - application/json - date: - - Fri, 17 Oct 2025 06:37:13 GMT - expires: - - '-1' - mise-correlation-id: - - d1844ae1-13f3-436a-af85-fbc3b46ea378 - pragma: - - no-cache - request-context: - - appId=cid-v1:13f6b276-8851-4983-9417-68bc36807add - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - service - x-ms-operation-identifier: - - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=cedaac2b-9d09-4ae2-b0de-7b34d3dc5926/eastus/3ac7d5ce-a6fa-43cb-8fcd-5432d218c159 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' - x-msedge-ref: - - 'Ref A: 061A64FFE41A490F9F609E1C166B6F76 Ref B: JKT201051407029 Ref C: 2025-10-17T06:37:12Z' - status: - code: 500 - message: Internal Server Error -- request: - body: '{"properties": {"key": "9e1bac69b92242129ad1f2373dd06939", "openAIResourceEndpoint": + body: '{"properties": {"key": "mock-api-key-for-testing-purposes-only", "openAIResourceEndpoint": "https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview", "openAIResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025"}}' headers: @@ -741,33 +676,33 @@ interactions: Connection: - keep-alive Content-Length: - - '401' + - '407' Content-Type: - application/json ParameterSetName: - -n -g --monitor-name --key --open-ai-resource-endpoint --open-ai-resource-id User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default?api-version=2025-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default","name":"default","type":"microsoft.elastic/monitors/openaiintegrations","properties":{"openAIResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025","openAIResourceEndpoint":"https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview","lastRefreshAt":"2025-10-17T06:37:16.1905368Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default","name":"default","type":"microsoft.elastic/monitors/openaiintegrations","systemData":{"createdBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","createdByType":"User","createdAt":"2025-12-09T06:21:18.980699Z","lastModifiedBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-09T06:21:21.9499721Z"},"properties":{"openAIResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025","openAIResourceEndpoint":"https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview","lastRefreshAt":"2025-12-09T06:21:23.0583187Z"}}' headers: cache-control: - no-cache content-length: - - '656' + - '949' content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:37:16 GMT + - Tue, 09 Dec 2025 06:21:22 GMT etag: - - '"48008676-0000-0100-0000-68f1e41c0000"' + - '"cc1a4245-0000-0100-0000-6937bfe30000"' expires: - '-1' mise-correlation-id: - - 5b42e0bd-6fda-4a63-907a-5f3aabc508a2 + - 975e0105-9a02-410d-a400-dc4bfd1d744e pragma: - no-cache request-context: @@ -779,7 +714,7 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=cedaac2b-9d09-4ae2-b0de-7b34d3dc5926/eastus/076858e0-70b6-4c7a-85ce-e19ee7f250fa + - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=6b6ef90d-8bb8-4042-ae98-c1b8088928ab/eastus/bc78c1da-87ed-4083-918a-a00519700f7d x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-writes: @@ -787,7 +722,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: E985F44A42904E11AA0C36E580C08375 Ref B: JKT201051407029 Ref C: 2025-10-17T06:37:13Z' + - 'Ref A: CF31FB374D4449AD80B4AD353AC43D8F Ref B: SG2AA1040519031 Ref C: 2025-12-09T06:21:21Z' status: code: 200 message: OK @@ -805,21 +740,21 @@ interactions: ParameterSetName: - -g --monitor-name User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations?api-version=2025-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default","name":"default","type":"microsoft.elastic/monitors/openaiintegrations","properties":{"openAIResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025","openAIResourceEndpoint":"https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview","lastRefreshAt":"2025-10-17T06:37:16.1905368Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default","name":"default","type":"microsoft.elastic/monitors/openaiintegrations","systemData":{"createdBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","createdByType":"User","createdAt":"2025-12-09T06:21:18.980699Z","lastModifiedBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-09T06:21:21.9499721Z"},"properties":{"openAIResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025","openAIResourceEndpoint":"https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview","lastRefreshAt":"2025-12-09T06:21:23.0583187Z"}}]}' headers: cache-control: - no-cache content-length: - - '668' + - '961' content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:37:17 GMT + - Tue, 09 Dec 2025 06:21:23 GMT expires: - '-1' pragma: @@ -831,13 +766,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=cedaac2b-9d09-4ae2-b0de-7b34d3dc5926/eastus/13c92527-96f5-4eed-9190-bab1ff7e2215 + - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=6b6ef90d-8bb8-4042-ae98-c1b8088928ab/eastus/dddb6ec1-c269-463d-bba3-5900abf7f137 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1AB15744B3BA4244A1F736257DC5F76C Ref B: JKT201051406040 Ref C: 2025-10-17T06:37:17Z' + - 'Ref A: 5A09A710CC474349A096F3B04F654E80 Ref B: SG2AA1070303062 Ref C: 2025-12-09T06:21:23Z' status: code: 200 message: OK @@ -855,23 +790,23 @@ interactions: ParameterSetName: - -n -g --monitor-name User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.9.13 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.78.0 azsdk-python-core/1.35.1 Python/3.9.13 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default?api-version=2025-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default","name":"default","type":"microsoft.elastic/monitors/openaiintegrations","properties":{"openAIResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025","openAIResourceEndpoint":"https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview","lastRefreshAt":"2025-10-17T06:37:16.1905368Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_elastic_monitor000001/providers/Microsoft.Elastic/monitors/monitor000002/openAIIntegrations/default","name":"default","type":"microsoft.elastic/monitors/openaiintegrations","systemData":{"createdBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","createdByType":"User","createdAt":"2025-12-09T06:21:18.980699Z","lastModifiedBy":"jkoretesting1201@testtestliftrtest5.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-09T06:21:21.9499721Z"},"properties":{"openAIResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/es-cloudtests-portal/providers/Microsoft.CognitiveServices/accounts/es-openAi-resource-24092025","openAIResourceEndpoint":"https://es-openai-resource-24092025.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2025-01-01-preview","lastRefreshAt":"2025-12-09T06:21:23.0583187Z"}}' headers: cache-control: - no-cache content-length: - - '656' + - '949' content-type: - application/json; charset=utf-8 date: - - Fri, 17 Oct 2025 06:37:18 GMT + - Tue, 09 Dec 2025 06:21:25 GMT etag: - - '"48008676-0000-0100-0000-68f1e41c0000"' + - '"cc1a4245-0000-0100-0000-6937bfe30000"' expires: - '-1' pragma: @@ -883,13 +818,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=cedaac2b-9d09-4ae2-b0de-7b34d3dc5926/eastus/fb94ea4f-64a0-4c16-a764-c636a33f28b2 + - tenantId=c9967a4f-613f-442b-88f6-1e46aad03123,objectId=6b6ef90d-8bb8-4042-ae98-c1b8088928ab/eastus/4099f723-0df4-47ee-83f5-833b314782d6 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 34580ED8B4D5477ABBA96C555461471E Ref B: JKT201051406036 Ref C: 2025-10-17T06:37:18Z' + - 'Ref A: D55B067C881B4068AAD7D2BC217DA2E1 Ref B: SG2AA1040516023 Ref C: 2025-12-09T06:21:25Z' status: code: 200 message: OK diff --git a/src/elastic/azext_elastic/tests/latest/test_elastic_scenario.py b/src/elastic/azext_elastic/tests/latest/test_elastic_scenario.py index fe3c5607ae0..7fcd4f5f4eb 100644 --- a/src/elastic/azext_elastic/tests/latest/test_elastic_scenario.py +++ b/src/elastic/azext_elastic/tests/latest/test_elastic_scenario.py @@ -138,7 +138,7 @@ def test_elastic_monitor_open_ai_integration(self, resource_group): 'rg': resource_group, 'email': email, 'integration_name': 'default', - 'key': '9e1bac69b92242129ad1f2373dd06939', + 'key': 'mock-api-key-for-testing-purposes-only', 'openAIResourceId': openai_resource_id, 'openAIResourceEndpoint': openai_resource_endpoint, }) diff --git a/src/footprint/HISTORY.rst b/src/footprint/HISTORY.rst index 8e13854c706..0410382f013 100644 --- a/src/footprint/HISTORY.rst +++ b/src/footprint/HISTORY.rst @@ -3,10 +3,14 @@ Release History =============== -0.1.0 +1.0.1b1 ++++++ -* Initial release. +* Relaxed the TLD length restriction in endpoint pattern from {2,5} to {2,} to allow for longer TLD names. 1.0.0 ++++++ * Relaxed the min_length on profile name and provided short names to all parameters of commands longer than 22 characters to improve the experience. + +0.1.0 +++++++ +* Initial release. \ No newline at end of file diff --git a/src/footprint/azext_footprint/azext_metadata.json b/src/footprint/azext_footprint/azext_metadata.json index 4f48fa652a5..d061f35c0c3 100644 --- a/src/footprint/azext_footprint/azext_metadata.json +++ b/src/footprint/azext_footprint/azext_metadata.json @@ -1,4 +1,4 @@ { - "azext.isExperimental": true, + "azext.isPreview": true, "azext.minCliCoreVersion": "2.11.0" } \ No newline at end of file diff --git a/src/footprint/azext_footprint/manual/version.py b/src/footprint/azext_footprint/manual/version.py index 9ed7b1240a1..ebc338f38ef 100644 --- a/src/footprint/azext_footprint/manual/version.py +++ b/src/footprint/azext_footprint/manual/version.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "1.0.0" +VERSION = "1.0.1b" diff --git a/src/footprint/azext_footprint/tests/latest/recordings/test_footprint.yaml b/src/footprint/azext_footprint/tests/latest/recordings/test_footprint.yaml index c835cb75662..167e818a960 100644 --- a/src/footprint/azext_footprint/tests/latest/recordings/test_footprint.yaml +++ b/src/footprint/azext_footprint/tests/latest/recordings/test_footprint.yaml @@ -21,7 +21,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002?api-version=2024-09-16-preview response: body: string: '{"error":{"code":"ResourceCreationFailed","message":"ResourceCreationFailed: @@ -74,7 +74,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002?api-version=2024-09-16-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002","name":"fpPro000002","type":"Microsoft.FootprintMonitoring/profiles","location":"westus2","tags":{"key1":"value1","key2":"value2"},"properties":{"coldPathSamplingPercentageRate":100.0,"measurementCount":3,"profileId":"fpPro000002","provisioningState":"Succeeded","reportingEndpoints":["fpc.msedge.net/r.gif","odinvzc.azureedge.net/apc/trans.gif"],"scriptUri":"https://fpc.msedge.net/conf/v2/fpPro000002/fpconfig.min.json","startDelayMilliseconds":5000}}' @@ -125,7 +125,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002?api-version=2024-09-16-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002","name":"fpPro000002","type":"Microsoft.FootprintMonitoring/profiles","location":"westus2","tags":{"key1":"value1","key2":"value2"},"properties":{"coldPathSamplingPercentageRate":100.0,"experiments":[],"measurementCount":3,"measurementEndpoints":[],"profileId":"fpPro000002","provisioningState":"Succeeded","reportingEndpoints":["fpc.msedge.net/r.gif","odinvzc.azureedge.net/apc/trans.gif"],"scriptUri":"https://fpc.msedge.net/conf/v2/fpPro000002/fpconfig.min.json","startDelayMilliseconds":5000}}' @@ -174,7 +174,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles?api-version=2024-09-16-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002","name":"fpPro000002","type":"Microsoft.FootprintMonitoring/profiles","location":"westus2","tags":{"key1":"value1","key2":"value2"},"properties":{"coldPathSamplingPercentageRate":100.0,"experiments":[],"measurementCount":3,"measurementEndpoints":[],"profileId":"fpPro000002","provisioningState":"Succeeded","reportingEndpoints":["fpc.msedge.net/r.gif","odinvzc.azureedge.net/apc/trans.gif"],"scriptUri":"https://fpc.msedge.net/conf/v2/fpPro000002/fpconfig.min.json","startDelayMilliseconds":5000}}]}' @@ -221,7 +221,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.FootprintMonitoring/profiles?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.FootprintMonitoring/profiles?api-version=2024-09-16-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jonunezd-rg-1/providers/Microsoft.FootprintMonitoring/profiles/jonunezd-prodtest","name":"jonunezd-prodtest","type":"Microsoft.FootprintMonitoring/profiles","location":"westus2","tags":{"key1":"value1","key2":"value2"},"properties":{"coldPathSamplingPercentageRate":100.0,"experiments":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jonunezd-rg-1/providers/Microsoft.FootprintMonitoring/profiles/jonunezd-prodtest/experiments/exp-1"}],"measurementCount":5,"measurementEndpoints":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jonunezd-rg-1/providers/Microsoft.FootprintMonitoring/profiles/jonunezd-prodtest/measurementEndpoints/endpoint-2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jonunezd-rg-1/providers/Microsoft.FootprintMonitoring/profiles/jonunezd-prodtest/measurementEndpoints/endpoint-1"}],"profileId":"jonunezd-prodtest","provisioningState":"Succeeded","reportingEndpoints":["fpc.msedge.net/r.gif","odinvzc.azureedge.net/apc/trans.gif"],"scriptUri":"https://fpc.msedge.net/conf/v2/jonunezd-prodtest/fpconfig.min.json","startDelayMilliseconds":999}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002","name":"fpPro000002","type":"Microsoft.FootprintMonitoring/profiles","location":"westus2","tags":{"key1":"value1","key2":"value2"},"properties":{"coldPathSamplingPercentageRate":100.0,"experiments":[],"measurementCount":3,"measurementEndpoints":[],"profileId":"fpPro000002","provisioningState":"Succeeded","reportingEndpoints":["fpc.msedge.net/r.gif","odinvzc.azureedge.net/apc/trans.gif"],"scriptUri":"https://fpc.msedge.net/conf/v2/fpPro000002/fpconfig.min.json","startDelayMilliseconds":5000}}]}' @@ -272,7 +272,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002?api-version=2024-09-16-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002","name":"fpPro000002","type":"Microsoft.FootprintMonitoring/profiles","location":"westus2","tags":{"key1":"value1","key2":"value2"},"properties":{"coldPathSamplingPercentageRate":100,"measurementCount":3,"profileId":"fpPro000002","provisioningState":"Succeeded","reportingEndpoints":["fpc.msedge.net/r.gif","odinvzc.azureedge.net/apc/trans.gif"],"scriptUri":"https://fpc.msedge.net/conf/v2/fpPro000002/fpconfig.min.json","startDelayMilliseconds":5000}}' @@ -327,7 +327,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments/fp000004?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments/fp000004?api-version=2024-09-16-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments/fp000004","name":"fp000004","type":"Microsoft.FootprintMonitoring/profiles/experiments","properties":{"description":"An @@ -379,7 +379,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments/fp000004?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments/fp000004?api-version=2024-09-16-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments/fp000004","name":"fp000004","type":"Microsoft.FootprintMonitoring/profiles/experiments","properties":{"description":"An @@ -429,7 +429,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments?api-version=2024-09-16-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments/fp000004","name":"fp000004","type":"Microsoft.FootprintMonitoring/profiles/experiments","properties":{"description":"An @@ -479,7 +479,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003?api-version=2024-09-16-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003","name":"endp000003","type":"Microsoft.FootprintMonitoring/profiles/measurementEndpoints","properties":{"endpoint":"www.contoso.com","endpointId":"3f9db20029849b10e9e1c41f71c32b80","experimentId":"664cdec4f07d4e1083c9b3969ee2c49b","hotPathSamplingPercentageRate":0.0,"measurementType":2,"objectPath":"/trans.gif","warmPathSamplingPercentageRate":0.0,"weight":10}}' @@ -530,7 +530,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003?api-version=2024-09-16-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003","name":"endp000003","type":"Microsoft.FootprintMonitoring/profiles/measurementEndpoints","properties":{"conditions":[],"endpoint":"www.contoso.com","endpointId":"3f9db20029849b10e9e1c41f71c32b80","experimentId":"664cdec4f07d4e1083c9b3969ee2c49b","hotPathSamplingPercentageRate":0.0,"measurementType":2,"objectPath":"/trans.gif","warmPathSamplingPercentageRate":0.0,"weight":10}}' @@ -579,7 +579,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints?api-version=2024-09-16-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003","name":"endp000003","type":"Microsoft.FootprintMonitoring/profiles/measurementEndpoints","properties":{"conditions":[],"endpoint":"www.contoso.com","endpointId":"3f9db20029849b10e9e1c41f71c32b80","experimentId":"664cdec4f07d4e1083c9b3969ee2c49b","hotPathSamplingPercentageRate":0.0,"measurementType":2,"objectPath":"/trans.gif","warmPathSamplingPercentageRate":0.0,"weight":10}}]}' @@ -631,7 +631,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions/condition0?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions/condition0?api-version=2024-09-16-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions/condition0","name":"condition0","type":"Microsoft.FootprintMonitoring/profiles/measurementEndpoints/conditions","properties":{"conditionId":"677f1a8667196d9513d36440893e8d4a","constant":"Edge-Prod-WST","operator":"MatchValueIgnoreCasing","type":"RequestHeader","variable":"X-FD-EdgeEnvironment"}}' @@ -682,7 +682,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions/condition0?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions/condition0?api-version=2024-09-16-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions/condition0","name":"condition0","type":"Microsoft.FootprintMonitoring/profiles/measurementEndpoints/conditions","properties":{"conditionId":"677f1a8667196d9513d36440893e8d4a","constant":"Edge-Prod-WST","operator":"MatchValueIgnoreCasing","type":"RequestHeader","variable":"X-FD-EdgeEnvironment"}}' @@ -731,7 +731,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions?api-version=2024-09-16-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions/condition0","name":"condition0","type":"Microsoft.FootprintMonitoring/profiles/measurementEndpoints/conditions","properties":{"conditionId":"677f1a8667196d9513d36440893e8d4a","constant":"Edge-Prod-WST","operator":"MatchValueIgnoreCasing","type":"RequestHeader","variable":"X-FD-EdgeEnvironment"}}]}' @@ -780,7 +780,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions/condition0?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003/conditions/condition0?api-version=2024-09-16-preview response: body: string: '' @@ -825,7 +825,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments/fp000004?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/experiments/fp000004?api-version=2024-09-16-preview response: body: string: '' @@ -870,7 +870,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002/measurementEndpoints/endp000003?api-version=2024-09-16-preview response: body: string: '' @@ -915,7 +915,7 @@ interactions: - AZURECLI/2.10.1 azsdk-python-footprintmonitoringmanagementclient/unknown Python/3.8.5 (Windows-10-10.0.18362-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002?api-version=2020-02-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.FootprintMonitoring/profiles/fpPro000002?api-version=2024-09-16-preview response: body: string: '' diff --git a/src/footprint/azext_footprint/tests/latest/test_footprint_scenario_coverage.md b/src/footprint/azext_footprint/tests/latest/test_footprint_scenario_coverage.md index 918c9def9f0..fea4d94a44e 100644 --- a/src/footprint/azext_footprint/tests/latest/test_footprint_scenario_coverage.md +++ b/src/footprint/azext_footprint/tests/latest/test_footprint_scenario_coverage.md @@ -1,20 +1,20 @@ |Scenario|Result|ErrorMessage|ErrorStack|ErrorNormalized|StartDt|EndDt| -|step__profiles_put_create_or_update_a_footprint_profile_|successed||||2020-08-18 22:22:11.639664|2020-08-18 22:22:55.697462| -|step__profiles_get_get_the_details_of_a_footprint_profile_|successed||||2020-08-18 22:22:55.697462|2020-08-18 22:22:56.835470| -|step__profiles_get_list_all_footprint_profiles_under_a_resource_group_|successed||||2020-08-18 22:22:56.835470|2020-08-18 22:22:57.912519| -|step__profiles_get_list_all_footprint_profiles_under_a_subscription_|successed||||2020-08-18 22:22:57.912519|2020-08-18 22:22:59.172658| -|step__profiles_patch_update_a_footprint_profile_|successed||||2020-08-18 22:22:59.172658|2020-08-18 22:23:00.365159| -|step__experiments_put_create_or_update_an_experiment_|successed||||2020-08-18 22:23:00.365159|2020-08-18 22:23:05.881296| -|step__experiments_get_get_the_details_of_an_experiment_|successed||||2020-08-18 22:23:05.882295|2020-08-18 22:23:06.878597| -|step__experiments_get_list_all_experiments_under_a_footprint_profile_|successed||||2020-08-18 22:23:06.878597|2020-08-18 22:23:07.847313| -|step__measurementendpoints_put_create_or_update_a_measurement_endpoint_|successed||||2020-08-18 22:23:07.848309|2020-08-18 22:23:14.516788| -|step__measurementendpoints_get_get_the_details_of_a_measurement_endpoint_|successed||||2020-08-18 22:23:14.516788|2020-08-18 22:23:15.493906| -|step__measurementendpoints_get_list_all_the_measurement_endpoints_under_a_footprint_profile_|successed||||2020-08-18 22:23:15.493906|2020-08-18 22:23:16.698742| -|step__measurementendpointconditions_put_create_or_update_a_measurement_endpoint_condition_|successed||||2020-08-18 22:23:16.698742|2020-08-18 22:23:28.010368| -|step__measurementendpointconditions_get_get_the_details_of_a_measurement_endpoint_condition_|successed||||2020-08-18 22:23:28.011367|2020-08-18 22:23:29.276407| -|step__measurementendpointconditions_get_list_all_conditions_under_a_measurement_endpoint_|successed||||2020-08-18 22:23:29.276407|2020-08-18 22:23:30.574658| -|step__measurementendpointconditions_delete_delete_a_measurement_endpoint_condition_|successed||||2020-08-18 22:23:30.575663|2020-08-18 22:23:35.114155| -|step__experiments_delete_delete_an_experiment_|successed||||2020-08-18 22:23:35.114155|2020-08-18 22:23:39.818973| -|step__measurementendpoints_delete_delete_a_measurement_endpoint_|successed||||2020-08-18 22:23:39.818973|2020-08-18 22:23:46.433847| -|step__profiles_delete_delete_a_footprint_profile_|successed||||2020-08-18 22:23:46.434832|2020-08-18 22:23:53.642127| +|step__profiles_put_create_or_update_a_footprint_profile_|successed||||2025-12-05 20:58:20.964070|2025-12-05 20:58:21.295223| +|step__profiles_get_get_the_details_of_a_footprint_profile_|successed||||2025-12-05 20:58:21.295223|2025-12-05 20:58:21.439761| +|step__profiles_get_list_all_footprint_profiles_under_a_resource_group_|successed||||2025-12-05 20:58:21.439761|2025-12-05 20:58:21.624313| +|step__profiles_get_list_all_footprint_profiles_under_a_subscription_|successed||||2025-12-05 20:58:21.624313|2025-12-05 20:58:21.773844| +|step__profiles_patch_update_a_footprint_profile_|successed||||2025-12-05 20:58:21.774854|2025-12-05 20:58:21.911483| +|step__experiments_put_create_or_update_an_experiment_|successed||||2025-12-05 20:58:21.911483|2025-12-05 20:58:22.048772| +|step__experiments_get_get_the_details_of_an_experiment_|successed||||2025-12-05 20:58:22.048772|2025-12-05 20:58:22.198601| +|step__experiments_get_list_all_experiments_under_a_footprint_profile_|successed||||2025-12-05 20:58:22.199601|2025-12-05 20:58:22.337807| +|step__measurementendpoints_put_create_or_update_a_measurement_endpoint_|successed||||2025-12-05 20:58:22.337807|2025-12-05 20:58:22.489003| +|step__measurementendpoints_get_get_the_details_of_a_measurement_endpoint_|successed||||2025-12-05 20:58:22.489003|2025-12-05 20:58:22.631628| +|step__measurementendpoints_get_list_all_the_measurement_endpoints_under_a_footprint_profile_|successed||||2025-12-05 20:58:22.631628|2025-12-05 20:58:22.782326| +|step__measurementendpointconditions_put_create_or_update_a_measurement_endpoint_condition_|successed||||2025-12-05 20:58:22.782326|2025-12-05 20:58:22.949807| +|step__measurementendpointconditions_get_get_the_details_of_a_measurement_endpoint_condition_|successed||||2025-12-05 20:58:22.950690|2025-12-05 20:58:23.091858| +|step__measurementendpointconditions_get_list_all_conditions_under_a_measurement_endpoint_|successed||||2025-12-05 20:58:23.091858|2025-12-05 20:58:23.234372| +|step__measurementendpointconditions_delete_delete_a_measurement_endpoint_condition_|successed||||2025-12-05 20:58:23.234372|2025-12-05 20:58:23.382437| +|step__experiments_delete_delete_an_experiment_|successed||||2025-12-05 20:58:23.383442|2025-12-05 20:58:23.530699| +|step__measurementendpoints_delete_delete_a_measurement_endpoint_|successed||||2025-12-05 20:58:23.531599|2025-12-05 20:58:23.680833| +|step__profiles_delete_delete_a_footprint_profile_|successed||||2025-12-05 20:58:23.680833|2025-12-05 20:58:23.820734| Coverage: 18/18 diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/_configuration.py b/src/footprint/azext_footprint/vendored_sdks/footprint/_configuration.py index 8b683be6f0b..8594b7ad230 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/_configuration.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/_configuration.py @@ -47,7 +47,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2020-02-01-preview" + self.api_version = "2024-09-16-preview" self.credential_scopes = ['https://management.azure.com/.default'] self.credential_scopes.extend(kwargs.pop('credential_scopes', [])) kwargs.setdefault('sdk_moniker', 'footprintmonitoringmanagementclient/{}'.format(VERSION)) diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/_footprint_monitoring_management_client.py b/src/footprint/azext_footprint/vendored_sdks/footprint/_footprint_monitoring_management_client.py index e2e1195215b..7e3332fcbf4 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/_footprint_monitoring_management_client.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/_footprint_monitoring_management_client.py @@ -27,7 +27,7 @@ class FootprintMonitoringManagementClient(object): - """Microsoft Footprint active monitoring system REST API version 2020-02-01-preview. + """Microsoft Footprint active monitoring system REST API version 2024-09-16-preview. :ivar operation: OperationOperations operations :vartype operation: footprint_monitoring_management_client.operations.OperationOperations diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/_configuration_async.py b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/_configuration_async.py index ba84e637b66..2d044db26f8 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/_configuration_async.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/_configuration_async.py @@ -44,7 +44,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2020-02-01-preview" + self.api_version = "2024-09-16-preview" self.credential_scopes = ['https://management.azure.com/.default'] self.credential_scopes.extend(kwargs.pop('credential_scopes', [])) kwargs.setdefault('sdk_moniker', 'footprintmonitoringmanagementclient/{}'.format(VERSION)) diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/_footprint_monitoring_management_client_async.py b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/_footprint_monitoring_management_client_async.py index 27e3ee84366..44e4dc0ec59 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/_footprint_monitoring_management_client_async.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/_footprint_monitoring_management_client_async.py @@ -25,7 +25,7 @@ class FootprintMonitoringManagementClient(object): - """Microsoft Footprint active monitoring system REST API version 2020-02-01-preview. + """Microsoft Footprint active monitoring system REST API version 2024-09-16-preview. :ivar operation: OperationOperations operations :vartype operation: footprint_monitoring_management_client.aio.operations_async.OperationOperations diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_experiment_operations_async.py b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_experiment_operations_async.py index ef5b94d03a0..d00e39b06ad 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_experiment_operations_async.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_experiment_operations_async.py @@ -63,7 +63,7 @@ def list_by_profile( cls = kwargs.pop('cls', None) # type: ClsType["models.ExperimentList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers @@ -140,7 +140,7 @@ async def get( cls = kwargs.pop('cls', None) # type: ClsType["models.Experiment"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -207,7 +207,7 @@ async def create_or_update( error_map.update(kwargs.pop('error_map', {})) _parameters = models.Experiment(description=description) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -279,7 +279,7 @@ async def delete( cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.delete.metadata['url'] # type: ignore diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_measurement_endpoint_condition_operations_async.py b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_measurement_endpoint_condition_operations_async.py index 09edc639dea..84d07e8bd33 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_measurement_endpoint_condition_operations_async.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_measurement_endpoint_condition_operations_async.py @@ -67,7 +67,7 @@ def list_by_measurement_endpoint( cls = kwargs.pop('cls', None) # type: ClsType["models.MeasurementEndpointConditionList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers @@ -149,7 +149,7 @@ async def get( cls = kwargs.pop('cls', None) # type: ClsType["models.MeasurementEndpointCondition"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -230,7 +230,7 @@ async def create_or_update( error_map.update(kwargs.pop('error_map', {})) _parameters = models.MeasurementEndpointCondition(type_properties_type=type, variable=variable, operator=operator, constant=constant) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -306,7 +306,7 @@ async def delete( cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.delete.metadata['url'] # type: ignore diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_measurement_endpoint_operations_async.py b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_measurement_endpoint_operations_async.py index 676d640f806..3670d8d5503 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_measurement_endpoint_operations_async.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_measurement_endpoint_operations_async.py @@ -64,7 +64,7 @@ def list_by_profile( cls = kwargs.pop('cls', None) # type: ClsType["models.MeasurementEndpointList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers @@ -141,7 +141,7 @@ async def get( cls = kwargs.pop('cls', None) # type: ClsType["models.MeasurementEndpoint"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -245,7 +245,7 @@ async def create_or_update( error_map.update(kwargs.pop('error_map', {})) _parameters = models.MeasurementEndpoint(description=description, endpoint=endpoint, measurement_type=measurement_type, weight=weight, experiment_id=experiment_id, object_path=object_path, start_time_utc=start_time_utc, end_time_utc=end_time_utc, hot_path_sampling_percentage_rate=hot_path_sampling_percentage_rate, warm_path_sampling_percentage_rate=warm_path_sampling_percentage_rate, cold_path_sampling_percentage_rate_override=cold_path_sampling_percentage_rate_override, metadata=metadata) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -317,7 +317,7 @@ async def delete( cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.delete.metadata['url'] # type: ignore diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_operation_operations_async.py b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_operation_operations_async.py index 7af97ca3cd5..0495552bdfe 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_operation_operations_async.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_operation_operations_async.py @@ -57,7 +57,7 @@ def list( cls = kwargs.pop('cls', None) # type: ClsType["models.ResourceProviderOperationList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_profile_operations_async.py b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_profile_operations_async.py index 4fa036cbaa4..838c1e3a3dc 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_profile_operations_async.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/aio/operations_async/_profile_operations_async.py @@ -57,7 +57,7 @@ def list_by_subscription( cls = kwargs.pop('cls', None) # type: ClsType["models.ProfileList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers @@ -126,7 +126,7 @@ def list_by_resource_group( cls = kwargs.pop('cls', None) # type: ClsType["models.ProfileList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers @@ -199,7 +199,7 @@ async def get( cls = kwargs.pop('cls', None) # type: ClsType["models.Profile"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -282,7 +282,7 @@ async def create_or_update( error_map.update(kwargs.pop('error_map', {})) _parameters = models.Profile(tags=tags, location=location, description=description, start_delay_milliseconds=start_delay_milliseconds, measurement_count=measurement_count, cold_path_sampling_percentage_rate=cold_path_sampling_percentage_rate, reporting_endpoints=reporting_endpoints) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -350,7 +350,7 @@ async def delete( cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.delete.metadata['url'] # type: ignore @@ -409,7 +409,7 @@ async def update( error_map.update(kwargs.pop('error_map', {})) _parameters = models.ProfilePatch(tags=tags) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/models/_models.py b/src/footprint/azext_footprint/vendored_sdks/footprint/models/_models.py index a14b4cb9cb9..04adbc57336 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/models/_models.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/models/_models.py @@ -213,7 +213,7 @@ class MeasurementEndpoint(SubResource): 'name': {'readonly': True}, 'type': {'readonly': True}, 'endpoint_id': {'readonly': True, 'max_length': 32, 'min_length': 32, 'pattern': r'[a-f0-9]{32}'}, - 'endpoint': {'required': True, 'max_length': 1024, 'min_length': 0, 'pattern': r'^[a-z0-9\*]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?$'}, + 'endpoint': {'required': True, 'max_length': 1024, 'min_length': 0, 'pattern': r'^[a-z0-9\*]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,}(:[0-9]{1,5})?$'}, 'measurement_type': {'required': True}, 'weight': {'required': True, 'maximum': 2147483647, 'minimum': 0}, 'experiment_id': {'max_length': 32, 'min_length': 32, 'pattern': r'[a-f0-9]{32}'}, diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_experiment_operations.py b/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_experiment_operations.py index ba2b9cbb6d8..cb28f54769a 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_experiment_operations.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_experiment_operations.py @@ -68,7 +68,7 @@ def list_by_profile( cls = kwargs.pop('cls', None) # type: ClsType["models.ExperimentList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers @@ -146,7 +146,7 @@ def get( cls = kwargs.pop('cls', None) # type: ClsType["models.Experiment"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -214,7 +214,7 @@ def create_or_update( error_map.update(kwargs.pop('error_map', {})) _parameters = models.Experiment(description=description) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -287,7 +287,7 @@ def delete( cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.delete.metadata['url'] # type: ignore diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_measurement_endpoint_condition_operations.py b/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_measurement_endpoint_condition_operations.py index 06cd219176a..d2c4fea92d1 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_measurement_endpoint_condition_operations.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_measurement_endpoint_condition_operations.py @@ -72,7 +72,7 @@ def list_by_measurement_endpoint( cls = kwargs.pop('cls', None) # type: ClsType["models.MeasurementEndpointConditionList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers @@ -155,7 +155,7 @@ def get( cls = kwargs.pop('cls', None) # type: ClsType["models.MeasurementEndpointCondition"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -237,7 +237,7 @@ def create_or_update( error_map.update(kwargs.pop('error_map', {})) _parameters = models.MeasurementEndpointCondition(type_properties_type=type, variable=variable, operator=operator, constant=constant) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -314,7 +314,7 @@ def delete( cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.delete.metadata['url'] # type: ignore diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_measurement_endpoint_operations.py b/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_measurement_endpoint_operations.py index 074f9d936f7..e009a3cb091 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_measurement_endpoint_operations.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_measurement_endpoint_operations.py @@ -69,7 +69,7 @@ def list_by_profile( cls = kwargs.pop('cls', None) # type: ClsType["models.MeasurementEndpointList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers @@ -147,7 +147,7 @@ def get( cls = kwargs.pop('cls', None) # type: ClsType["models.MeasurementEndpoint"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -252,7 +252,7 @@ def create_or_update( error_map.update(kwargs.pop('error_map', {})) _parameters = models.MeasurementEndpoint(description=description, endpoint=endpoint, measurement_type=measurement_type, weight=weight, experiment_id=experiment_id, object_path=object_path, start_time_utc=start_time_utc, end_time_utc=end_time_utc, hot_path_sampling_percentage_rate=hot_path_sampling_percentage_rate, warm_path_sampling_percentage_rate=warm_path_sampling_percentage_rate, cold_path_sampling_percentage_rate_override=cold_path_sampling_percentage_rate_override, metadata=metadata) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -325,7 +325,7 @@ def delete( cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.delete.metadata['url'] # type: ignore diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_operation_operations.py b/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_operation_operations.py index f93189b1091..d14c23e92ee 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_operation_operations.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_operation_operations.py @@ -62,7 +62,7 @@ def list( cls = kwargs.pop('cls', None) # type: ClsType["models.ResourceProviderOperationList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers diff --git a/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_profile_operations.py b/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_profile_operations.py index 896c12ee2b4..0e49674cf86 100644 --- a/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_profile_operations.py +++ b/src/footprint/azext_footprint/vendored_sdks/footprint/operations/_profile_operations.py @@ -62,7 +62,7 @@ def list_by_subscription( cls = kwargs.pop('cls', None) # type: ClsType["models.ProfileList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers @@ -132,7 +132,7 @@ def list_by_resource_group( cls = kwargs.pop('cls', None) # type: ClsType["models.ProfileList"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" def prepare_request(next_link=None): # Construct headers @@ -206,7 +206,7 @@ def get( cls = kwargs.pop('cls', None) # type: ClsType["models.Profile"] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -290,7 +290,7 @@ def create_or_update( error_map.update(kwargs.pop('error_map', {})) _parameters = models.Profile(tags=tags, location=location, description=description, start_delay_milliseconds=start_delay_milliseconds, measurement_count=measurement_count, cold_path_sampling_percentage_rate=cold_path_sampling_percentage_rate, reporting_endpoints=reporting_endpoints) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -359,7 +359,7 @@ def delete( cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} error_map.update(kwargs.pop('error_map', {})) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" # Construct URL url = self.delete.metadata['url'] # type: ignore @@ -419,7 +419,7 @@ def update( error_map.update(kwargs.pop('error_map', {})) _parameters = models.ProfilePatch(tags=tags) - api_version = "2020-02-01-preview" + api_version = "2024-09-16-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL diff --git a/src/footprint/setup.py b/src/footprint/setup.py index c3a7db72d57..129616c392c 100644 --- a/src/footprint/setup.py +++ b/src/footprint/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages # HISTORY.rst entry. -VERSION = '1.0.0' +VERSION = '1.0.1b1' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/index.json b/src/index.json index 2e9cdd0a4dc..8bb1ac65353 100644 --- a/src/index.json +++ b/src/index.json @@ -2068,6 +2068,114 @@ "version": "1.0.0b11" }, "sha256Digest": "6a0d31b21801fb46d0b4f742df365e4b90746e867da6bcebb51953b586b3073d" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_agent-1.0.0b12-py2.py3-none-any.whl", + "filename": "aks_agent-1.0.0b12-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.76.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-agent" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "aks-agent", + "run_requires": [ + { + "requires": [ + "kubernetes", + "kubernetes", + "rich (==13.9.4)", + "rich==13.9.4" + ] + } + ], + "summary": "Provides an interactive AI-powered debugging tool for AKS", + "version": "1.0.0b12" + }, + "sha256Digest": "566bd3e02b3444c17d6295ea341e970eba6532f38fc973a24935628ebb3472e4" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_agent-1.0.0b13-py2.py3-none-any.whl", + "filename": "aks_agent-1.0.0b13-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.76.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-agent" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "aks-agent", + "run_requires": [ + { + "requires": [ + "kubernetes", + "kubernetes", + "rich (==13.9.4)", + "rich==13.9.4" + ] + } + ], + "summary": "Provides an interactive AI-powered debugging tool for AKS", + "version": "1.0.0b13" + }, + "sha256Digest": "fc1769b312e3ecd19d91edcb70bee45ec99cb29340cc1bd1e5b6df5c528733e4" } ], "aks-preview": [ @@ -16888,6 +16996,49 @@ "version": "19.0.0b16" }, "sha256Digest": "2adb9e9000b536efdf8cb14f98814a61e402253105c2c34eaf995aafa60a5e5f" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-19.0.0b17-py2.py3-none-any.whl", + "filename": "aks_preview-19.0.0b17-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.73.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "aks-preview", + "summary": "Provides a preview for upcoming AKS features", + "version": "19.0.0b17" + }, + "sha256Digest": "658fa136a3846181c457d995fae9f5cdb30bd7214862eaeeeeb783a4a5c3c77e" } ], "aksarc": [ @@ -34755,6 +34906,72 @@ "version": "2.0.1" }, "sha256Digest": "a4da0bada13d36695c75e2cb77bee926e83c1414055cb67de84730977285c689" + }, + { + "downloadUrl": "https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v2.1.0/azure_iot_ops-2.1.0-py3-none-any.whl", + "filename": "azure_iot_ops-2.1.0-py3-none-any.whl", + "metadata": { + "azext.isPreview": false, + "azext.minCliCoreVersion": "2.67.0", + "classifiers": [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13" + ], + "description_content_type": "text/plain", + "extensions": { + "python.details": { + "contacts": [ + { + "email": "Microsoft ", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "license_file": "LICENSE", + "metadata_version": "2.0", + "name": "azure-iot-ops", + "project_url": "homepage, https://github.com/azure/azure-iot-ops-cli-extension", + "requires_python": ">=3.9", + "run_requires": [ + { + "requires": [ + "azure-identity (<1.18.0,>=1.14.1)", + "azure-identity<1.18.0,>=1.14.1", + "kubernetes (<32.0,>=29.0)", + "kubernetes<32.0,>=29.0", + "opentelemetry-proto (~=1.20.0)", + "opentelemetry-proto~=1.20.0", + "packaging (>=23.2)", + "packaging>=23.2", + "protobuf (~=4.25.0)", + "protobuf~=4.25.0", + "rich (<14.0,>=13.6)", + "rich<14.0,>=13.6", + "semver (<4,>=3.0.4)", + "semver<4,>=3.0.4" + ] + } + ], + "summary": "The Azure IoT Operations extension for Azure CLI.", + "version": "2.1.0" + }, + "sha256Digest": "c120846ca0efd514acd441f7ee121b2f561020f0e868e5356c472c40d13dc089" } ], "azure-sphere": [ @@ -41071,6 +41288,67 @@ "version": "1.4.4" }, "sha256Digest": "0ffe0b02a57ab1938bfb727b4d67fb1709fbad4de2c235c6dd2819ded964267f" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/confcom-1.4.5-py3-none-any.whl", + "filename": "confcom-1.4.5-py3-none-any.whl", + "metadata": { + "azext.minCliCoreVersion": "2.26.2", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "acccli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "confcom", + "run_requires": [ + { + "requires": [ + "PyYAML (>=6.0.1)", + "PyYAML>=6.0.1", + "deepdiff (~=8.6.1)", + "deepdiff~=8.6.1", + "docker (>=6.1.0)", + "docker>=6.1.0", + "pydantic (>=2.12.4)", + "pydantic>=2.12.4", + "tqdm (==4.65.0)", + "tqdm==4.65.0" + ] + } + ], + "summary": "Microsoft Azure Command-Line Tools Confidential Container Security Policy Generator Extension", + "version": "1.4.5" + }, + "sha256Digest": "9bcc560fc4f793614c912d748253912565561817bf6c3a1d548c9f7f23d89651" } ], "confidentialledger": [ @@ -58578,6 +58856,48 @@ "version": "1.7.1" }, "sha256Digest": "cf0c94a8a6cca48c6b462379e062a281ca24feca5f0657b694fa23a96a5256cd" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.8.0-py3-none-any.whl", + "filename": "dataprotection-1.8.0-py3-none-any.whl", + "metadata": { + "azext.minCliCoreVersion": "2.75.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "dataprotection", + "summary": "Microsoft Azure Command-Line Tools DataProtectionClient Extension", + "version": "1.8.0" + }, + "sha256Digest": "feba1dd3b6d5bc3145e9f8d8b8f7f6274654f26b6c5832cba7d9bb9fa749f7df" } ], "datashare": [ @@ -64195,6 +64515,49 @@ "version": "1.0.0" }, "sha256Digest": "4aa59288bf46cfd68519f1f7f63d3e33af16d80632b84c283cc7152129260b2c" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/footprint-1.0.1b1-py3-none-any.whl", + "filename": "footprint-1.0.1b1-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.11.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/footprint" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "footprint", + "summary": "Microsoft Azure Command-Line Tools FootprintMonitoringManagementClient Extension", + "version": "1.0.1b1" + }, + "sha256Digest": "4635aef4b176ee38bc336b800e2523949b277fedf40e4093f9dd4053710e7f4b" } ], "front-door": [ @@ -83220,222 +83583,6 @@ "sha256Digest": "07f21fcc78138c27000c6aa571cbf5c8d7e328081107c7aa0f419e82fb3d31ff" } ], - "mobile-network": [ - { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.1.0-py3-none-any.whl", - "filename": "mobile_network-0.1.0-py3-none-any.whl", - "metadata": { - "azext.isPreview": true, - "azext.minCliCoreVersion": "2.43.0", - "classifiers": [ - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "Intended Audience :: System Administrators", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "License :: OSI Approved :: MIT License" - ], - "extensions": { - "python.details": { - "contacts": [ - { - "email": "azpycli@microsoft.com", - "name": "Microsoft Corporation", - "role": "author" - } - ], - "document_names": { - "description": "DESCRIPTION.rst" - }, - "project_urls": { - "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network" - } - } - }, - "generator": "bdist_wheel (0.30.0)", - "license": "MIT", - "metadata_version": "2.0", - "name": "mobile-network", - "summary": "Microsoft Azure Command-Line Tools MobileNetwork Extension.", - "version": "0.1.0" - }, - "sha256Digest": "aa356521cae8df8578ef5e0b58274862bc602739bec3ca4385f45a5cc0e77c5a" - }, - { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.1.1-py3-none-any.whl", - "filename": "mobile_network-0.1.1-py3-none-any.whl", - "metadata": { - "azext.isPreview": true, - "azext.minCliCoreVersion": "2.43.0", - "classifiers": [ - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "Intended Audience :: System Administrators", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "License :: OSI Approved :: MIT License" - ], - "extensions": { - "python.details": { - "contacts": [ - { - "email": "azpycli@microsoft.com", - "name": "Microsoft Corporation", - "role": "author" - } - ], - "document_names": { - "description": "DESCRIPTION.rst" - }, - "project_urls": { - "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network" - } - } - }, - "generator": "bdist_wheel (0.30.0)", - "license": "MIT", - "metadata_version": "2.0", - "name": "mobile-network", - "summary": "Microsoft Azure Command-Line Tools MobileNetwork Extension.", - "version": "0.1.1" - }, - "sha256Digest": "2efa62e8df2cab2ba2f3e14f9d5193c88d26f43bf335f77054e332d232b967b0" - }, - { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.2.0-py3-none-any.whl", - "filename": "mobile_network-0.2.0-py3-none-any.whl", - "metadata": { - "azext.isPreview": true, - "azext.minCliCoreVersion": "2.49.0", - "classifiers": [ - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "Intended Audience :: System Administrators", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "License :: OSI Approved :: MIT License" - ], - "extensions": { - "python.details": { - "contacts": [ - { - "email": "azpycli@microsoft.com", - "name": "Microsoft Corporation", - "role": "author" - } - ], - "document_names": { - "description": "DESCRIPTION.rst" - }, - "project_urls": { - "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network" - } - } - }, - "generator": "bdist_wheel (0.30.0)", - "license": "MIT", - "metadata_version": "2.0", - "name": "mobile-network", - "summary": "Microsoft Azure Command-Line Tools MobileNetwork Extension.", - "version": "0.2.0" - }, - "sha256Digest": "1ecaaa16aa6f5d1b23b4a041129767e5ebf5e46ed373c162af2914245c6f348b" - }, - { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.2.1-py3-none-any.whl", - "filename": "mobile_network-0.2.1-py3-none-any.whl", - "metadata": { - "azext.isPreview": true, - "azext.minCliCoreVersion": "2.49.0", - "classifiers": [ - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "Intended Audience :: System Administrators", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "License :: OSI Approved :: MIT License" - ], - "extensions": { - "python.details": { - "contacts": [ - { - "email": "azpycli@microsoft.com", - "name": "Microsoft Corporation", - "role": "author" - } - ], - "document_names": { - "description": "DESCRIPTION.rst" - }, - "project_urls": { - "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network" - } - } - }, - "generator": "bdist_wheel (0.30.0)", - "license": "MIT", - "metadata_version": "2.0", - "name": "mobile-network", - "summary": "Microsoft Azure Command-Line Tools MobileNetwork Extension.", - "version": "0.2.1" - }, - "sha256Digest": "66bd39f687c2ac030ab6bd44b8746ec8d64c4804b44592c0bb1ffda837dce22b" - }, - { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-1.0.0-py3-none-any.whl", - "filename": "mobile_network-1.0.0-py3-none-any.whl", - "metadata": { - "azext.minCliCoreVersion": "2.55.0", - "classifiers": [ - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "Intended Audience :: System Administrators", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "License :: OSI Approved :: MIT License" - ], - "extensions": { - "python.details": { - "contacts": [ - { - "email": "azpycli@microsoft.com", - "name": "Microsoft Corporation", - "role": "author" - } - ], - "document_names": { - "description": "DESCRIPTION.rst" - }, - "project_urls": { - "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network" - } - } - }, - "generator": "bdist_wheel (0.30.0)", - "license": "MIT", - "metadata_version": "2.0", - "name": "mobile-network", - "summary": "Microsoft Azure Command-Line Tools MobileNetwork Extension.", - "version": "1.0.0" - }, - "sha256Digest": "2d9572a4ed706df8f626c62036ad22f46a15b113273f8ff9b06313a380a27f56" - } - ], "mongo-db": [ { "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/mongo_db-1.0.0b1-py3-none-any.whl", @@ -86734,6 +86881,49 @@ "version": "2.0.0b8" }, "sha256Digest": "77f10b5e91a3affa11eeb9c842a75d71603cf17da7e418b3840b9661235bd493" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/nginx-2.0.0b9-py2.py3-none-any.whl", + "filename": "nginx-2.0.0b9-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.75.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "nginx", + "summary": "Microsoft Azure Command-Line Tools Nginx Extension", + "version": "2.0.0b9" + }, + "sha256Digest": "cc90d187770de10773e30dd0380ba1b3edbe0be92efe52a33f9e009b7c095d39" } ], "notification-hub": [ @@ -87372,6 +87562,48 @@ "version": "1.0.0" }, "sha256Digest": "0ad716e117359e81427f8c91482f2592031877964c6952e768b66148db54dbce" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/oracle_database-2.0.0-py3-none-any.whl", + "filename": "oracle_database-2.0.0-py3-none-any.whl", + "metadata": { + "azext.minCliCoreVersion": "2.75.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/main/src/oracle-database" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "oracle-database", + "summary": "Microsoft Azure Command-Line Tools OracleDatabase Extension.", + "version": "2.0.0" + }, + "sha256Digest": "bec2fe403a459a7657f8f9768fcad20bb44cddba45b9a4056736afe7a17c39d5" } ], "orbital": [ diff --git a/src/mobile-network/HISTORY.rst b/src/mobile-network/HISTORY.rst deleted file mode 100644 index bb4827864c9..00000000000 --- a/src/mobile-network/HISTORY.rst +++ /dev/null @@ -1,24 +0,0 @@ -.. :changelog: - -Release History -=============== - -1.0.0 -+++++ -* Upgrade API version to `2023-09-01` - -0.2.1 -+++++ -* Better examples for bulk-upload-sims - -0.2.0 -+++++ -* Added support for bulk-upload-sims and bulk-delete-sims - -0.1.1 -++++++ -* az mobile-network site: Fix example error - -0.1.0 -++++++ -* Initial release. diff --git a/src/mobile-network/README.md b/src/mobile-network/README.md deleted file mode 100644 index 824b050033d..00000000000 --- a/src/mobile-network/README.md +++ /dev/null @@ -1,296 +0,0 @@ -# Azure CLI Mobile Network # -This is an extension to Azure CLI to manage mobile network resources. - -## How to use ## -Install this extension using the below CLI command -``` -az extension add --name mobile-network -``` - -### Included Features ### -#### mobile-network #### -##### Create ##### -``` -az mobile-network create -n mobile-network-name -g rg --identifier "{mcc:001,mnc:01}" - -``` -##### Show ##### -``` -az mobile-network show -n mobile-network-name -g rg -``` -##### List ##### -``` -az mobile-network list -g rg -``` -##### Update ##### -``` -az mobile-network update -n mobile-network-name -g rg --tags "{tag:test,tag2:test2}" -``` - -##### Delete ##### -``` -az mobile-network delete -n mobile-network-name -g rg -y - -``` - -#### attached-data-network #### -##### Create ##### -``` -az mobile-network attached-data-network create -n data-network-name -g rg --pccp-name pccp-name --pcdp-name pcdp-name --dns-addresses "[1.1.1.1]" --data-interface " {name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}" - -``` -##### Show ##### -``` -az mobile-network attached-data-network show -n data-network-name --pccp-name pccp-name --pcdp-name pcdp-name -g rg -``` -##### List ##### -``` -az mobile-network attached-data-network list -g rg --pccp-name pccp-name --pcdp-name pcdp-name -``` -##### Update ##### -``` -az mobile-network attached-data-network update -n data_network-name -g rg --pccp-name pccp-name --pcdp-name pcdp-name --tags "{tag:test,tag2:test2}" -``` - -##### Delete ##### -``` -az mobile-network attached-data-network delete -n data-network-name --pccp-name pccp-name --pcdp-name pcdp-name -g rg -y - -``` - -#### data-network #### -##### Create ##### -``` -az mobile-network data-network create -n data-network-name -g rg --mobile-network-name mobile-network-name - -``` -##### Show ##### -``` -az mobile-network data-network show -n data-network-name --mobile-network-name mobile-network-name -g rg -``` -##### List ##### -``` -az mobile-network data-network list --mobile-network-name mobile-network-name -g rg -``` -##### Update ##### -``` -az mobile-network data-network update -n data-network-name -g rg --mobile-network-name mobile-network-name --tags "{tag:test,tag2:test2}" -``` - -##### Delete ##### -``` -az mobile-network data-network delete -n data_network-name --mobile-network-name mobile-network-name -g rg -y - -``` - - -#### Packet Core Control Plane #### -##### Create ##### -``` -az mobile-network pccp create -n pccp-name -g rg --access-interface "{name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}" --local-diagnostics "{authentication-type:AAD}" --platform "{type:AKS-HCI}" --sites "[{id:site-id}]" --sku G0 - -``` -##### Show ##### -``` -az mobile-network pccp show -n pccp-name -g rg -``` -##### List ##### -``` -az mobile-network pccp list -g rg -``` -##### Update ##### -``` -az mobile-network pccp update -n pccp-name -g rg --ue-mtu 1500 --tags "{tag:test,tag2:test2}" -``` - -##### collect-diagnostics-package ##### -``` -az mobile-network pccp collect-diagnostics-package --pccp-name pccp -g rg --blob-url https://contosoaccount.blob.core.windows.net/container/diagnosticsPackage.zip -``` - -##### reinstall ##### -``` -az mobile-network pccp reinstall --pccp-name pccp-name -g rg -``` - -##### rollback ##### -``` -az mobile-network pccp rollback --pccp-name pccp-name -g rg -``` - -##### Delete ##### -``` -az mobile-network pccp delete -n pccp-name -g rg -y - -``` - -#### Packet Core Data Plane #### -##### Create ##### -``` -az mobile-network pcdp create -n pcdp-name -g rg --pccp-name pccp-name --access-interface "{name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}" - -``` -##### Show ##### -``` -az mobile-network pcdp show -g rg -n pcdp-name --pccp-name pccp-name -``` -##### List ##### -``` -az mobile-network pcdp list -g rg --pccp-name pccp_name -``` -##### Update ##### -``` -az mobile-network pcdp update -n pcdp_name -g rg --pccp-name pccp-name --tags "{tag:test,tag2:test2}" -``` - -##### Delete ##### -``` -az mobile-network pcdp delete -g rg -n pcdp-name --pccp-name pccp-name -y - -``` - -#### service #### -##### Create ##### -``` -az mobile-network service create -n service-name -g rg --mobile-network-name mobile-network-name --pcc-rules "[{ruleName:default-rule,rulePrecedence:10,serviceDataFlowTemplates:[{templateName:IP-to-server,direction:Uplink,protocol:[ip],remoteIpList:[10.3.4.0/24]}]}]" --service-precedence 10 - -``` -##### Show ##### -``` -az mobile-network service show --mobile-network-name mobile-network-name -n service -g rg -``` -##### List ##### -``` -az mobile-network service list --mobile-network-name mobile-network-name -g rg -``` -##### Update ##### -``` -az mobile-network service update --mobile-network-name mobile-network-name -g rg -n service-name --tags "{tag:test,tag2:test2}" -``` - -##### Delete ##### -``` -az mobile-network service delete --mobile-network-name mobile-network-name -n service -g rg -y - -``` - -#### sim #### -##### Create ##### -``` -az mobile-network sim create -g rg --sim-group-name sim-group-name -n sim-name --international-msi 0000000000 --operator-key-code 00000000000000000000000000000000 --authentication-key 00000000000000000000000000000000 - -``` -##### Show ##### -``` -az mobile-network sim show -g rg -n sim-name --sim-group-name sim-group-name -``` -##### List ##### -``` -az mobile-network sim list -g rg --sim-group-name sim-group-name -``` - -##### Delete ##### -``` -az mobile-network sim delete -g rg -n sim-name --sim-group-name sim-group-name -y - -``` - -#### sim group #### -##### Create ##### -``` -az mobile-network sim group create -n sim-group-name -g rg --mobile-network "{id:mobile-network-id}" - -``` -##### Show ##### -``` -az mobile-network sim group show -n sim-group-name -g rg -``` -##### List ##### -``` -az mobile-network sim group list -g rg -``` -##### Update ##### -``` -az mobile-network sim group update -n sim-group-name -g rg --tags "{tag:test,tag2:test2}" -``` - -##### Delete ##### -``` -az mobile-network sim group delete -n sim-group-name -g rg -y - -``` - -#### sim policy #### -##### Create ##### -``` -az mobile-network sim policy create -g rg -n sim-policy-name --mobile-network-name mobile-network-name --default-slice '{id:slice-id}' --slice-config "[{slice:{id:slice-id},defaultDataNetwork:{id:data-network-id},dataNetworkConfigurations:[{dataNetwork:{id:data-network-id},allowedServices:[{id:service-id}],sessionAmbr:{uplink:'500 Mbps',downlink:'1 Gbps'}}]}]" --ue-ambr "{uplink:'500 Mbps',downlink:'1 Gbps'}" - -``` -##### Show ##### -``` -az mobile-network sim policy show -g rg -n sim-policy-name --mobile-network-name mobile-network-name -``` -##### List ##### -``` -az mobile-network sim policy list -g rg --mobile-network-name mobile-network-name -``` -##### Update ##### -``` -az mobile-network sim policy update -g rg-n sim-policy-name --mobile-network-name mobile-network-name --tags "{tag:test,tag2:test2}" -``` - -##### Delete ##### -``` -az mobile-network sim policy delete -g rg -n sim-policy-name --mobile-network-name mobile-network-name - -``` - -#### site #### -##### Create ##### -``` -az mobile-network create -n mobile-network-name -g rg --identifier "{mcc:001,mnc:01}" - -``` -##### Show ##### -``` -az mobile-network site show--mobile-network-name mobile-network-name -n site-name -g rg -``` -##### List ##### -``` -az mobile-network site list --mobile-network-name mobile-network-name -g rg -``` -##### Update ##### -``` -az mobile-network site update --mobile-network-name mobile-network-name -n site-name -g rg --tags "{tag:test,tag2:test2}" -``` - -##### Delete ##### -``` -az mobile-network site delete --mobile-network-name mobile-network-name -n site-name -g rg -y' - -``` - -#### slice #### -##### Create ##### -``` -az mobile-network slice create --mobile-network-name mobile-network-name -n slice-name -g rg --snssai "{sst:1,sd:123abc}" - -``` -##### Show ##### -``` -az mobile-network slice show --mobile-network-name mobile=network-name -n slice-name -g rg -``` -##### List ##### -``` -az mobile-network slice list --mobile-network-name mobile-network-name -g rg -``` -##### Update ##### -``` -az mobile-network slice update --mobile-network-name mobile-network-name -n slice-name -g rg --tags "{tag:test,tag2:test2}" -``` - -##### Delete ##### -``` -az mobile-network slice delete --mobile-network-name mobilenetwork-name -n slice-name -g rg -y - -``` diff --git a/src/mobile-network/azext_mobile_network/__init__.py b/src/mobile-network/azext_mobile_network/__init__.py deleted file mode 100644 index 4653c8a7f8f..00000000000 --- a/src/mobile-network/azext_mobile_network/__init__.py +++ /dev/null @@ -1,42 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -from azure.cli.core import AzCommandsLoader -from azext_mobile_network._help import helps # pylint: disable=unused-import - - -class MobileNetworkCommandsLoader(AzCommandsLoader): - - def __init__(self, cli_ctx=None): - from azure.cli.core.commands import CliCommandType - custom_command_type = CliCommandType( - operations_tmpl='azext_mobile_network.custom#{}') - super().__init__(cli_ctx=cli_ctx, - custom_command_type=custom_command_type) - - def load_command_table(self, args): - from azext_mobile_network.commands import load_command_table - from azure.cli.core.aaz import load_aaz_command_table - try: - from . import aaz - except ImportError: - aaz = None - if aaz: - load_aaz_command_table( - loader=self, - aaz_pkg_name=aaz.__name__, - args=args - ) - load_command_table(self, args) - return self.command_table - - def load_arguments(self, command): - from azext_mobile_network._params import load_arguments - load_arguments(self, command) - - -COMMAND_LOADER_CLS = MobileNetworkCommandsLoader diff --git a/src/mobile-network/azext_mobile_network/_help.py b/src/mobile-network/azext_mobile_network/_help.py deleted file mode 100644 index 126d5d00714..00000000000 --- a/src/mobile-network/azext_mobile_network/_help.py +++ /dev/null @@ -1,11 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: disable=line-too-long -# pylint: disable=too-many-lines - -from knack.help_files import helps # pylint: disable=unused-import diff --git a/src/mobile-network/azext_mobile_network/_params.py b/src/mobile-network/azext_mobile_network/_params.py deleted file mode 100644 index cfcec717c9c..00000000000 --- a/src/mobile-network/azext_mobile_network/_params.py +++ /dev/null @@ -1,13 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: disable=too-many-lines -# pylint: disable=too-many-statements - - -def load_arguments(self, _): # pylint: disable=unused-argument - pass diff --git a/src/mobile-network/azext_mobile_network/aaz/__init__.py b/src/mobile-network/azext_mobile_network/aaz/__init__.py deleted file mode 100644 index 5757aea3175..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_create.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_create.py deleted file mode 100644 index 11bad9c2f16..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_create.py +++ /dev/null @@ -1,326 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network create", -) -class Create(AAZCommand): - """Create a mobile network. - - :example: Create mobile-network - az mobile-network create -n mobile-network-name -g rg --identifier "{mcc:001,mnc:01}" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["-n", "--name", "--mobile-network-name"], - help="The name of the mobile network.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.location = AAZResourceLocationArg( - arg_group="Parameters", - help="The geo-location where the resource lives", - required=True, - fmt=AAZResourceLocationArgFormat( - resource_group_arg="resource_group", - ), - ) - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg() - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.identifier = AAZObjectArg( - options=["--identifier"], - arg_group="Properties", - help="The unique public land mobile network identifier for the network. This is made up of the mobile country code and mobile network code, as defined in https://www.itu.int/rec/T-REC-E.212. The values 001-01 and 001-001 can be used for testing and the values 999-99 and 999-999 can be used on internal private networks.", - required=True, - ) - - identifier = cls._args_schema.identifier - identifier.mcc = AAZStrArg( - options=["mcc"], - help="Mobile country code (MCC).", - required=True, - fmt=AAZStrArgFormat( - pattern="^\d{3}$", - ), - ) - identifier.mnc = AAZStrArg( - options=["mnc"], - help="Mobile network code (MNC).", - required=True, - fmt=AAZStrArgFormat( - pattern="^\d{2,3}$", - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.MobileNetworksCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class MobileNetworksCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("publicLandMobileNetworkIdentifier", AAZObjectType, ".identifier", typ_kwargs={"flags": {"required": True}}) - - public_land_mobile_network_identifier = _builder.get(".properties.publicLandMobileNetworkIdentifier") - if public_land_mobile_network_identifier is not None: - public_land_mobile_network_identifier.set_prop("mcc", AAZStrType, ".mcc", typ_kwargs={"flags": {"required": True}}) - public_land_mobile_network_identifier.set_prop("mnc", AAZStrType, ".mnc", typ_kwargs={"flags": {"required": True}}) - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - - _schema_on_200_201 = cls._schema_on_200_201 - _schema_on_200_201.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200_201.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200_201.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200_201.tags = AAZDictType() - _schema_on_200_201.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200_201.properties - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.public_land_mobile_network_identifier = AAZObjectType( - serialized_name="publicLandMobileNetworkIdentifier", - flags={"required": True}, - ) - properties.service_key = AAZStrType( - serialized_name="serviceKey", - flags={"read_only": True}, - ) - - public_land_mobile_network_identifier = cls._schema_on_200_201.properties.public_land_mobile_network_identifier - public_land_mobile_network_identifier.mcc = AAZStrType( - flags={"required": True}, - ) - public_land_mobile_network_identifier.mnc = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200_201.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200_201.tags - tags.Element = AAZStrType() - - return cls._schema_on_200_201 - - -class _CreateHelper: - """Helper class for Create""" - - -__all__ = ["Create"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_update.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_update.py deleted file mode 100644 index 1b6ab9ce176..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_update.py +++ /dev/null @@ -1,263 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network update", -) -class Update(AAZCommand): - """Update mobile network tags. - - :example: Update mobile-network tags - az mobile-network update -n mobile-network-name -g rg --tags "{tag:test,tag2:test2}" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}", "2023-09-01"], - ] - } - - def _handler(self, command_args): - super()._handler(command_args) - self._execute_operations() - return self._output() - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["-n", "--name", "--mobile-network-name"], - help="The name of the mobile network.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg() - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.MobileNetworksUpdateTags(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class MobileNetworksUpdateTags(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}", - **self.url_parameters - ) - - @property - def method(self): - return "PATCH" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("tags", AAZDictType, ".tags") - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return self.serialize_content(_content_value) - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200.tags = AAZDictType() - _schema_on_200.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.public_land_mobile_network_identifier = AAZObjectType( - serialized_name="publicLandMobileNetworkIdentifier", - flags={"required": True}, - ) - properties.service_key = AAZStrType( - serialized_name="serviceKey", - flags={"read_only": True}, - ) - - public_land_mobile_network_identifier = cls._schema_on_200.properties.public_land_mobile_network_identifier - public_land_mobile_network_identifier.mcc = AAZStrType( - flags={"required": True}, - ) - public_land_mobile_network_identifier.mnc = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _UpdateHelper: - """Helper class for Update""" - - -__all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_create.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_create.py deleted file mode 100644 index 0475dde7a04..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_create.py +++ /dev/null @@ -1,601 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network attached-data-network create", -) -class Create(AAZCommand): - """Create an attached data network. - - :example: Create attached-data-network - az mobile-network attached-data-network create -n data-network-name -g rg --pccp-name pccp-name --pcdp-name pcdp-name --dns-addresses "[1.1.1.1]" --data-interface " {name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}" --address-pool "[2.2.0.0/16]" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}/attacheddatanetworks/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.adn_name = AAZStrArg( - options=["-n", "--name", "--adn-name"], - help="The name of the attached data network.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*(\.[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*)*$", - max_length=64, - ), - ) - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.pcdp_name = AAZStrArg( - options=["--pcdp-name"], - help="The name of the packet core data plane.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.location = AAZResourceLocationArg( - arg_group="Parameters", - help="The geo-location where the resource lives", - required=True, - fmt=AAZResourceLocationArgFormat( - resource_group_arg="resource_group", - ), - ) - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg() - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.dns_addresses = AAZListArg( - options=["--dns-addresses"], - arg_group="Properties", - help="The DNS servers to signal to UEs to use for this attached data network.", - required=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.napt_configuration = AAZObjectArg( - options=["--napt-configuration"], - arg_group="Properties", - help="The network address and port translation (NAPT) configuration. If this is not specified, the attached data network will use a default NAPT configuration with NAPT enabled.", - ) - _args_schema.address_pool = AAZListArg( - options=["--address-pool"], - arg_group="Properties", - help="The user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. You must define at least one of userEquipmentAddressPoolPrefix and userEquipmentStaticAddressPoolPrefix. If you define both, they must be of the same size.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.static_address_pool = AAZListArg( - options=["--static-address-pool"], - arg_group="Properties", - help="The user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of userEquipmentAddressPoolPrefix and userEquipmentStaticAddressPoolPrefix must be defined. If both are defined, they must be of the same size.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.data_interface = AAZObjectArg( - options=["--data-interface"], - arg_group="Properties", - help="The user plane interface on the data network. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface.", - required=True, - ) - - dns_addresses = cls._args_schema.dns_addresses - dns_addresses.Element = AAZStrArg( - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - - napt_configuration = cls._args_schema.napt_configuration - napt_configuration.enabled = AAZStrArg( - options=["enabled"], - help="Whether NAPT is enabled for connections to this attached data network.", - default="Enabled", - enum={"Disabled": "Disabled", "Enabled": "Enabled"}, - ) - napt_configuration.pinhole_limits = AAZIntArg( - options=["pinhole-limits"], - help="Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface.", - default=65536, - fmt=AAZIntArgFormat( - maximum=65536, - minimum=1, - ), - ) - napt_configuration.pinhole_timeouts = AAZObjectArg( - options=["pinhole-timeouts"], - help="Expiry times of inactive NAPT pinholes, in seconds. All timers must be at least 1 second.", - ) - napt_configuration.port_range = AAZObjectArg( - options=["port-range"], - help="Range of port numbers to use as translated ports on each translated address. If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999. (Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)", - ) - napt_configuration.port_reuse_hold_time = AAZObjectArg( - options=["port-reuse-hold-time"], - help="The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be minimum 1 second.", - ) - - pinhole_timeouts = cls._args_schema.napt_configuration.pinhole_timeouts - pinhole_timeouts.icmp = AAZIntArg( - options=["icmp"], - help="Pinhole timeout for ICMP pinholes in seconds. Default for ICMP Echo is 60 seconds, as per RFC 5508 section 3.2.", - default=30, - fmt=AAZIntArgFormat( - minimum=1, - ), - ) - pinhole_timeouts.tcp = AAZIntArg( - options=["tcp"], - help="Pinhole timeout for TCP pinholes in seconds. Default for TCP is 2 hours 4 minutes, as per RFC 5382 section 5.", - default=180, - fmt=AAZIntArgFormat( - minimum=1, - ), - ) - pinhole_timeouts.udp = AAZIntArg( - options=["udp"], - help="Pinhole timeout for UDP pinholes in seconds. Default for UDP is 5 minutes, as per RFC 4787 section 4.3.", - default=30, - fmt=AAZIntArgFormat( - minimum=1, - ), - ) - - port_range = cls._args_schema.napt_configuration.port_range - port_range.max_port = AAZIntArg( - options=["max-port"], - help="The maximum port number", - default=49999, - fmt=AAZIntArgFormat( - maximum=65535, - minimum=1024, - ), - ) - port_range.min_port = AAZIntArg( - options=["min-port"], - help="The minimum port number", - default=1024, - fmt=AAZIntArgFormat( - maximum=65535, - minimum=1024, - ), - ) - - port_reuse_hold_time = cls._args_schema.napt_configuration.port_reuse_hold_time - port_reuse_hold_time.tcp = AAZIntArg( - options=["tcp"], - help="Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Default for TCP is 2 minutes.", - default=120, - fmt=AAZIntArgFormat( - minimum=1, - ), - ) - port_reuse_hold_time.udp = AAZIntArg( - options=["udp"], - help="Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Default for UDP is 1 minute.", - default=60, - fmt=AAZIntArgFormat( - minimum=1, - ), - ) - - address_pool = cls._args_schema.address_pool - address_pool.Element = AAZStrArg( - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$", - ), - ) - - static_address_pool = cls._args_schema.static_address_pool - static_address_pool.Element = AAZStrArg( - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$", - ), - ) - - data_interface = cls._args_schema.data_interface - data_interface.ipv4_address = AAZStrArg( - options=["ipv4-address"], - help="The IPv4 address.", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - data_interface.ipv4_gateway = AAZStrArg( - options=["ipv4-gateway"], - help="The default IPv4 gateway (router).", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - data_interface.ipv4_subnet = AAZStrArg( - options=["ipv4-subnet"], - help="The IPv4 subnet.", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$", - ), - ) - data_interface.name = AAZStrArg( - options=["name"], - help="The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.", - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.AttachedDataNetworksCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class AttachedDataNetworksCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "attachedDataNetworkName", self.ctx.args.adn_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("dnsAddresses", AAZListType, ".dns_addresses", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("naptConfiguration", AAZObjectType, ".napt_configuration") - properties.set_prop("userEquipmentAddressPoolPrefix", AAZListType, ".address_pool") - properties.set_prop("userEquipmentStaticAddressPoolPrefix", AAZListType, ".static_address_pool") - properties.set_prop("userPlaneDataInterface", AAZObjectType, ".data_interface", typ_kwargs={"flags": {"required": True}}) - - dns_addresses = _builder.get(".properties.dnsAddresses") - if dns_addresses is not None: - dns_addresses.set_elements(AAZStrType, ".") - - napt_configuration = _builder.get(".properties.naptConfiguration") - if napt_configuration is not None: - napt_configuration.set_prop("enabled", AAZStrType, ".enabled") - napt_configuration.set_prop("pinholeLimits", AAZIntType, ".pinhole_limits") - napt_configuration.set_prop("pinholeTimeouts", AAZObjectType, ".pinhole_timeouts") - napt_configuration.set_prop("portRange", AAZObjectType, ".port_range") - napt_configuration.set_prop("portReuseHoldTime", AAZObjectType, ".port_reuse_hold_time") - - pinhole_timeouts = _builder.get(".properties.naptConfiguration.pinholeTimeouts") - if pinhole_timeouts is not None: - pinhole_timeouts.set_prop("icmp", AAZIntType, ".icmp") - pinhole_timeouts.set_prop("tcp", AAZIntType, ".tcp") - pinhole_timeouts.set_prop("udp", AAZIntType, ".udp") - - port_range = _builder.get(".properties.naptConfiguration.portRange") - if port_range is not None: - port_range.set_prop("maxPort", AAZIntType, ".max_port") - port_range.set_prop("minPort", AAZIntType, ".min_port") - - port_reuse_hold_time = _builder.get(".properties.naptConfiguration.portReuseHoldTime") - if port_reuse_hold_time is not None: - port_reuse_hold_time.set_prop("tcp", AAZIntType, ".tcp") - port_reuse_hold_time.set_prop("udp", AAZIntType, ".udp") - - user_equipment_address_pool_prefix = _builder.get(".properties.userEquipmentAddressPoolPrefix") - if user_equipment_address_pool_prefix is not None: - user_equipment_address_pool_prefix.set_elements(AAZStrType, ".") - - user_equipment_static_address_pool_prefix = _builder.get(".properties.userEquipmentStaticAddressPoolPrefix") - if user_equipment_static_address_pool_prefix is not None: - user_equipment_static_address_pool_prefix.set_elements(AAZStrType, ".") - - user_plane_data_interface = _builder.get(".properties.userPlaneDataInterface") - if user_plane_data_interface is not None: - user_plane_data_interface.set_prop("ipv4Address", AAZStrType, ".ipv4_address") - user_plane_data_interface.set_prop("ipv4Gateway", AAZStrType, ".ipv4_gateway") - user_plane_data_interface.set_prop("ipv4Subnet", AAZStrType, ".ipv4_subnet") - user_plane_data_interface.set_prop("name", AAZStrType, ".name") - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - - _schema_on_200_201 = cls._schema_on_200_201 - _schema_on_200_201.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200_201.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200_201.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200_201.tags = AAZDictType() - _schema_on_200_201.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200_201.properties - properties.dns_addresses = AAZListType( - serialized_name="dnsAddresses", - flags={"required": True}, - ) - properties.napt_configuration = AAZObjectType( - serialized_name="naptConfiguration", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.user_equipment_address_pool_prefix = AAZListType( - serialized_name="userEquipmentAddressPoolPrefix", - ) - properties.user_equipment_static_address_pool_prefix = AAZListType( - serialized_name="userEquipmentStaticAddressPoolPrefix", - ) - properties.user_plane_data_interface = AAZObjectType( - serialized_name="userPlaneDataInterface", - flags={"required": True}, - ) - - dns_addresses = cls._schema_on_200_201.properties.dns_addresses - dns_addresses.Element = AAZStrType() - - napt_configuration = cls._schema_on_200_201.properties.napt_configuration - napt_configuration.enabled = AAZStrType() - napt_configuration.pinhole_limits = AAZIntType( - serialized_name="pinholeLimits", - ) - napt_configuration.pinhole_timeouts = AAZObjectType( - serialized_name="pinholeTimeouts", - ) - napt_configuration.port_range = AAZObjectType( - serialized_name="portRange", - ) - napt_configuration.port_reuse_hold_time = AAZObjectType( - serialized_name="portReuseHoldTime", - ) - - pinhole_timeouts = cls._schema_on_200_201.properties.napt_configuration.pinhole_timeouts - pinhole_timeouts.icmp = AAZIntType() - pinhole_timeouts.tcp = AAZIntType() - pinhole_timeouts.udp = AAZIntType() - - port_range = cls._schema_on_200_201.properties.napt_configuration.port_range - port_range.max_port = AAZIntType( - serialized_name="maxPort", - ) - port_range.min_port = AAZIntType( - serialized_name="minPort", - ) - - port_reuse_hold_time = cls._schema_on_200_201.properties.napt_configuration.port_reuse_hold_time - port_reuse_hold_time.tcp = AAZIntType() - port_reuse_hold_time.udp = AAZIntType() - - user_equipment_address_pool_prefix = cls._schema_on_200_201.properties.user_equipment_address_pool_prefix - user_equipment_address_pool_prefix.Element = AAZStrType() - - user_equipment_static_address_pool_prefix = cls._schema_on_200_201.properties.user_equipment_static_address_pool_prefix - user_equipment_static_address_pool_prefix.Element = AAZStrType() - - user_plane_data_interface = cls._schema_on_200_201.properties.user_plane_data_interface - user_plane_data_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - user_plane_data_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - user_plane_data_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - user_plane_data_interface.name = AAZStrType() - - system_data = cls._schema_on_200_201.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200_201.tags - tags.Element = AAZStrType() - - return cls._schema_on_200_201 - - -class _CreateHelper: - """Helper class for Create""" - - -__all__ = ["Create"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_delete.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_delete.py deleted file mode 100644 index 28de1ec48d2..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_delete.py +++ /dev/null @@ -1,195 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network attached-data-network delete", - confirmation="Are you sure you want to perform this operation?", -) -class Delete(AAZCommand): - """Delete the specified attached data network. - - :example: Delete attached-data-network - az mobile-network attached-data-network delete -n data-network-name --pccp-name pccp-name --pcdp-name pcdp-name -g rg -y - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}/attacheddatanetworks/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, None) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.adn_name = AAZStrArg( - options=["-n", "--name", "--adn-name"], - help="The name of the attached data network.", - required=True, - id_part="child_name_2", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*(\.[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*)*$", - max_length=64, - ), - ) - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.pcdp_name = AAZStrArg( - options=["--pcdp-name"], - help="The name of the packet core data plane.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.AttachedDataNetworksDelete(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - class AttachedDataNetworksDelete(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [204]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_204, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}", - **self.url_parameters - ) - - @property - def method(self): - return "DELETE" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "attachedDataNetworkName", self.ctx.args.adn_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - def on_200(self, session): - pass - - def on_204(self, session): - pass - - -class _DeleteHelper: - """Helper class for Delete""" - - -__all__ = ["Delete"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_list.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_list.py deleted file mode 100644 index ada4777564b..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_list.py +++ /dev/null @@ -1,311 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network attached-data-network list", -) -class List(AAZCommand): - """List all the attached data networks associated with a packet core data plane. - - :example: List attached-data-network by resource group - az mobile-network attached-data-network list -g rg --pccp-name pccp-name --pcdp-name pcdp-name - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}/attacheddatanetworks", "2023-09-01"], - ] - } - - AZ_SUPPORT_PAGINATION = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_paging(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.pcdp_name = AAZStrArg( - options=["--pcdp-name"], - help="The name of the packet core data plane.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.AttachedDataNetworksListByPacketCoreDataPlane(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) - next_link = self.deserialize_output(self.ctx.vars.instance.next_link) - return result, next_link - - class AttachedDataNetworksListByPacketCoreDataPlane(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.next_link = AAZStrType( - serialized_name="nextLink", - flags={"read_only": True}, - ) - _schema_on_200.value = AAZListType() - - value = cls._schema_on_200.value - value.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.value.Element.properties - properties.dns_addresses = AAZListType( - serialized_name="dnsAddresses", - flags={"required": True}, - ) - properties.napt_configuration = AAZObjectType( - serialized_name="naptConfiguration", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.user_equipment_address_pool_prefix = AAZListType( - serialized_name="userEquipmentAddressPoolPrefix", - ) - properties.user_equipment_static_address_pool_prefix = AAZListType( - serialized_name="userEquipmentStaticAddressPoolPrefix", - ) - properties.user_plane_data_interface = AAZObjectType( - serialized_name="userPlaneDataInterface", - flags={"required": True}, - ) - - dns_addresses = cls._schema_on_200.value.Element.properties.dns_addresses - dns_addresses.Element = AAZStrType() - - napt_configuration = cls._schema_on_200.value.Element.properties.napt_configuration - napt_configuration.enabled = AAZStrType() - napt_configuration.pinhole_limits = AAZIntType( - serialized_name="pinholeLimits", - ) - napt_configuration.pinhole_timeouts = AAZObjectType( - serialized_name="pinholeTimeouts", - ) - napt_configuration.port_range = AAZObjectType( - serialized_name="portRange", - ) - napt_configuration.port_reuse_hold_time = AAZObjectType( - serialized_name="portReuseHoldTime", - ) - - pinhole_timeouts = cls._schema_on_200.value.Element.properties.napt_configuration.pinhole_timeouts - pinhole_timeouts.icmp = AAZIntType() - pinhole_timeouts.tcp = AAZIntType() - pinhole_timeouts.udp = AAZIntType() - - port_range = cls._schema_on_200.value.Element.properties.napt_configuration.port_range - port_range.max_port = AAZIntType( - serialized_name="maxPort", - ) - port_range.min_port = AAZIntType( - serialized_name="minPort", - ) - - port_reuse_hold_time = cls._schema_on_200.value.Element.properties.napt_configuration.port_reuse_hold_time - port_reuse_hold_time.tcp = AAZIntType() - port_reuse_hold_time.udp = AAZIntType() - - user_equipment_address_pool_prefix = cls._schema_on_200.value.Element.properties.user_equipment_address_pool_prefix - user_equipment_address_pool_prefix.Element = AAZStrType() - - user_equipment_static_address_pool_prefix = cls._schema_on_200.value.Element.properties.user_equipment_static_address_pool_prefix - user_equipment_static_address_pool_prefix.Element = AAZStrType() - - user_plane_data_interface = cls._schema_on_200.value.Element.properties.user_plane_data_interface - user_plane_data_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - user_plane_data_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - user_plane_data_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - user_plane_data_interface.name = AAZStrType() - - system_data = cls._schema_on_200.value.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.value.Element.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _ListHelper: - """Helper class for List""" - - -__all__ = ["List"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_update.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_update.py deleted file mode 100644 index 39b8b35b1f6..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_update.py +++ /dev/null @@ -1,761 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network attached-data-network update", -) -class Update(AAZCommand): - """Update an attached data network. - - :example: Update attached-data-network tags - az mobile-network attached-data-network update -n data_network-name -g rg --pccp-name pccp-name --pcdp-name pcdp-name --tags "{tag:test,tag2:test2}" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}/attacheddatanetworks/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - AZ_SUPPORT_GENERIC_UPDATE = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.adn_name = AAZStrArg( - options=["-n", "--name", "--adn-name"], - help="The name of the attached data network.", - required=True, - id_part="child_name_2", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*(\.[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*)*$", - max_length=64, - ), - ) - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.pcdp_name = AAZStrArg( - options=["--pcdp-name"], - help="The name of the packet core data plane.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - nullable=True, - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg( - nullable=True, - ) - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.dns_addresses = AAZListArg( - options=["--dns-addresses"], - arg_group="Properties", - help="The DNS servers to signal to UEs to use for this attached data network.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.napt_configuration = AAZObjectArg( - options=["--napt-configuration"], - arg_group="Properties", - help="The network address and port translation (NAPT) configuration. If this is not specified, the attached data network will use a default NAPT configuration with NAPT enabled.", - nullable=True, - ) - _args_schema.address_pool = AAZListArg( - options=["--address-pool"], - arg_group="Properties", - help="The user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. You must define at least one of userEquipmentAddressPoolPrefix and userEquipmentStaticAddressPoolPrefix. If you define both, they must be of the same size.", - nullable=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.static_address_pool = AAZListArg( - options=["--static-address-pool"], - arg_group="Properties", - help="The user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of userEquipmentAddressPoolPrefix and userEquipmentStaticAddressPoolPrefix must be defined. If both are defined, they must be of the same size.", - nullable=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.data_interface = AAZObjectArg( - options=["--data-interface"], - arg_group="Properties", - help="The user plane interface on the data network. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface.", - ) - - dns_addresses = cls._args_schema.dns_addresses - dns_addresses.Element = AAZStrArg( - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - - napt_configuration = cls._args_schema.napt_configuration - napt_configuration.enabled = AAZStrArg( - options=["enabled"], - help="Whether NAPT is enabled for connections to this attached data network.", - nullable=True, - enum={"Disabled": "Disabled", "Enabled": "Enabled"}, - ) - napt_configuration.pinhole_limits = AAZIntArg( - options=["pinhole-limits"], - help="Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface.", - nullable=True, - fmt=AAZIntArgFormat( - maximum=65536, - minimum=1, - ), - ) - napt_configuration.pinhole_timeouts = AAZObjectArg( - options=["pinhole-timeouts"], - help="Expiry times of inactive NAPT pinholes, in seconds. All timers must be at least 1 second.", - nullable=True, - ) - napt_configuration.port_range = AAZObjectArg( - options=["port-range"], - help="Range of port numbers to use as translated ports on each translated address. If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999. (Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)", - nullable=True, - ) - napt_configuration.port_reuse_hold_time = AAZObjectArg( - options=["port-reuse-hold-time"], - help="The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be minimum 1 second.", - nullable=True, - ) - - pinhole_timeouts = cls._args_schema.napt_configuration.pinhole_timeouts - pinhole_timeouts.icmp = AAZIntArg( - options=["icmp"], - help="Pinhole timeout for ICMP pinholes in seconds. Default for ICMP Echo is 60 seconds, as per RFC 5508 section 3.2.", - nullable=True, - fmt=AAZIntArgFormat( - minimum=1, - ), - ) - pinhole_timeouts.tcp = AAZIntArg( - options=["tcp"], - help="Pinhole timeout for TCP pinholes in seconds. Default for TCP is 2 hours 4 minutes, as per RFC 5382 section 5.", - nullable=True, - fmt=AAZIntArgFormat( - minimum=1, - ), - ) - pinhole_timeouts.udp = AAZIntArg( - options=["udp"], - help="Pinhole timeout for UDP pinholes in seconds. Default for UDP is 5 minutes, as per RFC 4787 section 4.3.", - nullable=True, - fmt=AAZIntArgFormat( - minimum=1, - ), - ) - - port_range = cls._args_schema.napt_configuration.port_range - port_range.max_port = AAZIntArg( - options=["max-port"], - help="The maximum port number", - nullable=True, - fmt=AAZIntArgFormat( - maximum=65535, - minimum=1024, - ), - ) - port_range.min_port = AAZIntArg( - options=["min-port"], - help="The minimum port number", - nullable=True, - fmt=AAZIntArgFormat( - maximum=65535, - minimum=1024, - ), - ) - - port_reuse_hold_time = cls._args_schema.napt_configuration.port_reuse_hold_time - port_reuse_hold_time.tcp = AAZIntArg( - options=["tcp"], - help="Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Default for TCP is 2 minutes.", - nullable=True, - fmt=AAZIntArgFormat( - minimum=1, - ), - ) - port_reuse_hold_time.udp = AAZIntArg( - options=["udp"], - help="Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Default for UDP is 1 minute.", - nullable=True, - fmt=AAZIntArgFormat( - minimum=1, - ), - ) - - address_pool = cls._args_schema.address_pool - address_pool.Element = AAZStrArg( - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$", - ), - ) - - static_address_pool = cls._args_schema.static_address_pool - static_address_pool.Element = AAZStrArg( - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$", - ), - ) - - data_interface = cls._args_schema.data_interface - data_interface.ipv4_address = AAZStrArg( - options=["ipv4-address"], - help="The IPv4 address.", - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - data_interface.ipv4_gateway = AAZStrArg( - options=["ipv4-gateway"], - help="The default IPv4 gateway (router).", - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - data_interface.ipv4_subnet = AAZStrArg( - options=["ipv4-subnet"], - help="The IPv4 subnet.", - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$", - ), - ) - data_interface.name = AAZStrArg( - options=["name"], - help="The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.", - nullable=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.AttachedDataNetworksGet(ctx=self.ctx)() - self.pre_instance_update(self.ctx.vars.instance) - self.InstanceUpdateByJson(ctx=self.ctx)() - self.InstanceUpdateByGeneric(ctx=self.ctx)() - self.post_instance_update(self.ctx.vars.instance) - yield self.AttachedDataNetworksCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - @register_callback - def pre_instance_update(self, instance): - pass - - @register_callback - def post_instance_update(self, instance): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class AttachedDataNetworksGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "attachedDataNetworkName", self.ctx.args.adn_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_attached_data_network_read(cls._schema_on_200) - - return cls._schema_on_200 - - class AttachedDataNetworksCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "attachedDataNetworkName", self.ctx.args.adn_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - value=self.ctx.vars.instance, - ) - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_attached_data_network_read(cls._schema_on_200_201) - - return cls._schema_on_200_201 - - class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): - - def __call__(self, *args, **kwargs): - self._update_instance(self.ctx.vars.instance) - - def _update_instance(self, instance): - _instance_value, _builder = self.new_content_builder( - self.ctx.args, - value=instance, - typ=AAZObjectType - ) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("dnsAddresses", AAZListType, ".dns_addresses", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("naptConfiguration", AAZObjectType, ".napt_configuration") - properties.set_prop("userEquipmentAddressPoolPrefix", AAZListType, ".address_pool") - properties.set_prop("userEquipmentStaticAddressPoolPrefix", AAZListType, ".static_address_pool") - properties.set_prop("userPlaneDataInterface", AAZObjectType, ".data_interface", typ_kwargs={"flags": {"required": True}}) - - dns_addresses = _builder.get(".properties.dnsAddresses") - if dns_addresses is not None: - dns_addresses.set_elements(AAZStrType, ".") - - napt_configuration = _builder.get(".properties.naptConfiguration") - if napt_configuration is not None: - napt_configuration.set_prop("enabled", AAZStrType, ".enabled") - napt_configuration.set_prop("pinholeLimits", AAZIntType, ".pinhole_limits") - napt_configuration.set_prop("pinholeTimeouts", AAZObjectType, ".pinhole_timeouts") - napt_configuration.set_prop("portRange", AAZObjectType, ".port_range") - napt_configuration.set_prop("portReuseHoldTime", AAZObjectType, ".port_reuse_hold_time") - - pinhole_timeouts = _builder.get(".properties.naptConfiguration.pinholeTimeouts") - if pinhole_timeouts is not None: - pinhole_timeouts.set_prop("icmp", AAZIntType, ".icmp") - pinhole_timeouts.set_prop("tcp", AAZIntType, ".tcp") - pinhole_timeouts.set_prop("udp", AAZIntType, ".udp") - - port_range = _builder.get(".properties.naptConfiguration.portRange") - if port_range is not None: - port_range.set_prop("maxPort", AAZIntType, ".max_port") - port_range.set_prop("minPort", AAZIntType, ".min_port") - - port_reuse_hold_time = _builder.get(".properties.naptConfiguration.portReuseHoldTime") - if port_reuse_hold_time is not None: - port_reuse_hold_time.set_prop("tcp", AAZIntType, ".tcp") - port_reuse_hold_time.set_prop("udp", AAZIntType, ".udp") - - user_equipment_address_pool_prefix = _builder.get(".properties.userEquipmentAddressPoolPrefix") - if user_equipment_address_pool_prefix is not None: - user_equipment_address_pool_prefix.set_elements(AAZStrType, ".") - - user_equipment_static_address_pool_prefix = _builder.get(".properties.userEquipmentStaticAddressPoolPrefix") - if user_equipment_static_address_pool_prefix is not None: - user_equipment_static_address_pool_prefix.set_elements(AAZStrType, ".") - - user_plane_data_interface = _builder.get(".properties.userPlaneDataInterface") - if user_plane_data_interface is not None: - user_plane_data_interface.set_prop("ipv4Address", AAZStrType, ".ipv4_address") - user_plane_data_interface.set_prop("ipv4Gateway", AAZStrType, ".ipv4_gateway") - user_plane_data_interface.set_prop("ipv4Subnet", AAZStrType, ".ipv4_subnet") - user_plane_data_interface.set_prop("name", AAZStrType, ".name") - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return _instance_value - - class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): - - def __call__(self, *args, **kwargs): - self._update_instance_by_generic( - self.ctx.vars.instance, - self.ctx.generic_update_args - ) - - -class _UpdateHelper: - """Helper class for Update""" - - _schema_attached_data_network_read = None - - @classmethod - def _build_schema_attached_data_network_read(cls, _schema): - if cls._schema_attached_data_network_read is not None: - _schema.id = cls._schema_attached_data_network_read.id - _schema.location = cls._schema_attached_data_network_read.location - _schema.name = cls._schema_attached_data_network_read.name - _schema.properties = cls._schema_attached_data_network_read.properties - _schema.system_data = cls._schema_attached_data_network_read.system_data - _schema.tags = cls._schema_attached_data_network_read.tags - _schema.type = cls._schema_attached_data_network_read.type - return - - cls._schema_attached_data_network_read = _schema_attached_data_network_read = AAZObjectType() - - attached_data_network_read = _schema_attached_data_network_read - attached_data_network_read.id = AAZStrType( - flags={"read_only": True}, - ) - attached_data_network_read.location = AAZStrType( - flags={"required": True}, - ) - attached_data_network_read.name = AAZStrType( - flags={"read_only": True}, - ) - attached_data_network_read.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - attached_data_network_read.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - attached_data_network_read.tags = AAZDictType() - attached_data_network_read.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = _schema_attached_data_network_read.properties - properties.dns_addresses = AAZListType( - serialized_name="dnsAddresses", - flags={"required": True}, - ) - properties.napt_configuration = AAZObjectType( - serialized_name="naptConfiguration", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.user_equipment_address_pool_prefix = AAZListType( - serialized_name="userEquipmentAddressPoolPrefix", - ) - properties.user_equipment_static_address_pool_prefix = AAZListType( - serialized_name="userEquipmentStaticAddressPoolPrefix", - ) - properties.user_plane_data_interface = AAZObjectType( - serialized_name="userPlaneDataInterface", - flags={"required": True}, - ) - - dns_addresses = _schema_attached_data_network_read.properties.dns_addresses - dns_addresses.Element = AAZStrType() - - napt_configuration = _schema_attached_data_network_read.properties.napt_configuration - napt_configuration.enabled = AAZStrType() - napt_configuration.pinhole_limits = AAZIntType( - serialized_name="pinholeLimits", - ) - napt_configuration.pinhole_timeouts = AAZObjectType( - serialized_name="pinholeTimeouts", - ) - napt_configuration.port_range = AAZObjectType( - serialized_name="portRange", - ) - napt_configuration.port_reuse_hold_time = AAZObjectType( - serialized_name="portReuseHoldTime", - ) - - pinhole_timeouts = _schema_attached_data_network_read.properties.napt_configuration.pinhole_timeouts - pinhole_timeouts.icmp = AAZIntType() - pinhole_timeouts.tcp = AAZIntType() - pinhole_timeouts.udp = AAZIntType() - - port_range = _schema_attached_data_network_read.properties.napt_configuration.port_range - port_range.max_port = AAZIntType( - serialized_name="maxPort", - ) - port_range.min_port = AAZIntType( - serialized_name="minPort", - ) - - port_reuse_hold_time = _schema_attached_data_network_read.properties.napt_configuration.port_reuse_hold_time - port_reuse_hold_time.tcp = AAZIntType() - port_reuse_hold_time.udp = AAZIntType() - - user_equipment_address_pool_prefix = _schema_attached_data_network_read.properties.user_equipment_address_pool_prefix - user_equipment_address_pool_prefix.Element = AAZStrType() - - user_equipment_static_address_pool_prefix = _schema_attached_data_network_read.properties.user_equipment_static_address_pool_prefix - user_equipment_static_address_pool_prefix.Element = AAZStrType() - - user_plane_data_interface = _schema_attached_data_network_read.properties.user_plane_data_interface - user_plane_data_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - user_plane_data_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - user_plane_data_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - user_plane_data_interface.name = AAZStrType() - - system_data = _schema_attached_data_network_read.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = _schema_attached_data_network_read.tags - tags.Element = AAZStrType() - - _schema.id = cls._schema_attached_data_network_read.id - _schema.location = cls._schema_attached_data_network_read.location - _schema.name = cls._schema_attached_data_network_read.name - _schema.properties = cls._schema_attached_data_network_read.properties - _schema.system_data = cls._schema_attached_data_network_read.system_data - _schema.tags = cls._schema_attached_data_network_read.tags - _schema.type = cls._schema_attached_data_network_read.type - - -__all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_wait.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_wait.py deleted file mode 100644 index 6966e8c3e30..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_wait.py +++ /dev/null @@ -1,311 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network attached-data-network wait", -) -class Wait(AAZWaitCommand): - """Place the CLI in a waiting state until a condition is met. - """ - - _aaz_info = { - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}/attacheddatanetworks/{}", "2023-09-01"], - ] - } - - def _handler(self, command_args): - super()._handler(command_args) - self._execute_operations() - return self._output() - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.adn_name = AAZStrArg( - options=["-n", "--name", "--adn-name"], - help="The name of the attached data network.", - required=True, - id_part="child_name_2", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*(\.[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*)*$", - max_length=64, - ), - ) - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.pcdp_name = AAZStrArg( - options=["--pcdp-name"], - help="The name of the packet core data plane.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.AttachedDataNetworksGet(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) - return result - - class AttachedDataNetworksGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "attachedDataNetworkName", self.ctx.args.adn_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200.tags = AAZDictType() - _schema_on_200.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties - properties.dns_addresses = AAZListType( - serialized_name="dnsAddresses", - flags={"required": True}, - ) - properties.napt_configuration = AAZObjectType( - serialized_name="naptConfiguration", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.user_equipment_address_pool_prefix = AAZListType( - serialized_name="userEquipmentAddressPoolPrefix", - ) - properties.user_equipment_static_address_pool_prefix = AAZListType( - serialized_name="userEquipmentStaticAddressPoolPrefix", - ) - properties.user_plane_data_interface = AAZObjectType( - serialized_name="userPlaneDataInterface", - flags={"required": True}, - ) - - dns_addresses = cls._schema_on_200.properties.dns_addresses - dns_addresses.Element = AAZStrType() - - napt_configuration = cls._schema_on_200.properties.napt_configuration - napt_configuration.enabled = AAZStrType() - napt_configuration.pinhole_limits = AAZIntType( - serialized_name="pinholeLimits", - ) - napt_configuration.pinhole_timeouts = AAZObjectType( - serialized_name="pinholeTimeouts", - ) - napt_configuration.port_range = AAZObjectType( - serialized_name="portRange", - ) - napt_configuration.port_reuse_hold_time = AAZObjectType( - serialized_name="portReuseHoldTime", - ) - - pinhole_timeouts = cls._schema_on_200.properties.napt_configuration.pinhole_timeouts - pinhole_timeouts.icmp = AAZIntType() - pinhole_timeouts.tcp = AAZIntType() - pinhole_timeouts.udp = AAZIntType() - - port_range = cls._schema_on_200.properties.napt_configuration.port_range - port_range.max_port = AAZIntType( - serialized_name="maxPort", - ) - port_range.min_port = AAZIntType( - serialized_name="minPort", - ) - - port_reuse_hold_time = cls._schema_on_200.properties.napt_configuration.port_reuse_hold_time - port_reuse_hold_time.tcp = AAZIntType() - port_reuse_hold_time.udp = AAZIntType() - - user_equipment_address_pool_prefix = cls._schema_on_200.properties.user_equipment_address_pool_prefix - user_equipment_address_pool_prefix.Element = AAZStrType() - - user_equipment_static_address_pool_prefix = cls._schema_on_200.properties.user_equipment_static_address_pool_prefix - user_equipment_static_address_pool_prefix.Element = AAZStrType() - - user_plane_data_interface = cls._schema_on_200.properties.user_plane_data_interface - user_plane_data_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - user_plane_data_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - user_plane_data_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - user_plane_data_interface.name = AAZStrType() - - system_data = cls._schema_on_200.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _WaitHelper: - """Helper class for Wait""" - - -__all__ = ["Wait"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/__init__.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/__init__.py deleted file mode 100644 index 9c1a9a83ff8..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/__init__.py +++ /dev/null @@ -1,20 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from .__cmd_group import * -from ._collect_diagnostics_package import * -from ._create import * -from ._delete import * -from ._list import * -from ._reinstall import * -from ._rollback import * -from ._show import * -from ._update import * -from ._wait import * diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_collect_diagnostics_package.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_collect_diagnostics_package.py deleted file mode 100644 index dcf69a49a05..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_collect_diagnostics_package.py +++ /dev/null @@ -1,282 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pccp collect-diagnostics-package", -) -class CollectDiagnosticsPackage(AAZCommand): - """Collect a diagnostics package for the specified packet core control plane. This action will upload the diagnostics to a storage account. - - :example: Collect diagnostics package - az mobile-network pccp collect-diagnostics-package --pccp-name pccp -g rg --blob-url https://contosoaccount.blob.core.windows.net/container/diagnosticsPackage.zip - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/collectdiagnosticspackage", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.blob_url = AAZStrArg( - options=["--blob-url"], - arg_group="Parameters", - help="The Storage Account Blob URL to upload the diagnostics package to.", - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.PacketCoreControlPlanesCollectDiagnosticsPackage(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class PacketCoreControlPlanesCollectDiagnosticsPackage(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/collectDiagnosticsPackage", - **self.url_parameters - ) - - @property - def method(self): - return "POST" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("storageAccountBlobUrl", AAZStrType, ".blob_url", typ_kwargs={"flags": {"required": True}}) - - return self.serialize_content(_content_value) - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.end_time = AAZStrType( - serialized_name="endTime", - ) - _schema_on_200.error = AAZObjectType() - _CollectDiagnosticsPackageHelper._build_schema_error_detail_read(_schema_on_200.error) - _schema_on_200.id = AAZStrType() - _schema_on_200.name = AAZStrType() - _schema_on_200.percent_complete = AAZFloatType( - serialized_name="percentComplete", - ) - _schema_on_200.properties = AAZObjectType() - _schema_on_200.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _schema_on_200.start_time = AAZStrType( - serialized_name="startTime", - ) - _schema_on_200.status = AAZStrType( - flags={"required": True}, - ) - - return cls._schema_on_200 - - -class _CollectDiagnosticsPackageHelper: - """Helper class for CollectDiagnosticsPackage""" - - _schema_error_detail_read = None - - @classmethod - def _build_schema_error_detail_read(cls, _schema): - if cls._schema_error_detail_read is not None: - _schema.additional_info = cls._schema_error_detail_read.additional_info - _schema.code = cls._schema_error_detail_read.code - _schema.details = cls._schema_error_detail_read.details - _schema.message = cls._schema_error_detail_read.message - _schema.target = cls._schema_error_detail_read.target - return - - cls._schema_error_detail_read = _schema_error_detail_read = AAZObjectType() - - error_detail_read = _schema_error_detail_read - error_detail_read.additional_info = AAZListType( - serialized_name="additionalInfo", - flags={"read_only": True}, - ) - error_detail_read.code = AAZStrType( - flags={"read_only": True}, - ) - error_detail_read.details = AAZListType( - flags={"read_only": True}, - ) - error_detail_read.message = AAZStrType( - flags={"read_only": True}, - ) - error_detail_read.target = AAZStrType( - flags={"read_only": True}, - ) - - additional_info = _schema_error_detail_read.additional_info - additional_info.Element = AAZObjectType() - - _element = _schema_error_detail_read.additional_info.Element - _element.info = AAZObjectType( - flags={"read_only": True}, - ) - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - details = _schema_error_detail_read.details - details.Element = AAZObjectType() - cls._build_schema_error_detail_read(details.Element) - - _schema.additional_info = cls._schema_error_detail_read.additional_info - _schema.code = cls._schema_error_detail_read.code - _schema.details = cls._schema_error_detail_read.details - _schema.message = cls._schema_error_detail_read.message - _schema.target = cls._schema_error_detail_read.target - - -__all__ = ["CollectDiagnosticsPackage"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_create.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_create.py deleted file mode 100644 index 91673f37b5c..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_create.py +++ /dev/null @@ -1,766 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pccp create", -) -class Create(AAZCommand): - """Create a packet core control plane. - - :example: Create Packet Core Control Plane - az mobile-network pccp create -n pccp-name -g rg --access-interface "{name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}" --local-diagnostics "{authentication-type:AAD}" --platform "{type:AKS-HCI}" --sites "[{id:site-id}]" --sku G0 - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["-n", "--name", "--pccp-name"], - help="The name of the packet core control plane.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.identity = AAZObjectArg( - options=["--identity"], - arg_group="Parameters", - help="The identity used to retrieve the ingress certificate from Azure key vault.", - ) - _args_schema.location = AAZResourceLocationArg( - arg_group="Parameters", - help="The geo-location where the resource lives", - required=True, - fmt=AAZResourceLocationArgFormat( - resource_group_arg="resource_group", - ), - ) - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - ) - - identity = cls._args_schema.identity - identity.type = AAZStrArg( - options=["type"], - help="Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).", - required=True, - enum={"None": "None", "UserAssigned": "UserAssigned"}, - ) - identity.user_assigned_identities = AAZDictArg( - options=["user-assigned-identities"], - help="The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.", - ) - - user_assigned_identities = cls._args_schema.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectArg( - blank={}, - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg() - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.access_interface = AAZObjectArg( - options=["--access-interface"], - arg_group="Properties", - help="The control plane interface on the access network. For 5G networks, this is the N2 interface. For 4G networks, this is the S1-MME interface.", - required=True, - ) - _args_schema.core_network_tec = AAZStrArg( - options=["--core-network-tec"], - arg_group="Properties", - help="The core network technology generation (5G core or EPC / 4G core).", - default="5GC", - enum={"5GC": "5GC", "EPC": "EPC", "EPC + 5GC": "EPC + 5GC"}, - ) - _args_schema.local_diagnostics = AAZObjectArg( - options=["--local-diagnostics"], - arg_group="Properties", - help="The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.", - required=True, - ) - _args_schema.platform = AAZObjectArg( - options=["--platform"], - arg_group="Properties", - help="The platform where the packet core is deployed.", - required=True, - ) - _args_schema.sites = AAZListArg( - options=["--sites"], - arg_group="Properties", - help="Site(s) under which this packet core control plane should be deployed. The sites must be in the same location as the packet core control plane.", - required=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.sku = AAZStrArg( - options=["--sku"], - arg_group="Properties", - help="The SKU defining the throughput and SIM allowances for this packet core control plane deployment.", - required=True, - enum={"G0": "G0", "G1": "G1", "G10": "G10", "G2": "G2", "G5": "G5"}, - ) - _args_schema.ue_mtu = AAZIntArg( - options=["--ue-mtu"], - arg_group="Properties", - help="The MTU (in bytes) signaled to the UE. The same MTU is set on the user plane data links for all data networks. The MTU set on the user plane access link is calculated to be 60 bytes greater than this value to allow for GTP encapsulation.", - default=1440, - fmt=AAZIntArgFormat( - maximum=1930, - minimum=1280, - ), - ) - _args_schema.version = AAZStrArg( - options=["--version"], - arg_group="Properties", - help="The version of the packet core software that is deployed.", - ) - - access_interface = cls._args_schema.access_interface - access_interface.ipv4_address = AAZStrArg( - options=["ipv4-address"], - help="The IPv4 address.", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - access_interface.ipv4_gateway = AAZStrArg( - options=["ipv4-gateway"], - help="The default IPv4 gateway (router).", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - access_interface.ipv4_subnet = AAZStrArg( - options=["ipv4-subnet"], - help="The IPv4 subnet.", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$", - ), - ) - access_interface.name = AAZStrArg( - options=["name"], - help="The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.", - ) - - local_diagnostics = cls._args_schema.local_diagnostics - local_diagnostics.authentication_type = AAZStrArg( - options=["authentication-type"], - help="How to authenticate users who access local diagnostics APIs.", - required=True, - enum={"AAD": "AAD", "Password": "Password"}, - ) - local_diagnostics.https_server_certificate = AAZObjectArg( - options=["https-server-certificate"], - help="The HTTPS server TLS certificate used to secure local access to diagnostics.", - ) - - https_server_certificate = cls._args_schema.local_diagnostics.https_server_certificate - https_server_certificate.certificate_url = AAZStrArg( - options=["certificate-url"], - help="The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.", - required=True, - ) - - platform = cls._args_schema.platform - platform.azure_stack_edge_device = AAZObjectArg( - options=["azure-stack-edge-device"], - help="The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.", - ) - platform.azure_stack_hci_cluster = AAZObjectArg( - options=["azure-stack-hci-cluster"], - help="The Azure Stack HCI cluster where the packet core is deployed.", - ) - platform.connected_cluster = AAZObjectArg( - options=["connected-cluster"], - help="Azure Arc connected cluster where the packet core is deployed.", - ) - platform.custom_location = AAZObjectArg( - options=["custom-location"], - help="Azure Arc custom location where the packet core is deployed.", - ) - platform.type = AAZStrArg( - options=["type"], - help="The platform type where packet core is deployed.", - required=True, - enum={"3P-AZURE-STACK-HCI": "3P-AZURE-STACK-HCI", "AKS-HCI": "AKS-HCI"}, - ) - - azure_stack_edge_device = cls._args_schema.platform.azure_stack_edge_device - azure_stack_edge_device.id = AAZStrArg( - options=["id"], - help="Azure Stack Edge device resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[dD][aA][tT][aA][bB][oO][xX][eE][dD][gG][eE]/[dD][aA][tT][aA][bB][oO][xX][eE][dD][gG][eE][dD][eE][vV][iI][cC][eE][sS]/[^/?#]+$", - ), - ) - - azure_stack_hci_cluster = cls._args_schema.platform.azure_stack_hci_cluster - azure_stack_hci_cluster.id = AAZStrArg( - options=["id"], - help="Azure Stack HCI cluster resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[aA][zZ][uU][rR][eE][sS][tT][aA][cC][kK][hH][cC][iI]/[cC][lL][uU][sS][tT][eE][rR][sS]/[^/?#]+$", - ), - ) - - connected_cluster = cls._args_schema.platform.connected_cluster - connected_cluster.id = AAZStrArg( - options=["id"], - help="Azure Arc connected cluster resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[kK][uU][bB][eE][rR][nN][eE][tT][eE][sS]/[cC][oO][nN][nN][eE][cC][tT][eE][dD][cC][lL][uU][sS][tT][eE][rR][sS]/[^/?#]+$", - ), - ) - - custom_location = cls._args_schema.platform.custom_location - custom_location.id = AAZStrArg( - options=["id"], - help="Azure Arc custom location resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[eE][xX][tT][eE][nN][dD][eE][dD][lL][oO][cC][aA][tT][iI][oO][nN]/[cC][uU][sS][tT][oO][mM][lL][oO][cC][aA][tT][iI][oO][nN][sS]/[^/?#]+$", - ), - ) - - sites = cls._args_schema.sites - sites.Element = AAZObjectArg() - - _element = cls._args_schema.sites.Element - _element.id = AAZStrArg( - options=["id"], - help="Site resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[sS][iI][tT][eE][sS]/[^/?#]+$", - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.PacketCoreControlPlanesCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class PacketCoreControlPlanesCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("identity", AAZObjectType, ".identity") - _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - identity = _builder.get(".identity") - if identity is not None: - identity.set_prop("type", AAZStrType, ".type", typ_kwargs={"flags": {"required": True}}) - identity.set_prop("userAssignedIdentities", AAZDictType, ".user_assigned_identities") - - user_assigned_identities = _builder.get(".identity.userAssignedIdentities") - if user_assigned_identities is not None: - user_assigned_identities.set_elements(AAZObjectType, ".") - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("controlPlaneAccessInterface", AAZObjectType, ".access_interface", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("coreNetworkTechnology", AAZStrType, ".core_network_tec") - properties.set_prop("localDiagnosticsAccess", AAZObjectType, ".local_diagnostics", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("platform", AAZObjectType, ".platform", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("sites", AAZListType, ".sites", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("sku", AAZStrType, ".sku", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("ueMtu", AAZIntType, ".ue_mtu") - properties.set_prop("version", AAZStrType, ".version") - - control_plane_access_interface = _builder.get(".properties.controlPlaneAccessInterface") - if control_plane_access_interface is not None: - control_plane_access_interface.set_prop("ipv4Address", AAZStrType, ".ipv4_address") - control_plane_access_interface.set_prop("ipv4Gateway", AAZStrType, ".ipv4_gateway") - control_plane_access_interface.set_prop("ipv4Subnet", AAZStrType, ".ipv4_subnet") - control_plane_access_interface.set_prop("name", AAZStrType, ".name") - - local_diagnostics_access = _builder.get(".properties.localDiagnosticsAccess") - if local_diagnostics_access is not None: - local_diagnostics_access.set_prop("authenticationType", AAZStrType, ".authentication_type", typ_kwargs={"flags": {"required": True}}) - local_diagnostics_access.set_prop("httpsServerCertificate", AAZObjectType, ".https_server_certificate") - - https_server_certificate = _builder.get(".properties.localDiagnosticsAccess.httpsServerCertificate") - if https_server_certificate is not None: - https_server_certificate.set_prop("certificateUrl", AAZStrType, ".certificate_url", typ_kwargs={"flags": {"required": True}}) - - platform = _builder.get(".properties.platform") - if platform is not None: - platform.set_prop("azureStackEdgeDevice", AAZObjectType, ".azure_stack_edge_device") - platform.set_prop("azureStackHciCluster", AAZObjectType, ".azure_stack_hci_cluster") - platform.set_prop("connectedCluster", AAZObjectType, ".connected_cluster") - platform.set_prop("customLocation", AAZObjectType, ".custom_location") - platform.set_prop("type", AAZStrType, ".type", typ_kwargs={"flags": {"required": True}}) - - azure_stack_edge_device = _builder.get(".properties.platform.azureStackEdgeDevice") - if azure_stack_edge_device is not None: - azure_stack_edge_device.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - azure_stack_hci_cluster = _builder.get(".properties.platform.azureStackHciCluster") - if azure_stack_hci_cluster is not None: - azure_stack_hci_cluster.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - connected_cluster = _builder.get(".properties.platform.connectedCluster") - if connected_cluster is not None: - connected_cluster.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - custom_location = _builder.get(".properties.platform.customLocation") - if custom_location is not None: - custom_location.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - sites = _builder.get(".properties.sites") - if sites is not None: - sites.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.sites[]") - if _elements is not None: - _elements.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - - _schema_on_200_201 = cls._schema_on_200_201 - _schema_on_200_201.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.identity = AAZObjectType() - _schema_on_200_201.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200_201.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200_201.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200_201.tags = AAZDictType() - _schema_on_200_201.type = AAZStrType( - flags={"read_only": True}, - ) - - identity = cls._schema_on_200_201.identity - identity.type = AAZStrType( - flags={"required": True}, - ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", - ) - - user_assigned_identities = cls._schema_on_200_201.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = cls._schema_on_200_201.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", - flags={"read_only": True}, - ) - _element.principal_id = AAZStrType( - serialized_name="principalId", - flags={"read_only": True}, - ) - - properties = cls._schema_on_200_201.properties - properties.control_plane_access_interface = AAZObjectType( - serialized_name="controlPlaneAccessInterface", - flags={"required": True}, - ) - properties.control_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="controlPlaneAccessVirtualIpv4Addresses", - ) - properties.core_network_technology = AAZStrType( - serialized_name="coreNetworkTechnology", - ) - properties.diagnostics_upload = AAZObjectType( - serialized_name="diagnosticsUpload", - ) - properties.event_hub = AAZObjectType( - serialized_name="eventHub", - ) - properties.installation = AAZObjectType() - properties.installed_version = AAZStrType( - serialized_name="installedVersion", - flags={"read_only": True}, - ) - properties.interop_settings = AAZObjectType( - serialized_name="interopSettings", - ) - properties.local_diagnostics_access = AAZObjectType( - serialized_name="localDiagnosticsAccess", - flags={"required": True}, - ) - properties.platform = AAZObjectType( - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.rollback_version = AAZStrType( - serialized_name="rollbackVersion", - flags={"read_only": True}, - ) - properties.signaling = AAZObjectType() - properties.sites = AAZListType( - flags={"required": True}, - ) - properties.sku = AAZStrType( - flags={"required": True}, - ) - properties.ue_mtu = AAZIntType( - serialized_name="ueMtu", - ) - properties.version = AAZStrType() - - control_plane_access_interface = cls._schema_on_200_201.properties.control_plane_access_interface - control_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - control_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - control_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - control_plane_access_interface.name = AAZStrType() - - control_plane_access_virtual_ipv4_addresses = cls._schema_on_200_201.properties.control_plane_access_virtual_ipv4_addresses - control_plane_access_virtual_ipv4_addresses.Element = AAZStrType() - - diagnostics_upload = cls._schema_on_200_201.properties.diagnostics_upload - diagnostics_upload.storage_account_container_url = AAZStrType( - serialized_name="storageAccountContainerUrl", - flags={"required": True}, - ) - - event_hub = cls._schema_on_200_201.properties.event_hub - event_hub.id = AAZStrType( - flags={"required": True}, - ) - event_hub.reporting_interval = AAZIntType( - serialized_name="reportingInterval", - ) - - installation = cls._schema_on_200_201.properties.installation - installation.desired_state = AAZStrType( - serialized_name="desiredState", - ) - installation.operation = AAZObjectType() - installation.reasons = AAZListType( - flags={"read_only": True}, - ) - installation.reinstall_required = AAZStrType( - serialized_name="reinstallRequired", - ) - installation.state = AAZStrType() - - operation = cls._schema_on_200_201.properties.installation.operation - operation.id = AAZStrType( - flags={"required": True}, - ) - - reasons = cls._schema_on_200_201.properties.installation.reasons - reasons.Element = AAZStrType() - - local_diagnostics_access = cls._schema_on_200_201.properties.local_diagnostics_access - local_diagnostics_access.authentication_type = AAZStrType( - serialized_name="authenticationType", - flags={"required": True}, - ) - local_diagnostics_access.https_server_certificate = AAZObjectType( - serialized_name="httpsServerCertificate", - ) - - https_server_certificate = cls._schema_on_200_201.properties.local_diagnostics_access.https_server_certificate - https_server_certificate.certificate_url = AAZStrType( - serialized_name="certificateUrl", - flags={"required": True}, - ) - https_server_certificate.provisioning = AAZObjectType() - - provisioning = cls._schema_on_200_201.properties.local_diagnostics_access.https_server_certificate.provisioning - provisioning.reason = AAZStrType( - flags={"read_only": True}, - ) - provisioning.state = AAZStrType( - flags={"read_only": True}, - ) - - platform = cls._schema_on_200_201.properties.platform - platform.azure_stack_edge_device = AAZObjectType( - serialized_name="azureStackEdgeDevice", - ) - _CreateHelper._build_schema_azure_stack_edge_device_resource_id_read(platform.azure_stack_edge_device) - platform.azure_stack_edge_devices = AAZListType( - serialized_name="azureStackEdgeDevices", - flags={"read_only": True}, - ) - platform.azure_stack_hci_cluster = AAZObjectType( - serialized_name="azureStackHciCluster", - ) - platform.connected_cluster = AAZObjectType( - serialized_name="connectedCluster", - ) - platform.custom_location = AAZObjectType( - serialized_name="customLocation", - ) - platform.type = AAZStrType( - flags={"required": True}, - ) - - azure_stack_edge_devices = cls._schema_on_200_201.properties.platform.azure_stack_edge_devices - azure_stack_edge_devices.Element = AAZObjectType() - _CreateHelper._build_schema_azure_stack_edge_device_resource_id_read(azure_stack_edge_devices.Element) - - azure_stack_hci_cluster = cls._schema_on_200_201.properties.platform.azure_stack_hci_cluster - azure_stack_hci_cluster.id = AAZStrType( - flags={"required": True}, - ) - - connected_cluster = cls._schema_on_200_201.properties.platform.connected_cluster - connected_cluster.id = AAZStrType( - flags={"required": True}, - ) - - custom_location = cls._schema_on_200_201.properties.platform.custom_location - custom_location.id = AAZStrType( - flags={"required": True}, - ) - - signaling = cls._schema_on_200_201.properties.signaling - signaling.nas_reroute = AAZObjectType( - serialized_name="nasReroute", - ) - - nas_reroute = cls._schema_on_200_201.properties.signaling.nas_reroute - nas_reroute.macro_mme_group_id = AAZIntType( - serialized_name="macroMmeGroupId", - flags={"required": True}, - ) - - sites = cls._schema_on_200_201.properties.sites - sites.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.sites.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200_201.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200_201.tags - tags.Element = AAZStrType() - - return cls._schema_on_200_201 - - -class _CreateHelper: - """Helper class for Create""" - - _schema_azure_stack_edge_device_resource_id_read = None - - @classmethod - def _build_schema_azure_stack_edge_device_resource_id_read(cls, _schema): - if cls._schema_azure_stack_edge_device_resource_id_read is not None: - _schema.id = cls._schema_azure_stack_edge_device_resource_id_read.id - return - - cls._schema_azure_stack_edge_device_resource_id_read = _schema_azure_stack_edge_device_resource_id_read = AAZObjectType() - - azure_stack_edge_device_resource_id_read = _schema_azure_stack_edge_device_resource_id_read - azure_stack_edge_device_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_azure_stack_edge_device_resource_id_read.id - - -__all__ = ["Create"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_list.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_list.py deleted file mode 100644 index 8e568dba368..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_list.py +++ /dev/null @@ -1,775 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pccp list", -) -class List(AAZCommand): - """List all the packet core control planes in a subscription. - - :example: List Packet Core Control Plane by resource group - az mobile-network pccp list -g rg - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes", "2023-09-01"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes", "2023-09-01"], - ] - } - - AZ_SUPPORT_PAGINATION = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_paging(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg() - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - condition_0 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) - condition_1 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True - if condition_0: - self.PacketCoreControlPlanesListByResourceGroup(ctx=self.ctx)() - if condition_1: - self.PacketCoreControlPlanesListBySubscription(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) - next_link = self.deserialize_output(self.ctx.vars.instance.next_link) - return result, next_link - - class PacketCoreControlPlanesListByResourceGroup(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.next_link = AAZStrType( - serialized_name="nextLink", - flags={"read_only": True}, - ) - _schema_on_200.value = AAZListType() - - value = cls._schema_on_200.value - value.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.identity = AAZObjectType() - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - identity = cls._schema_on_200.value.Element.identity - identity.type = AAZStrType( - flags={"required": True}, - ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", - ) - - user_assigned_identities = cls._schema_on_200.value.Element.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", - flags={"read_only": True}, - ) - _element.principal_id = AAZStrType( - serialized_name="principalId", - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.value.Element.properties - properties.control_plane_access_interface = AAZObjectType( - serialized_name="controlPlaneAccessInterface", - flags={"required": True}, - ) - properties.control_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="controlPlaneAccessVirtualIpv4Addresses", - ) - properties.core_network_technology = AAZStrType( - serialized_name="coreNetworkTechnology", - ) - properties.diagnostics_upload = AAZObjectType( - serialized_name="diagnosticsUpload", - ) - properties.event_hub = AAZObjectType( - serialized_name="eventHub", - ) - properties.installation = AAZObjectType() - properties.installed_version = AAZStrType( - serialized_name="installedVersion", - flags={"read_only": True}, - ) - properties.interop_settings = AAZObjectType( - serialized_name="interopSettings", - ) - properties.local_diagnostics_access = AAZObjectType( - serialized_name="localDiagnosticsAccess", - flags={"required": True}, - ) - properties.platform = AAZObjectType( - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.rollback_version = AAZStrType( - serialized_name="rollbackVersion", - flags={"read_only": True}, - ) - properties.signaling = AAZObjectType() - properties.sites = AAZListType( - flags={"required": True}, - ) - properties.sku = AAZStrType( - flags={"required": True}, - ) - properties.ue_mtu = AAZIntType( - serialized_name="ueMtu", - ) - properties.version = AAZStrType() - - control_plane_access_interface = cls._schema_on_200.value.Element.properties.control_plane_access_interface - control_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - control_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - control_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - control_plane_access_interface.name = AAZStrType() - - control_plane_access_virtual_ipv4_addresses = cls._schema_on_200.value.Element.properties.control_plane_access_virtual_ipv4_addresses - control_plane_access_virtual_ipv4_addresses.Element = AAZStrType() - - diagnostics_upload = cls._schema_on_200.value.Element.properties.diagnostics_upload - diagnostics_upload.storage_account_container_url = AAZStrType( - serialized_name="storageAccountContainerUrl", - flags={"required": True}, - ) - - event_hub = cls._schema_on_200.value.Element.properties.event_hub - event_hub.id = AAZStrType( - flags={"required": True}, - ) - event_hub.reporting_interval = AAZIntType( - serialized_name="reportingInterval", - ) - - installation = cls._schema_on_200.value.Element.properties.installation - installation.desired_state = AAZStrType( - serialized_name="desiredState", - ) - installation.operation = AAZObjectType() - installation.reasons = AAZListType( - flags={"read_only": True}, - ) - installation.reinstall_required = AAZStrType( - serialized_name="reinstallRequired", - ) - installation.state = AAZStrType() - - operation = cls._schema_on_200.value.Element.properties.installation.operation - operation.id = AAZStrType( - flags={"required": True}, - ) - - reasons = cls._schema_on_200.value.Element.properties.installation.reasons - reasons.Element = AAZStrType() - - local_diagnostics_access = cls._schema_on_200.value.Element.properties.local_diagnostics_access - local_diagnostics_access.authentication_type = AAZStrType( - serialized_name="authenticationType", - flags={"required": True}, - ) - local_diagnostics_access.https_server_certificate = AAZObjectType( - serialized_name="httpsServerCertificate", - ) - - https_server_certificate = cls._schema_on_200.value.Element.properties.local_diagnostics_access.https_server_certificate - https_server_certificate.certificate_url = AAZStrType( - serialized_name="certificateUrl", - flags={"required": True}, - ) - https_server_certificate.provisioning = AAZObjectType() - - provisioning = cls._schema_on_200.value.Element.properties.local_diagnostics_access.https_server_certificate.provisioning - provisioning.reason = AAZStrType( - flags={"read_only": True}, - ) - provisioning.state = AAZStrType( - flags={"read_only": True}, - ) - - platform = cls._schema_on_200.value.Element.properties.platform - platform.azure_stack_edge_device = AAZObjectType( - serialized_name="azureStackEdgeDevice", - ) - _ListHelper._build_schema_azure_stack_edge_device_resource_id_read(platform.azure_stack_edge_device) - platform.azure_stack_edge_devices = AAZListType( - serialized_name="azureStackEdgeDevices", - flags={"read_only": True}, - ) - platform.azure_stack_hci_cluster = AAZObjectType( - serialized_name="azureStackHciCluster", - ) - platform.connected_cluster = AAZObjectType( - serialized_name="connectedCluster", - ) - platform.custom_location = AAZObjectType( - serialized_name="customLocation", - ) - platform.type = AAZStrType( - flags={"required": True}, - ) - - azure_stack_edge_devices = cls._schema_on_200.value.Element.properties.platform.azure_stack_edge_devices - azure_stack_edge_devices.Element = AAZObjectType() - _ListHelper._build_schema_azure_stack_edge_device_resource_id_read(azure_stack_edge_devices.Element) - - azure_stack_hci_cluster = cls._schema_on_200.value.Element.properties.platform.azure_stack_hci_cluster - azure_stack_hci_cluster.id = AAZStrType( - flags={"required": True}, - ) - - connected_cluster = cls._schema_on_200.value.Element.properties.platform.connected_cluster - connected_cluster.id = AAZStrType( - flags={"required": True}, - ) - - custom_location = cls._schema_on_200.value.Element.properties.platform.custom_location - custom_location.id = AAZStrType( - flags={"required": True}, - ) - - signaling = cls._schema_on_200.value.Element.properties.signaling - signaling.nas_reroute = AAZObjectType( - serialized_name="nasReroute", - ) - - nas_reroute = cls._schema_on_200.value.Element.properties.signaling.nas_reroute - nas_reroute.macro_mme_group_id = AAZIntType( - serialized_name="macroMmeGroupId", - flags={"required": True}, - ) - - sites = cls._schema_on_200.value.Element.properties.sites - sites.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.sites.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200.value.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.value.Element.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - class PacketCoreControlPlanesListBySubscription(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.next_link = AAZStrType( - serialized_name="nextLink", - flags={"read_only": True}, - ) - _schema_on_200.value = AAZListType() - - value = cls._schema_on_200.value - value.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.identity = AAZObjectType() - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - identity = cls._schema_on_200.value.Element.identity - identity.type = AAZStrType( - flags={"required": True}, - ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", - ) - - user_assigned_identities = cls._schema_on_200.value.Element.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", - flags={"read_only": True}, - ) - _element.principal_id = AAZStrType( - serialized_name="principalId", - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.value.Element.properties - properties.control_plane_access_interface = AAZObjectType( - serialized_name="controlPlaneAccessInterface", - flags={"required": True}, - ) - properties.control_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="controlPlaneAccessVirtualIpv4Addresses", - ) - properties.core_network_technology = AAZStrType( - serialized_name="coreNetworkTechnology", - ) - properties.diagnostics_upload = AAZObjectType( - serialized_name="diagnosticsUpload", - ) - properties.event_hub = AAZObjectType( - serialized_name="eventHub", - ) - properties.installation = AAZObjectType() - properties.installed_version = AAZStrType( - serialized_name="installedVersion", - flags={"read_only": True}, - ) - properties.interop_settings = AAZObjectType( - serialized_name="interopSettings", - ) - properties.local_diagnostics_access = AAZObjectType( - serialized_name="localDiagnosticsAccess", - flags={"required": True}, - ) - properties.platform = AAZObjectType( - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.rollback_version = AAZStrType( - serialized_name="rollbackVersion", - flags={"read_only": True}, - ) - properties.signaling = AAZObjectType() - properties.sites = AAZListType( - flags={"required": True}, - ) - properties.sku = AAZStrType( - flags={"required": True}, - ) - properties.ue_mtu = AAZIntType( - serialized_name="ueMtu", - ) - properties.version = AAZStrType() - - control_plane_access_interface = cls._schema_on_200.value.Element.properties.control_plane_access_interface - control_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - control_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - control_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - control_plane_access_interface.name = AAZStrType() - - control_plane_access_virtual_ipv4_addresses = cls._schema_on_200.value.Element.properties.control_plane_access_virtual_ipv4_addresses - control_plane_access_virtual_ipv4_addresses.Element = AAZStrType() - - diagnostics_upload = cls._schema_on_200.value.Element.properties.diagnostics_upload - diagnostics_upload.storage_account_container_url = AAZStrType( - serialized_name="storageAccountContainerUrl", - flags={"required": True}, - ) - - event_hub = cls._schema_on_200.value.Element.properties.event_hub - event_hub.id = AAZStrType( - flags={"required": True}, - ) - event_hub.reporting_interval = AAZIntType( - serialized_name="reportingInterval", - ) - - installation = cls._schema_on_200.value.Element.properties.installation - installation.desired_state = AAZStrType( - serialized_name="desiredState", - ) - installation.operation = AAZObjectType() - installation.reasons = AAZListType( - flags={"read_only": True}, - ) - installation.reinstall_required = AAZStrType( - serialized_name="reinstallRequired", - ) - installation.state = AAZStrType() - - operation = cls._schema_on_200.value.Element.properties.installation.operation - operation.id = AAZStrType( - flags={"required": True}, - ) - - reasons = cls._schema_on_200.value.Element.properties.installation.reasons - reasons.Element = AAZStrType() - - local_diagnostics_access = cls._schema_on_200.value.Element.properties.local_diagnostics_access - local_diagnostics_access.authentication_type = AAZStrType( - serialized_name="authenticationType", - flags={"required": True}, - ) - local_diagnostics_access.https_server_certificate = AAZObjectType( - serialized_name="httpsServerCertificate", - ) - - https_server_certificate = cls._schema_on_200.value.Element.properties.local_diagnostics_access.https_server_certificate - https_server_certificate.certificate_url = AAZStrType( - serialized_name="certificateUrl", - flags={"required": True}, - ) - https_server_certificate.provisioning = AAZObjectType() - - provisioning = cls._schema_on_200.value.Element.properties.local_diagnostics_access.https_server_certificate.provisioning - provisioning.reason = AAZStrType( - flags={"read_only": True}, - ) - provisioning.state = AAZStrType( - flags={"read_only": True}, - ) - - platform = cls._schema_on_200.value.Element.properties.platform - platform.azure_stack_edge_device = AAZObjectType( - serialized_name="azureStackEdgeDevice", - ) - _ListHelper._build_schema_azure_stack_edge_device_resource_id_read(platform.azure_stack_edge_device) - platform.azure_stack_edge_devices = AAZListType( - serialized_name="azureStackEdgeDevices", - flags={"read_only": True}, - ) - platform.azure_stack_hci_cluster = AAZObjectType( - serialized_name="azureStackHciCluster", - ) - platform.connected_cluster = AAZObjectType( - serialized_name="connectedCluster", - ) - platform.custom_location = AAZObjectType( - serialized_name="customLocation", - ) - platform.type = AAZStrType( - flags={"required": True}, - ) - - azure_stack_edge_devices = cls._schema_on_200.value.Element.properties.platform.azure_stack_edge_devices - azure_stack_edge_devices.Element = AAZObjectType() - _ListHelper._build_schema_azure_stack_edge_device_resource_id_read(azure_stack_edge_devices.Element) - - azure_stack_hci_cluster = cls._schema_on_200.value.Element.properties.platform.azure_stack_hci_cluster - azure_stack_hci_cluster.id = AAZStrType( - flags={"required": True}, - ) - - connected_cluster = cls._schema_on_200.value.Element.properties.platform.connected_cluster - connected_cluster.id = AAZStrType( - flags={"required": True}, - ) - - custom_location = cls._schema_on_200.value.Element.properties.platform.custom_location - custom_location.id = AAZStrType( - flags={"required": True}, - ) - - signaling = cls._schema_on_200.value.Element.properties.signaling - signaling.nas_reroute = AAZObjectType( - serialized_name="nasReroute", - ) - - nas_reroute = cls._schema_on_200.value.Element.properties.signaling.nas_reroute - nas_reroute.macro_mme_group_id = AAZIntType( - serialized_name="macroMmeGroupId", - flags={"required": True}, - ) - - sites = cls._schema_on_200.value.Element.properties.sites - sites.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.sites.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200.value.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.value.Element.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _ListHelper: - """Helper class for List""" - - _schema_azure_stack_edge_device_resource_id_read = None - - @classmethod - def _build_schema_azure_stack_edge_device_resource_id_read(cls, _schema): - if cls._schema_azure_stack_edge_device_resource_id_read is not None: - _schema.id = cls._schema_azure_stack_edge_device_resource_id_read.id - return - - cls._schema_azure_stack_edge_device_resource_id_read = _schema_azure_stack_edge_device_resource_id_read = AAZObjectType() - - azure_stack_edge_device_resource_id_read = _schema_azure_stack_edge_device_resource_id_read - azure_stack_edge_device_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_azure_stack_edge_device_resource_id_read.id - - -__all__ = ["List"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_reinstall.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_reinstall.py deleted file mode 100644 index c0ad9e64cb5..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_reinstall.py +++ /dev/null @@ -1,258 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pccp reinstall", -) -class Reinstall(AAZCommand): - """Reinstall the specified packet core control plane. This action will remove any transaction state from the packet core to return it to a known state. This action will cause a service outage. - - :example: Reinstall Packet Core Control Plane - az mobile-network pccp reinstall --pccp-name pccp-name -g rg - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/reinstall", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.PacketCoreControlPlanesReinstall(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class PacketCoreControlPlanesReinstall(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/reinstall", - **self.url_parameters - ) - - @property - def method(self): - return "POST" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.end_time = AAZStrType( - serialized_name="endTime", - ) - _schema_on_200.error = AAZObjectType() - _ReinstallHelper._build_schema_error_detail_read(_schema_on_200.error) - _schema_on_200.id = AAZStrType() - _schema_on_200.name = AAZStrType() - _schema_on_200.percent_complete = AAZFloatType( - serialized_name="percentComplete", - ) - _schema_on_200.properties = AAZObjectType() - _schema_on_200.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _schema_on_200.start_time = AAZStrType( - serialized_name="startTime", - ) - _schema_on_200.status = AAZStrType( - flags={"required": True}, - ) - - return cls._schema_on_200 - - -class _ReinstallHelper: - """Helper class for Reinstall""" - - _schema_error_detail_read = None - - @classmethod - def _build_schema_error_detail_read(cls, _schema): - if cls._schema_error_detail_read is not None: - _schema.additional_info = cls._schema_error_detail_read.additional_info - _schema.code = cls._schema_error_detail_read.code - _schema.details = cls._schema_error_detail_read.details - _schema.message = cls._schema_error_detail_read.message - _schema.target = cls._schema_error_detail_read.target - return - - cls._schema_error_detail_read = _schema_error_detail_read = AAZObjectType() - - error_detail_read = _schema_error_detail_read - error_detail_read.additional_info = AAZListType( - serialized_name="additionalInfo", - flags={"read_only": True}, - ) - error_detail_read.code = AAZStrType( - flags={"read_only": True}, - ) - error_detail_read.details = AAZListType( - flags={"read_only": True}, - ) - error_detail_read.message = AAZStrType( - flags={"read_only": True}, - ) - error_detail_read.target = AAZStrType( - flags={"read_only": True}, - ) - - additional_info = _schema_error_detail_read.additional_info - additional_info.Element = AAZObjectType() - - _element = _schema_error_detail_read.additional_info.Element - _element.info = AAZObjectType( - flags={"read_only": True}, - ) - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - details = _schema_error_detail_read.details - details.Element = AAZObjectType() - cls._build_schema_error_detail_read(details.Element) - - _schema.additional_info = cls._schema_error_detail_read.additional_info - _schema.code = cls._schema_error_detail_read.code - _schema.details = cls._schema_error_detail_read.details - _schema.message = cls._schema_error_detail_read.message - _schema.target = cls._schema_error_detail_read.target - - -__all__ = ["Reinstall"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_rollback.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_rollback.py deleted file mode 100644 index 982d85a8a4a..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_rollback.py +++ /dev/null @@ -1,258 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pccp rollback", -) -class Rollback(AAZCommand): - """Roll back the specified packet core control plane to the previous version, "rollbackVersion". Multiple consecutive rollbacks are not possible. This action may cause a service outage. - - :example: Rollback Packet Core Control Plane - az mobile-network pccp rollback --pccp-name pccp-name -g rg - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/rollback", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.PacketCoreControlPlanesRollback(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class PacketCoreControlPlanesRollback(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/rollback", - **self.url_parameters - ) - - @property - def method(self): - return "POST" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.end_time = AAZStrType( - serialized_name="endTime", - ) - _schema_on_200.error = AAZObjectType() - _RollbackHelper._build_schema_error_detail_read(_schema_on_200.error) - _schema_on_200.id = AAZStrType() - _schema_on_200.name = AAZStrType() - _schema_on_200.percent_complete = AAZFloatType( - serialized_name="percentComplete", - ) - _schema_on_200.properties = AAZObjectType() - _schema_on_200.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _schema_on_200.start_time = AAZStrType( - serialized_name="startTime", - ) - _schema_on_200.status = AAZStrType( - flags={"required": True}, - ) - - return cls._schema_on_200 - - -class _RollbackHelper: - """Helper class for Rollback""" - - _schema_error_detail_read = None - - @classmethod - def _build_schema_error_detail_read(cls, _schema): - if cls._schema_error_detail_read is not None: - _schema.additional_info = cls._schema_error_detail_read.additional_info - _schema.code = cls._schema_error_detail_read.code - _schema.details = cls._schema_error_detail_read.details - _schema.message = cls._schema_error_detail_read.message - _schema.target = cls._schema_error_detail_read.target - return - - cls._schema_error_detail_read = _schema_error_detail_read = AAZObjectType() - - error_detail_read = _schema_error_detail_read - error_detail_read.additional_info = AAZListType( - serialized_name="additionalInfo", - flags={"read_only": True}, - ) - error_detail_read.code = AAZStrType( - flags={"read_only": True}, - ) - error_detail_read.details = AAZListType( - flags={"read_only": True}, - ) - error_detail_read.message = AAZStrType( - flags={"read_only": True}, - ) - error_detail_read.target = AAZStrType( - flags={"read_only": True}, - ) - - additional_info = _schema_error_detail_read.additional_info - additional_info.Element = AAZObjectType() - - _element = _schema_error_detail_read.additional_info.Element - _element.info = AAZObjectType( - flags={"read_only": True}, - ) - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - details = _schema_error_detail_read.details - details.Element = AAZObjectType() - cls._build_schema_error_detail_read(details.Element) - - _schema.additional_info = cls._schema_error_detail_read.additional_info - _schema.code = cls._schema_error_detail_read.code - _schema.details = cls._schema_error_detail_read.details - _schema.message = cls._schema_error_detail_read.message - _schema.target = cls._schema_error_detail_read.target - - -__all__ = ["Rollback"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_show.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_show.py deleted file mode 100644 index 776b9dd2c2c..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_show.py +++ /dev/null @@ -1,436 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pccp show", -) -class Show(AAZCommand): - """Get information about the specified packet core control plane. - - :example: Show Packet Core Control Plane - az mobile-network pccp show -n pccp-name -g rg - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}", "2023-09-01"], - ] - } - - def _handler(self, command_args): - super()._handler(command_args) - self._execute_operations() - return self._output() - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["-n", "--name", "--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.PacketCoreControlPlanesGet(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class PacketCoreControlPlanesGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.identity = AAZObjectType() - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200.tags = AAZDictType() - _schema_on_200.type = AAZStrType( - flags={"read_only": True}, - ) - - identity = cls._schema_on_200.identity - identity.type = AAZStrType( - flags={"required": True}, - ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", - ) - - user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = cls._schema_on_200.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", - flags={"read_only": True}, - ) - _element.principal_id = AAZStrType( - serialized_name="principalId", - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties - properties.control_plane_access_interface = AAZObjectType( - serialized_name="controlPlaneAccessInterface", - flags={"required": True}, - ) - properties.control_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="controlPlaneAccessVirtualIpv4Addresses", - ) - properties.core_network_technology = AAZStrType( - serialized_name="coreNetworkTechnology", - ) - properties.diagnostics_upload = AAZObjectType( - serialized_name="diagnosticsUpload", - ) - properties.event_hub = AAZObjectType( - serialized_name="eventHub", - ) - properties.installation = AAZObjectType() - properties.installed_version = AAZStrType( - serialized_name="installedVersion", - flags={"read_only": True}, - ) - properties.interop_settings = AAZObjectType( - serialized_name="interopSettings", - ) - properties.local_diagnostics_access = AAZObjectType( - serialized_name="localDiagnosticsAccess", - flags={"required": True}, - ) - properties.platform = AAZObjectType( - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.rollback_version = AAZStrType( - serialized_name="rollbackVersion", - flags={"read_only": True}, - ) - properties.signaling = AAZObjectType() - properties.sites = AAZListType( - flags={"required": True}, - ) - properties.sku = AAZStrType( - flags={"required": True}, - ) - properties.ue_mtu = AAZIntType( - serialized_name="ueMtu", - ) - properties.version = AAZStrType() - - control_plane_access_interface = cls._schema_on_200.properties.control_plane_access_interface - control_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - control_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - control_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - control_plane_access_interface.name = AAZStrType() - - control_plane_access_virtual_ipv4_addresses = cls._schema_on_200.properties.control_plane_access_virtual_ipv4_addresses - control_plane_access_virtual_ipv4_addresses.Element = AAZStrType() - - diagnostics_upload = cls._schema_on_200.properties.diagnostics_upload - diagnostics_upload.storage_account_container_url = AAZStrType( - serialized_name="storageAccountContainerUrl", - flags={"required": True}, - ) - - event_hub = cls._schema_on_200.properties.event_hub - event_hub.id = AAZStrType( - flags={"required": True}, - ) - event_hub.reporting_interval = AAZIntType( - serialized_name="reportingInterval", - ) - - installation = cls._schema_on_200.properties.installation - installation.desired_state = AAZStrType( - serialized_name="desiredState", - ) - installation.operation = AAZObjectType() - installation.reasons = AAZListType( - flags={"read_only": True}, - ) - installation.reinstall_required = AAZStrType( - serialized_name="reinstallRequired", - ) - installation.state = AAZStrType() - - operation = cls._schema_on_200.properties.installation.operation - operation.id = AAZStrType( - flags={"required": True}, - ) - - reasons = cls._schema_on_200.properties.installation.reasons - reasons.Element = AAZStrType() - - local_diagnostics_access = cls._schema_on_200.properties.local_diagnostics_access - local_diagnostics_access.authentication_type = AAZStrType( - serialized_name="authenticationType", - flags={"required": True}, - ) - local_diagnostics_access.https_server_certificate = AAZObjectType( - serialized_name="httpsServerCertificate", - ) - - https_server_certificate = cls._schema_on_200.properties.local_diagnostics_access.https_server_certificate - https_server_certificate.certificate_url = AAZStrType( - serialized_name="certificateUrl", - flags={"required": True}, - ) - https_server_certificate.provisioning = AAZObjectType() - - provisioning = cls._schema_on_200.properties.local_diagnostics_access.https_server_certificate.provisioning - provisioning.reason = AAZStrType( - flags={"read_only": True}, - ) - provisioning.state = AAZStrType( - flags={"read_only": True}, - ) - - platform = cls._schema_on_200.properties.platform - platform.azure_stack_edge_device = AAZObjectType( - serialized_name="azureStackEdgeDevice", - ) - _ShowHelper._build_schema_azure_stack_edge_device_resource_id_read(platform.azure_stack_edge_device) - platform.azure_stack_edge_devices = AAZListType( - serialized_name="azureStackEdgeDevices", - flags={"read_only": True}, - ) - platform.azure_stack_hci_cluster = AAZObjectType( - serialized_name="azureStackHciCluster", - ) - platform.connected_cluster = AAZObjectType( - serialized_name="connectedCluster", - ) - platform.custom_location = AAZObjectType( - serialized_name="customLocation", - ) - platform.type = AAZStrType( - flags={"required": True}, - ) - - azure_stack_edge_devices = cls._schema_on_200.properties.platform.azure_stack_edge_devices - azure_stack_edge_devices.Element = AAZObjectType() - _ShowHelper._build_schema_azure_stack_edge_device_resource_id_read(azure_stack_edge_devices.Element) - - azure_stack_hci_cluster = cls._schema_on_200.properties.platform.azure_stack_hci_cluster - azure_stack_hci_cluster.id = AAZStrType( - flags={"required": True}, - ) - - connected_cluster = cls._schema_on_200.properties.platform.connected_cluster - connected_cluster.id = AAZStrType( - flags={"required": True}, - ) - - custom_location = cls._schema_on_200.properties.platform.custom_location - custom_location.id = AAZStrType( - flags={"required": True}, - ) - - signaling = cls._schema_on_200.properties.signaling - signaling.nas_reroute = AAZObjectType( - serialized_name="nasReroute", - ) - - nas_reroute = cls._schema_on_200.properties.signaling.nas_reroute - nas_reroute.macro_mme_group_id = AAZIntType( - serialized_name="macroMmeGroupId", - flags={"required": True}, - ) - - sites = cls._schema_on_200.properties.sites - sites.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.sites.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _ShowHelper: - """Helper class for Show""" - - _schema_azure_stack_edge_device_resource_id_read = None - - @classmethod - def _build_schema_azure_stack_edge_device_resource_id_read(cls, _schema): - if cls._schema_azure_stack_edge_device_resource_id_read is not None: - _schema.id = cls._schema_azure_stack_edge_device_resource_id_read.id - return - - cls._schema_azure_stack_edge_device_resource_id_read = _schema_azure_stack_edge_device_resource_id_read = AAZObjectType() - - azure_stack_edge_device_resource_id_read = _schema_azure_stack_edge_device_resource_id_read - azure_stack_edge_device_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_azure_stack_edge_device_resource_id_read.id - - -__all__ = ["Show"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_update.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_update.py deleted file mode 100644 index f8c06baaa67..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_update.py +++ /dev/null @@ -1,908 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pccp update", -) -class Update(AAZCommand): - """Update a packet core control plane. - - :example: Update Packet Core Control Plane tags - az mobile-network pccp update -n pccp-name -g rg --ue-mtu 1500 --tags "{tag:test,tag2:test2}" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - AZ_SUPPORT_GENERIC_UPDATE = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["-n", "--name", "--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.identity = AAZObjectArg( - options=["--identity"], - arg_group="Parameters", - help="The identity used to retrieve the ingress certificate from Azure key vault.", - nullable=True, - ) - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - nullable=True, - ) - - identity = cls._args_schema.identity - identity.type = AAZStrArg( - options=["type"], - help="Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).", - enum={"None": "None", "UserAssigned": "UserAssigned"}, - ) - identity.user_assigned_identities = AAZDictArg( - options=["user-assigned-identities"], - help="The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.", - nullable=True, - ) - - user_assigned_identities = cls._args_schema.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectArg( - nullable=True, - blank={}, - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg( - nullable=True, - ) - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.access_interface = AAZObjectArg( - options=["--access-interface"], - arg_group="Properties", - help="The control plane interface on the access network. For 5G networks, this is the N2 interface. For 4G networks, this is the S1-MME interface.", - ) - _args_schema.core_network_tec = AAZStrArg( - options=["--core-network-tec"], - arg_group="Properties", - help="The core network technology generation (5G core or EPC / 4G core).", - nullable=True, - enum={"5GC": "5GC", "EPC": "EPC", "EPC + 5GC": "EPC + 5GC"}, - ) - _args_schema.local_diagnostics = AAZObjectArg( - options=["--local-diagnostics"], - arg_group="Properties", - help="The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.", - ) - _args_schema.platform = AAZObjectArg( - options=["--platform"], - arg_group="Properties", - help="The platform where the packet core is deployed.", - ) - _args_schema.sites = AAZListArg( - options=["--sites"], - arg_group="Properties", - help="Site(s) under which this packet core control plane should be deployed. The sites must be in the same location as the packet core control plane.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.sku = AAZStrArg( - options=["--sku"], - arg_group="Properties", - help="The SKU defining the throughput and SIM allowances for this packet core control plane deployment.", - enum={"G0": "G0", "G1": "G1", "G10": "G10", "G2": "G2", "G5": "G5"}, - ) - _args_schema.ue_mtu = AAZIntArg( - options=["--ue-mtu"], - arg_group="Properties", - help="The MTU (in bytes) signaled to the UE. The same MTU is set on the user plane data links for all data networks. The MTU set on the user plane access link is calculated to be 60 bytes greater than this value to allow for GTP encapsulation.", - nullable=True, - fmt=AAZIntArgFormat( - maximum=1930, - minimum=1280, - ), - ) - _args_schema.version = AAZStrArg( - options=["--version"], - arg_group="Properties", - help="The version of the packet core software that is deployed.", - nullable=True, - ) - - access_interface = cls._args_schema.access_interface - access_interface.ipv4_address = AAZStrArg( - options=["ipv4-address"], - help="The IPv4 address.", - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - access_interface.ipv4_gateway = AAZStrArg( - options=["ipv4-gateway"], - help="The default IPv4 gateway (router).", - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - access_interface.ipv4_subnet = AAZStrArg( - options=["ipv4-subnet"], - help="The IPv4 subnet.", - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$", - ), - ) - access_interface.name = AAZStrArg( - options=["name"], - help="The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.", - nullable=True, - ) - - local_diagnostics = cls._args_schema.local_diagnostics - local_diagnostics.authentication_type = AAZStrArg( - options=["authentication-type"], - help="How to authenticate users who access local diagnostics APIs.", - enum={"AAD": "AAD", "Password": "Password"}, - ) - local_diagnostics.https_server_certificate = AAZObjectArg( - options=["https-server-certificate"], - help="The HTTPS server TLS certificate used to secure local access to diagnostics.", - nullable=True, - ) - - https_server_certificate = cls._args_schema.local_diagnostics.https_server_certificate - https_server_certificate.certificate_url = AAZStrArg( - options=["certificate-url"], - help="The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.", - ) - - platform = cls._args_schema.platform - platform.azure_stack_edge_device = AAZObjectArg( - options=["azure-stack-edge-device"], - help="The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.", - nullable=True, - ) - platform.azure_stack_hci_cluster = AAZObjectArg( - options=["azure-stack-hci-cluster"], - help="The Azure Stack HCI cluster where the packet core is deployed.", - nullable=True, - ) - platform.connected_cluster = AAZObjectArg( - options=["connected-cluster"], - help="Azure Arc connected cluster where the packet core is deployed.", - nullable=True, - ) - platform.custom_location = AAZObjectArg( - options=["custom-location"], - help="Azure Arc custom location where the packet core is deployed.", - nullable=True, - ) - platform.type = AAZStrArg( - options=["type"], - help="The platform type where packet core is deployed.", - enum={"3P-AZURE-STACK-HCI": "3P-AZURE-STACK-HCI", "AKS-HCI": "AKS-HCI"}, - ) - - azure_stack_edge_device = cls._args_schema.platform.azure_stack_edge_device - azure_stack_edge_device.id = AAZStrArg( - options=["id"], - help="Azure Stack Edge device resource ID.", - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[dD][aA][tT][aA][bB][oO][xX][eE][dD][gG][eE]/[dD][aA][tT][aA][bB][oO][xX][eE][dD][gG][eE][dD][eE][vV][iI][cC][eE][sS]/[^/?#]+$", - ), - ) - - azure_stack_hci_cluster = cls._args_schema.platform.azure_stack_hci_cluster - azure_stack_hci_cluster.id = AAZStrArg( - options=["id"], - help="Azure Stack HCI cluster resource ID.", - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[aA][zZ][uU][rR][eE][sS][tT][aA][cC][kK][hH][cC][iI]/[cC][lL][uU][sS][tT][eE][rR][sS]/[^/?#]+$", - ), - ) - - connected_cluster = cls._args_schema.platform.connected_cluster - connected_cluster.id = AAZStrArg( - options=["id"], - help="Azure Arc connected cluster resource ID.", - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[kK][uU][bB][eE][rR][nN][eE][tT][eE][sS]/[cC][oO][nN][nN][eE][cC][tT][eE][dD][cC][lL][uU][sS][tT][eE][rR][sS]/[^/?#]+$", - ), - ) - - custom_location = cls._args_schema.platform.custom_location - custom_location.id = AAZStrArg( - options=["id"], - help="Azure Arc custom location resource ID.", - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[eE][xX][tT][eE][nN][dD][eE][dD][lL][oO][cC][aA][tT][iI][oO][nN]/[cC][uU][sS][tT][oO][mM][lL][oO][cC][aA][tT][iI][oO][nN][sS]/[^/?#]+$", - ), - ) - - sites = cls._args_schema.sites - sites.Element = AAZObjectArg( - nullable=True, - ) - - _element = cls._args_schema.sites.Element - _element.id = AAZStrArg( - options=["id"], - help="Site resource ID.", - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[sS][iI][tT][eE][sS]/[^/?#]+$", - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.PacketCoreControlPlanesGet(ctx=self.ctx)() - self.pre_instance_update(self.ctx.vars.instance) - self.InstanceUpdateByJson(ctx=self.ctx)() - self.InstanceUpdateByGeneric(ctx=self.ctx)() - self.post_instance_update(self.ctx.vars.instance) - yield self.PacketCoreControlPlanesCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - @register_callback - def pre_instance_update(self, instance): - pass - - @register_callback - def post_instance_update(self, instance): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class PacketCoreControlPlanesGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_packet_core_control_plane_read(cls._schema_on_200) - - return cls._schema_on_200 - - class PacketCoreControlPlanesCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - value=self.ctx.vars.instance, - ) - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_packet_core_control_plane_read(cls._schema_on_200_201) - - return cls._schema_on_200_201 - - class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): - - def __call__(self, *args, **kwargs): - self._update_instance(self.ctx.vars.instance) - - def _update_instance(self, instance): - _instance_value, _builder = self.new_content_builder( - self.ctx.args, - value=instance, - typ=AAZObjectType - ) - _builder.set_prop("identity", AAZObjectType, ".identity") - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - identity = _builder.get(".identity") - if identity is not None: - identity.set_prop("type", AAZStrType, ".type", typ_kwargs={"flags": {"required": True}}) - identity.set_prop("userAssignedIdentities", AAZDictType, ".user_assigned_identities") - - user_assigned_identities = _builder.get(".identity.userAssignedIdentities") - if user_assigned_identities is not None: - user_assigned_identities.set_elements(AAZObjectType, ".") - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("controlPlaneAccessInterface", AAZObjectType, ".access_interface", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("coreNetworkTechnology", AAZStrType, ".core_network_tec") - properties.set_prop("localDiagnosticsAccess", AAZObjectType, ".local_diagnostics", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("platform", AAZObjectType, ".platform", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("sites", AAZListType, ".sites", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("sku", AAZStrType, ".sku", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("ueMtu", AAZIntType, ".ue_mtu") - properties.set_prop("version", AAZStrType, ".version") - - control_plane_access_interface = _builder.get(".properties.controlPlaneAccessInterface") - if control_plane_access_interface is not None: - control_plane_access_interface.set_prop("ipv4Address", AAZStrType, ".ipv4_address") - control_plane_access_interface.set_prop("ipv4Gateway", AAZStrType, ".ipv4_gateway") - control_plane_access_interface.set_prop("ipv4Subnet", AAZStrType, ".ipv4_subnet") - control_plane_access_interface.set_prop("name", AAZStrType, ".name") - - local_diagnostics_access = _builder.get(".properties.localDiagnosticsAccess") - if local_diagnostics_access is not None: - local_diagnostics_access.set_prop("authenticationType", AAZStrType, ".authentication_type", typ_kwargs={"flags": {"required": True}}) - local_diagnostics_access.set_prop("httpsServerCertificate", AAZObjectType, ".https_server_certificate") - - https_server_certificate = _builder.get(".properties.localDiagnosticsAccess.httpsServerCertificate") - if https_server_certificate is not None: - https_server_certificate.set_prop("certificateUrl", AAZStrType, ".certificate_url", typ_kwargs={"flags": {"required": True}}) - - platform = _builder.get(".properties.platform") - if platform is not None: - platform.set_prop("azureStackEdgeDevice", AAZObjectType, ".azure_stack_edge_device") - platform.set_prop("azureStackHciCluster", AAZObjectType, ".azure_stack_hci_cluster") - platform.set_prop("connectedCluster", AAZObjectType, ".connected_cluster") - platform.set_prop("customLocation", AAZObjectType, ".custom_location") - platform.set_prop("type", AAZStrType, ".type", typ_kwargs={"flags": {"required": True}}) - - azure_stack_edge_device = _builder.get(".properties.platform.azureStackEdgeDevice") - if azure_stack_edge_device is not None: - azure_stack_edge_device.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - azure_stack_hci_cluster = _builder.get(".properties.platform.azureStackHciCluster") - if azure_stack_hci_cluster is not None: - azure_stack_hci_cluster.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - connected_cluster = _builder.get(".properties.platform.connectedCluster") - if connected_cluster is not None: - connected_cluster.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - custom_location = _builder.get(".properties.platform.customLocation") - if custom_location is not None: - custom_location.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - sites = _builder.get(".properties.sites") - if sites is not None: - sites.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.sites[]") - if _elements is not None: - _elements.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return _instance_value - - class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): - - def __call__(self, *args, **kwargs): - self._update_instance_by_generic( - self.ctx.vars.instance, - self.ctx.generic_update_args - ) - - -class _UpdateHelper: - """Helper class for Update""" - - _schema_azure_stack_edge_device_resource_id_read = None - - @classmethod - def _build_schema_azure_stack_edge_device_resource_id_read(cls, _schema): - if cls._schema_azure_stack_edge_device_resource_id_read is not None: - _schema.id = cls._schema_azure_stack_edge_device_resource_id_read.id - return - - cls._schema_azure_stack_edge_device_resource_id_read = _schema_azure_stack_edge_device_resource_id_read = AAZObjectType() - - azure_stack_edge_device_resource_id_read = _schema_azure_stack_edge_device_resource_id_read - azure_stack_edge_device_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_azure_stack_edge_device_resource_id_read.id - - _schema_packet_core_control_plane_read = None - - @classmethod - def _build_schema_packet_core_control_plane_read(cls, _schema): - if cls._schema_packet_core_control_plane_read is not None: - _schema.id = cls._schema_packet_core_control_plane_read.id - _schema.identity = cls._schema_packet_core_control_plane_read.identity - _schema.location = cls._schema_packet_core_control_plane_read.location - _schema.name = cls._schema_packet_core_control_plane_read.name - _schema.properties = cls._schema_packet_core_control_plane_read.properties - _schema.system_data = cls._schema_packet_core_control_plane_read.system_data - _schema.tags = cls._schema_packet_core_control_plane_read.tags - _schema.type = cls._schema_packet_core_control_plane_read.type - return - - cls._schema_packet_core_control_plane_read = _schema_packet_core_control_plane_read = AAZObjectType() - - packet_core_control_plane_read = _schema_packet_core_control_plane_read - packet_core_control_plane_read.id = AAZStrType( - flags={"read_only": True}, - ) - packet_core_control_plane_read.identity = AAZObjectType() - packet_core_control_plane_read.location = AAZStrType( - flags={"required": True}, - ) - packet_core_control_plane_read.name = AAZStrType( - flags={"read_only": True}, - ) - packet_core_control_plane_read.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - packet_core_control_plane_read.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - packet_core_control_plane_read.tags = AAZDictType() - packet_core_control_plane_read.type = AAZStrType( - flags={"read_only": True}, - ) - - identity = _schema_packet_core_control_plane_read.identity - identity.type = AAZStrType( - flags={"required": True}, - ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", - ) - - user_assigned_identities = _schema_packet_core_control_plane_read.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = _schema_packet_core_control_plane_read.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", - flags={"read_only": True}, - ) - _element.principal_id = AAZStrType( - serialized_name="principalId", - flags={"read_only": True}, - ) - - properties = _schema_packet_core_control_plane_read.properties - properties.control_plane_access_interface = AAZObjectType( - serialized_name="controlPlaneAccessInterface", - flags={"required": True}, - ) - properties.control_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="controlPlaneAccessVirtualIpv4Addresses", - ) - properties.core_network_technology = AAZStrType( - serialized_name="coreNetworkTechnology", - ) - properties.diagnostics_upload = AAZObjectType( - serialized_name="diagnosticsUpload", - ) - properties.event_hub = AAZObjectType( - serialized_name="eventHub", - ) - properties.installation = AAZObjectType() - properties.installed_version = AAZStrType( - serialized_name="installedVersion", - flags={"read_only": True}, - ) - properties.interop_settings = AAZObjectType( - serialized_name="interopSettings", - ) - properties.local_diagnostics_access = AAZObjectType( - serialized_name="localDiagnosticsAccess", - flags={"required": True}, - ) - properties.platform = AAZObjectType( - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.rollback_version = AAZStrType( - serialized_name="rollbackVersion", - flags={"read_only": True}, - ) - properties.signaling = AAZObjectType() - properties.sites = AAZListType( - flags={"required": True}, - ) - properties.sku = AAZStrType( - flags={"required": True}, - ) - properties.ue_mtu = AAZIntType( - serialized_name="ueMtu", - ) - properties.version = AAZStrType() - - control_plane_access_interface = _schema_packet_core_control_plane_read.properties.control_plane_access_interface - control_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - control_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - control_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - control_plane_access_interface.name = AAZStrType() - - control_plane_access_virtual_ipv4_addresses = _schema_packet_core_control_plane_read.properties.control_plane_access_virtual_ipv4_addresses - control_plane_access_virtual_ipv4_addresses.Element = AAZStrType() - - diagnostics_upload = _schema_packet_core_control_plane_read.properties.diagnostics_upload - diagnostics_upload.storage_account_container_url = AAZStrType( - serialized_name="storageAccountContainerUrl", - flags={"required": True}, - ) - - event_hub = _schema_packet_core_control_plane_read.properties.event_hub - event_hub.id = AAZStrType( - flags={"required": True}, - ) - event_hub.reporting_interval = AAZIntType( - serialized_name="reportingInterval", - ) - - installation = _schema_packet_core_control_plane_read.properties.installation - installation.desired_state = AAZStrType( - serialized_name="desiredState", - ) - installation.operation = AAZObjectType() - installation.reasons = AAZListType( - flags={"read_only": True}, - ) - installation.reinstall_required = AAZStrType( - serialized_name="reinstallRequired", - ) - installation.state = AAZStrType() - - operation = _schema_packet_core_control_plane_read.properties.installation.operation - operation.id = AAZStrType( - flags={"required": True}, - ) - - reasons = _schema_packet_core_control_plane_read.properties.installation.reasons - reasons.Element = AAZStrType() - - local_diagnostics_access = _schema_packet_core_control_plane_read.properties.local_diagnostics_access - local_diagnostics_access.authentication_type = AAZStrType( - serialized_name="authenticationType", - flags={"required": True}, - ) - local_diagnostics_access.https_server_certificate = AAZObjectType( - serialized_name="httpsServerCertificate", - ) - - https_server_certificate = _schema_packet_core_control_plane_read.properties.local_diagnostics_access.https_server_certificate - https_server_certificate.certificate_url = AAZStrType( - serialized_name="certificateUrl", - flags={"required": True}, - ) - https_server_certificate.provisioning = AAZObjectType() - - provisioning = _schema_packet_core_control_plane_read.properties.local_diagnostics_access.https_server_certificate.provisioning - provisioning.reason = AAZStrType( - flags={"read_only": True}, - ) - provisioning.state = AAZStrType( - flags={"read_only": True}, - ) - - platform = _schema_packet_core_control_plane_read.properties.platform - platform.azure_stack_edge_device = AAZObjectType( - serialized_name="azureStackEdgeDevice", - ) - cls._build_schema_azure_stack_edge_device_resource_id_read(platform.azure_stack_edge_device) - platform.azure_stack_edge_devices = AAZListType( - serialized_name="azureStackEdgeDevices", - flags={"read_only": True}, - ) - platform.azure_stack_hci_cluster = AAZObjectType( - serialized_name="azureStackHciCluster", - ) - platform.connected_cluster = AAZObjectType( - serialized_name="connectedCluster", - ) - platform.custom_location = AAZObjectType( - serialized_name="customLocation", - ) - platform.type = AAZStrType( - flags={"required": True}, - ) - - azure_stack_edge_devices = _schema_packet_core_control_plane_read.properties.platform.azure_stack_edge_devices - azure_stack_edge_devices.Element = AAZObjectType() - cls._build_schema_azure_stack_edge_device_resource_id_read(azure_stack_edge_devices.Element) - - azure_stack_hci_cluster = _schema_packet_core_control_plane_read.properties.platform.azure_stack_hci_cluster - azure_stack_hci_cluster.id = AAZStrType( - flags={"required": True}, - ) - - connected_cluster = _schema_packet_core_control_plane_read.properties.platform.connected_cluster - connected_cluster.id = AAZStrType( - flags={"required": True}, - ) - - custom_location = _schema_packet_core_control_plane_read.properties.platform.custom_location - custom_location.id = AAZStrType( - flags={"required": True}, - ) - - signaling = _schema_packet_core_control_plane_read.properties.signaling - signaling.nas_reroute = AAZObjectType( - serialized_name="nasReroute", - ) - - nas_reroute = _schema_packet_core_control_plane_read.properties.signaling.nas_reroute - nas_reroute.macro_mme_group_id = AAZIntType( - serialized_name="macroMmeGroupId", - flags={"required": True}, - ) - - sites = _schema_packet_core_control_plane_read.properties.sites - sites.Element = AAZObjectType() - - _element = _schema_packet_core_control_plane_read.properties.sites.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = _schema_packet_core_control_plane_read.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = _schema_packet_core_control_plane_read.tags - tags.Element = AAZStrType() - - _schema.id = cls._schema_packet_core_control_plane_read.id - _schema.identity = cls._schema_packet_core_control_plane_read.identity - _schema.location = cls._schema_packet_core_control_plane_read.location - _schema.name = cls._schema_packet_core_control_plane_read.name - _schema.properties = cls._schema_packet_core_control_plane_read.properties - _schema.system_data = cls._schema_packet_core_control_plane_read.system_data - _schema.tags = cls._schema_packet_core_control_plane_read.tags - _schema.type = cls._schema_packet_core_control_plane_read.type - - -__all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_wait.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_wait.py deleted file mode 100644 index 71b50956dd5..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_wait.py +++ /dev/null @@ -1,432 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pccp wait", -) -class Wait(AAZWaitCommand): - """Place the CLI in a waiting state until a condition is met. - """ - - _aaz_info = { - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}", "2023-09-01"], - ] - } - - def _handler(self, command_args): - super()._handler(command_args) - self._execute_operations() - return self._output() - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["-n", "--name", "--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.PacketCoreControlPlanesGet(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) - return result - - class PacketCoreControlPlanesGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.identity = AAZObjectType() - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200.tags = AAZDictType() - _schema_on_200.type = AAZStrType( - flags={"read_only": True}, - ) - - identity = cls._schema_on_200.identity - identity.type = AAZStrType( - flags={"required": True}, - ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", - ) - - user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = cls._schema_on_200.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", - flags={"read_only": True}, - ) - _element.principal_id = AAZStrType( - serialized_name="principalId", - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties - properties.control_plane_access_interface = AAZObjectType( - serialized_name="controlPlaneAccessInterface", - flags={"required": True}, - ) - properties.control_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="controlPlaneAccessVirtualIpv4Addresses", - ) - properties.core_network_technology = AAZStrType( - serialized_name="coreNetworkTechnology", - ) - properties.diagnostics_upload = AAZObjectType( - serialized_name="diagnosticsUpload", - ) - properties.event_hub = AAZObjectType( - serialized_name="eventHub", - ) - properties.installation = AAZObjectType() - properties.installed_version = AAZStrType( - serialized_name="installedVersion", - flags={"read_only": True}, - ) - properties.interop_settings = AAZObjectType( - serialized_name="interopSettings", - ) - properties.local_diagnostics_access = AAZObjectType( - serialized_name="localDiagnosticsAccess", - flags={"required": True}, - ) - properties.platform = AAZObjectType( - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.rollback_version = AAZStrType( - serialized_name="rollbackVersion", - flags={"read_only": True}, - ) - properties.signaling = AAZObjectType() - properties.sites = AAZListType( - flags={"required": True}, - ) - properties.sku = AAZStrType( - flags={"required": True}, - ) - properties.ue_mtu = AAZIntType( - serialized_name="ueMtu", - ) - properties.version = AAZStrType() - - control_plane_access_interface = cls._schema_on_200.properties.control_plane_access_interface - control_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - control_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - control_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - control_plane_access_interface.name = AAZStrType() - - control_plane_access_virtual_ipv4_addresses = cls._schema_on_200.properties.control_plane_access_virtual_ipv4_addresses - control_plane_access_virtual_ipv4_addresses.Element = AAZStrType() - - diagnostics_upload = cls._schema_on_200.properties.diagnostics_upload - diagnostics_upload.storage_account_container_url = AAZStrType( - serialized_name="storageAccountContainerUrl", - flags={"required": True}, - ) - - event_hub = cls._schema_on_200.properties.event_hub - event_hub.id = AAZStrType( - flags={"required": True}, - ) - event_hub.reporting_interval = AAZIntType( - serialized_name="reportingInterval", - ) - - installation = cls._schema_on_200.properties.installation - installation.desired_state = AAZStrType( - serialized_name="desiredState", - ) - installation.operation = AAZObjectType() - installation.reasons = AAZListType( - flags={"read_only": True}, - ) - installation.reinstall_required = AAZStrType( - serialized_name="reinstallRequired", - ) - installation.state = AAZStrType() - - operation = cls._schema_on_200.properties.installation.operation - operation.id = AAZStrType( - flags={"required": True}, - ) - - reasons = cls._schema_on_200.properties.installation.reasons - reasons.Element = AAZStrType() - - local_diagnostics_access = cls._schema_on_200.properties.local_diagnostics_access - local_diagnostics_access.authentication_type = AAZStrType( - serialized_name="authenticationType", - flags={"required": True}, - ) - local_diagnostics_access.https_server_certificate = AAZObjectType( - serialized_name="httpsServerCertificate", - ) - - https_server_certificate = cls._schema_on_200.properties.local_diagnostics_access.https_server_certificate - https_server_certificate.certificate_url = AAZStrType( - serialized_name="certificateUrl", - flags={"required": True}, - ) - https_server_certificate.provisioning = AAZObjectType() - - provisioning = cls._schema_on_200.properties.local_diagnostics_access.https_server_certificate.provisioning - provisioning.reason = AAZStrType( - flags={"read_only": True}, - ) - provisioning.state = AAZStrType( - flags={"read_only": True}, - ) - - platform = cls._schema_on_200.properties.platform - platform.azure_stack_edge_device = AAZObjectType( - serialized_name="azureStackEdgeDevice", - ) - _WaitHelper._build_schema_azure_stack_edge_device_resource_id_read(platform.azure_stack_edge_device) - platform.azure_stack_edge_devices = AAZListType( - serialized_name="azureStackEdgeDevices", - flags={"read_only": True}, - ) - platform.azure_stack_hci_cluster = AAZObjectType( - serialized_name="azureStackHciCluster", - ) - platform.connected_cluster = AAZObjectType( - serialized_name="connectedCluster", - ) - platform.custom_location = AAZObjectType( - serialized_name="customLocation", - ) - platform.type = AAZStrType( - flags={"required": True}, - ) - - azure_stack_edge_devices = cls._schema_on_200.properties.platform.azure_stack_edge_devices - azure_stack_edge_devices.Element = AAZObjectType() - _WaitHelper._build_schema_azure_stack_edge_device_resource_id_read(azure_stack_edge_devices.Element) - - azure_stack_hci_cluster = cls._schema_on_200.properties.platform.azure_stack_hci_cluster - azure_stack_hci_cluster.id = AAZStrType( - flags={"required": True}, - ) - - connected_cluster = cls._schema_on_200.properties.platform.connected_cluster - connected_cluster.id = AAZStrType( - flags={"required": True}, - ) - - custom_location = cls._schema_on_200.properties.platform.custom_location - custom_location.id = AAZStrType( - flags={"required": True}, - ) - - signaling = cls._schema_on_200.properties.signaling - signaling.nas_reroute = AAZObjectType( - serialized_name="nasReroute", - ) - - nas_reroute = cls._schema_on_200.properties.signaling.nas_reroute - nas_reroute.macro_mme_group_id = AAZIntType( - serialized_name="macroMmeGroupId", - flags={"required": True}, - ) - - sites = cls._schema_on_200.properties.sites - sites.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.sites.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _WaitHelper: - """Helper class for Wait""" - - _schema_azure_stack_edge_device_resource_id_read = None - - @classmethod - def _build_schema_azure_stack_edge_device_resource_id_read(cls, _schema): - if cls._schema_azure_stack_edge_device_resource_id_read is not None: - _schema.id = cls._schema_azure_stack_edge_device_resource_id_read.id - return - - cls._schema_azure_stack_edge_device_resource_id_read = _schema_azure_stack_edge_device_resource_id_read = AAZObjectType() - - azure_stack_edge_device_resource_id_read = _schema_azure_stack_edge_device_resource_id_read - azure_stack_edge_device_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_azure_stack_edge_device_resource_id_read.id - - -__all__ = ["Wait"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/__cmd_group.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/__cmd_group.py deleted file mode 100644 index d02495eba80..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/__cmd_group.py +++ /dev/null @@ -1,23 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command_group( - "mobile-network pccp version", -) -class __CMDGroup(AAZCommandGroup): - """Manage packet core control plane version - """ - pass - - -__all__ = ["__CMDGroup"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/_list.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/_list.py deleted file mode 100644 index 7ac0c74eeb2..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/_list.py +++ /dev/null @@ -1,202 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pccp version list", -) -class List(AAZCommand): - """List all supported packet core control planes versions. - - :example: List Packet Core Control Plane version - az mobile-network pccp version list - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/providers/microsoft.mobilenetwork/packetcorecontrolplaneversions", "2023-09-01"], - ] - } - - AZ_SUPPORT_PAGINATION = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_paging(self._execute_operations, self._output) - - def _execute_operations(self): - self.pre_operations() - self.PacketCoreControlPlaneVersionsList(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) - next_link = self.deserialize_output(self.ctx.vars.instance.next_link) - return result, next_link - - class PacketCoreControlPlaneVersionsList(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.next_link = AAZStrType( - serialized_name="nextLink", - flags={"read_only": True}, - ) - _schema_on_200.value = AAZListType() - - value = cls._schema_on_200.value - value.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.value.Element.properties - properties.platforms = AAZListType() - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - - platforms = cls._schema_on_200.value.Element.properties.platforms - platforms.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.platforms.Element - _element.maximum_platform_software_version = AAZStrType( - serialized_name="maximumPlatformSoftwareVersion", - ) - _element.minimum_platform_software_version = AAZStrType( - serialized_name="minimumPlatformSoftwareVersion", - ) - _element.obsolete_version = AAZStrType( - serialized_name="obsoleteVersion", - ) - _element.platform_type = AAZStrType( - serialized_name="platformType", - ) - _element.recommended_version = AAZStrType( - serialized_name="recommendedVersion", - ) - _element.version_state = AAZStrType( - serialized_name="versionState", - ) - - system_data = cls._schema_on_200.value.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - return cls._schema_on_200 - - -class _ListHelper: - """Helper class for List""" - - -__all__ = ["List"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_create.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_create.py deleted file mode 100644 index 80bc632672c..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_create.py +++ /dev/null @@ -1,356 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pcdp create", -) -class Create(AAZCommand): - """Create a packet core data plane. - - :example: Create Packet Core Data Plane - az mobile-network pcdp create -n pcdp-name -g rg --pccp-name pccp-name --access-interface "{name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.pcdp_name = AAZStrArg( - options=["-n", "--name", "--pcdp-name"], - help="The name of the packet core data plane.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.location = AAZResourceLocationArg( - arg_group="Parameters", - help="The geo-location where the resource lives", - required=True, - fmt=AAZResourceLocationArgFormat( - resource_group_arg="resource_group", - ), - ) - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg() - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.access_interface = AAZObjectArg( - options=["--access-interface"], - arg_group="Properties", - help="The user plane interface on the access network. For 5G networks, this is the N3 interface. For 4G networks, this is the S1-U interface.", - required=True, - ) - - access_interface = cls._args_schema.access_interface - access_interface.ipv4_address = AAZStrArg( - options=["ipv4-address"], - help="The IPv4 address.", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - access_interface.ipv4_gateway = AAZStrArg( - options=["ipv4-gateway"], - help="The default IPv4 gateway (router).", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - access_interface.ipv4_subnet = AAZStrArg( - options=["ipv4-subnet"], - help="The IPv4 subnet.", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$", - ), - ) - access_interface.name = AAZStrArg( - options=["name"], - help="The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.", - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.PacketCoreDataPlanesCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class PacketCoreDataPlanesCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("userPlaneAccessInterface", AAZObjectType, ".access_interface", typ_kwargs={"flags": {"required": True}}) - - user_plane_access_interface = _builder.get(".properties.userPlaneAccessInterface") - if user_plane_access_interface is not None: - user_plane_access_interface.set_prop("ipv4Address", AAZStrType, ".ipv4_address") - user_plane_access_interface.set_prop("ipv4Gateway", AAZStrType, ".ipv4_gateway") - user_plane_access_interface.set_prop("ipv4Subnet", AAZStrType, ".ipv4_subnet") - user_plane_access_interface.set_prop("name", AAZStrType, ".name") - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - - _schema_on_200_201 = cls._schema_on_200_201 - _schema_on_200_201.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200_201.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200_201.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200_201.tags = AAZDictType() - _schema_on_200_201.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200_201.properties - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.user_plane_access_interface = AAZObjectType( - serialized_name="userPlaneAccessInterface", - flags={"required": True}, - ) - properties.user_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="userPlaneAccessVirtualIpv4Addresses", - ) - - user_plane_access_interface = cls._schema_on_200_201.properties.user_plane_access_interface - user_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - user_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - user_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - user_plane_access_interface.name = AAZStrType() - - user_plane_access_virtual_ipv4_addresses = cls._schema_on_200_201.properties.user_plane_access_virtual_ipv4_addresses - user_plane_access_virtual_ipv4_addresses.Element = AAZStrType() - - system_data = cls._schema_on_200_201.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200_201.tags - tags.Element = AAZStrType() - - return cls._schema_on_200_201 - - -class _CreateHelper: - """Helper class for Create""" - - -__all__ = ["Create"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_delete.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_delete.py deleted file mode 100644 index 78f2d1c42cb..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_delete.py +++ /dev/null @@ -1,181 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pcdp delete", - confirmation="Are you sure you want to perform this operation?", -) -class Delete(AAZCommand): - """Delete the specified packet core data plane. - - :example: Delete Packet Core Data Plane - az mobile-network pcdp delete -g rg -n pcdp-name --pccp-name pccp-name -y - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, None) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.pcdp_name = AAZStrArg( - options=["-n", "--name", "--pcdp-name"], - help="The name of the packet core data plane.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.PacketCoreDataPlanesDelete(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - class PacketCoreDataPlanesDelete(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [204]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_204, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}", - **self.url_parameters - ) - - @property - def method(self): - return "DELETE" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - def on_200(self, session): - pass - - def on_204(self, session): - pass - - -class _DeleteHelper: - """Helper class for Delete""" - - -__all__ = ["Delete"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_update.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_update.py deleted file mode 100644 index 3b3e3d0ad48..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_update.py +++ /dev/null @@ -1,283 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pcdp update", -) -class Update(AAZCommand): - """Update packet core data planes tags. - - :example: Update Packet Core Data Plane - az mobile-network pcdp update -n pcdp_name -g rg --pccp-name pccp-name --tags "{tag:test,tag2:test2}" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}", "2023-09-01"], - ] - } - - def _handler(self, command_args): - super()._handler(command_args) - self._execute_operations() - return self._output() - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.pcdp_name = AAZStrArg( - options=["-n", "--name", "--pcdp-name"], - help="The name of the packet core data plane.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg() - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.PacketCoreDataPlanesUpdateTags(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class PacketCoreDataPlanesUpdateTags(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}", - **self.url_parameters - ) - - @property - def method(self): - return "PATCH" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("tags", AAZDictType, ".tags") - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return self.serialize_content(_content_value) - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200.tags = AAZDictType() - _schema_on_200.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.user_plane_access_interface = AAZObjectType( - serialized_name="userPlaneAccessInterface", - flags={"required": True}, - ) - properties.user_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="userPlaneAccessVirtualIpv4Addresses", - ) - - user_plane_access_interface = cls._schema_on_200.properties.user_plane_access_interface - user_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - user_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - user_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - user_plane_access_interface.name = AAZStrType() - - user_plane_access_virtual_ipv4_addresses = cls._schema_on_200.properties.user_plane_access_virtual_ipv4_addresses - user_plane_access_virtual_ipv4_addresses.Element = AAZStrType() - - system_data = cls._schema_on_200.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _UpdateHelper: - """Helper class for Update""" - - -__all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_wait.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_wait.py deleted file mode 100644 index 605e65569c2..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_wait.py +++ /dev/null @@ -1,249 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network pcdp wait", -) -class Wait(AAZWaitCommand): - """Place the CLI in a waiting state until a condition is met. - """ - - _aaz_info = { - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}", "2023-09-01"], - ] - } - - def _handler(self, command_args): - super()._handler(command_args) - self._execute_operations() - return self._output() - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.pcdp_name = AAZStrArg( - options=["-n", "--name", "--pcdp-name"], - help="The name of the packet core data plane.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.PacketCoreDataPlanesGet(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) - return result - - class PacketCoreDataPlanesGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200.tags = AAZDictType() - _schema_on_200.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.user_plane_access_interface = AAZObjectType( - serialized_name="userPlaneAccessInterface", - flags={"required": True}, - ) - properties.user_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="userPlaneAccessVirtualIpv4Addresses", - ) - - user_plane_access_interface = cls._schema_on_200.properties.user_plane_access_interface - user_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - user_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", - ) - user_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", - ) - user_plane_access_interface.name = AAZStrType() - - user_plane_access_virtual_ipv4_addresses = cls._schema_on_200.properties.user_plane_access_virtual_ipv4_addresses - user_plane_access_virtual_ipv4_addresses.Element = AAZStrType() - - system_data = cls._schema_on_200.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _WaitHelper: - """Helper class for Wait""" - - -__all__ = ["Wait"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_create.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_create.py deleted file mode 100644 index d405923b15e..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_create.py +++ /dev/null @@ -1,721 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network service create", -) -class Create(AAZCommand): - """Create a service. - - :example: Create service - az mobile-network service create -n service-name -g rg --mobile-network-name mobile-network-name --pcc-rules "[{ruleName:default-rule,rulePrecedence:10,serviceDataFlowTemplates:[{templateName:IP-to-server,direction:Uplink,protocol:[ip],remoteIpList:[10.3.4.0/24]}]}]" --service-precedence 10 - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/services/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.service_name = AAZStrArg( - options=["-n", "--name", "--service-name"], - help="The name of the service. You must not use any of the following reserved strings - `default`, `requested` or `service`", - required=True, - fmt=AAZStrArgFormat( - pattern="^(?!(default|requested|service)$)[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.location = AAZResourceLocationArg( - arg_group="Parameters", - help="The geo-location where the resource lives", - required=True, - fmt=AAZResourceLocationArgFormat( - resource_group_arg="resource_group", - ), - ) - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg() - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.pcc_rules = AAZListArg( - options=["--pcc-rules"], - arg_group="Properties", - help="The set of data flow policy rules that make up this service.", - required=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.service_precedence = AAZIntArg( - options=["--service-precedence"], - arg_group="Properties", - help="A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network.", - required=True, - fmt=AAZIntArgFormat( - maximum=255, - minimum=0, - ), - ) - _args_schema.service_qos_policy = AAZObjectArg( - options=["--service-qos-policy"], - arg_group="Properties", - help="The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a PccRuleConfiguration. If this field is null then the UE's SIM policy will define the QoS settings.", - ) - - pcc_rules = cls._args_schema.pcc_rules - pcc_rules.Element = AAZObjectArg() - - _element = cls._args_schema.pcc_rules.Element - _element.rule_name = AAZStrArg( - options=["rule-name"], - help="The name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - `default`, `requested` or `service`.", - required=True, - fmt=AAZStrArgFormat( - pattern="^(?!(default|requested|service)$)[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _element.rule_precedence = AAZIntArg( - options=["rule-precedence"], - help="A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network.", - required=True, - fmt=AAZIntArgFormat( - maximum=255, - minimum=0, - ), - ) - _element.rule_qos_policy = AAZObjectArg( - options=["rule-qos-policy"], - help="The QoS policy to use for packets matching this rule. If this field is null then the parent service will define the QoS settings.", - ) - _element.service_data_flow_templates = AAZListArg( - options=["service-data-flow-templates"], - help="The set of data flow templates to use for this data flow policy rule.", - required=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.traffic_control = AAZStrArg( - options=["traffic-control"], - help="Determines whether flows that match this data flow policy rule are permitted.", - default="Enabled", - enum={"Blocked": "Blocked", "Enabled": "Enabled"}, - ) - - rule_qos_policy = cls._args_schema.pcc_rules.Element.rule_qos_policy - rule_qos_policy.five_qi = AAZIntArg( - options=["five-qi"], - help="QoS Flow 5G QoS Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. This must not be a standardized 5QI value corresponding to a GBR (guaranteed bit rate) QoS Flow. The illegal GBR 5QI values are: 1, 2, 3, 4, 65, 66, 67, 71, 72, 73, 74, 75, 76, 82, 83, 84, and 85. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition of which are the GBR 5QI values.", - default=9, - fmt=AAZIntArgFormat( - maximum=127, - minimum=1, - ), - ) - rule_qos_policy.allocation_and_retention_priority_level = AAZIntArg( - options=["allocation-and-retention-priority-level"], - help="QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - default=9, - fmt=AAZIntArgFormat( - maximum=15, - minimum=1, - ), - ) - rule_qos_policy.guaranteed_bit_rate = AAZObjectArg( - options=["guaranteed-bit-rate"], - help="The guaranteed bit rate (GBR) for all service data flows that use this data flow policy rule. This is an optional setting. If you do not provide a value, there will be no GBR set for the data flow policy rule that uses this QoS definition.", - ) - cls._build_args_ambr_create(rule_qos_policy.guaranteed_bit_rate) - rule_qos_policy.maximum_bit_rate = AAZObjectArg( - options=["maximum-bit-rate"], - help="The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.", - required=True, - ) - cls._build_args_ambr_create(rule_qos_policy.maximum_bit_rate) - rule_qos_policy.preemption_capability = AAZStrArg( - options=["preemption-capability"], - help="QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - default="NotPreempt", - enum={"MayPreempt": "MayPreempt", "NotPreempt": "NotPreempt"}, - ) - rule_qos_policy.preemption_vulnerability = AAZStrArg( - options=["preemption-vulnerability"], - help="QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - default="Preemptable", - enum={"NotPreemptable": "NotPreemptable", "Preemptable": "Preemptable"}, - ) - - service_data_flow_templates = cls._args_schema.pcc_rules.Element.service_data_flow_templates - service_data_flow_templates.Element = AAZObjectArg() - - _element = cls._args_schema.pcc_rules.Element.service_data_flow_templates.Element - _element.direction = AAZStrArg( - options=["direction"], - help="The direction of this flow.", - required=True, - enum={"Bidirectional": "Bidirectional", "Downlink": "Downlink", "Uplink": "Uplink"}, - ) - _element.ports = AAZListArg( - options=["ports"], - help="The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than `ip` in the `protocol` field. This is an optional setting. If you do not specify it then connections will be allowed on all ports. Port ranges must be specified as -. For example: [`8080`, `8082-8085`].", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.protocol = AAZListArg( - options=["protocol"], - help="A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value `ip`. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value `ip` then you must leave the field `port` unspecified.", - required=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.remote_ip_list = AAZListArg( - options=["remote-ip-list"], - help="The remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value `any`. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).", - required=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.template_name = AAZStrArg( - options=["template-name"], - help="The name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - `default`, `requested` or `service`.", - required=True, - fmt=AAZStrArgFormat( - pattern="^(?!(default|requested|service)$)[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - - ports = cls._args_schema.pcc_rules.Element.service_data_flow_templates.Element.ports - ports.Element = AAZStrArg( - fmt=AAZStrArgFormat( - pattern="^([1-9]|[1-9][0-9]{1,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])(-([1-9]|[1-9][0-9]{1,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5]))?$", - ), - ) - - protocol = cls._args_schema.pcc_rules.Element.service_data_flow_templates.Element.protocol - protocol.Element = AAZStrArg( - fmt=AAZStrArgFormat( - pattern="^(ip|[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - - remote_ip_list = cls._args_schema.pcc_rules.Element.service_data_flow_templates.Element.remote_ip_list - remote_ip_list.Element = AAZStrArg( - fmt=AAZStrArgFormat( - pattern="^(any|(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2])))$", - ), - ) - - service_qos_policy = cls._args_schema.service_qos_policy - service_qos_policy.five_qi = AAZIntArg( - options=["five-qi"], - help="QoS Flow 5G QoS Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. This must not be a standardized 5QI value corresponding to a GBR (guaranteed bit rate) QoS Flow. The illegal GBR 5QI values are: 1, 2, 3, 4, 65, 66, 67, 71, 72, 73, 74, 75, 76, 82, 83, 84, and 85. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition of which are the GBR 5QI values.", - default=9, - fmt=AAZIntArgFormat( - maximum=127, - minimum=1, - ), - ) - service_qos_policy.allocation_and_retention_priority_level = AAZIntArg( - options=["allocation-and-retention-priority-level"], - help="QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - default=9, - fmt=AAZIntArgFormat( - maximum=15, - minimum=1, - ), - ) - service_qos_policy.maximum_bit_rate = AAZObjectArg( - options=["maximum-bit-rate"], - help="The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.", - required=True, - ) - cls._build_args_ambr_create(service_qos_policy.maximum_bit_rate) - service_qos_policy.preemption_capability = AAZStrArg( - options=["preemption-capability"], - help="QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - default="NotPreempt", - enum={"MayPreempt": "MayPreempt", "NotPreempt": "NotPreempt"}, - ) - service_qos_policy.preemption_vulnerability = AAZStrArg( - options=["preemption-vulnerability"], - help="QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - default="Preemptable", - enum={"NotPreemptable": "NotPreemptable", "Preemptable": "Preemptable"}, - ) - return cls._args_schema - - _args_ambr_create = None - - @classmethod - def _build_args_ambr_create(cls, _schema): - if cls._args_ambr_create is not None: - _schema.downlink = cls._args_ambr_create.downlink - _schema.uplink = cls._args_ambr_create.uplink - return - - cls._args_ambr_create = AAZObjectArg() - - ambr_create = cls._args_ambr_create - ambr_create.downlink = AAZStrArg( - options=["downlink"], - help="Downlink bit rate.", - required=True, - fmt=AAZStrArgFormat( - pattern="^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$", - ), - ) - ambr_create.uplink = AAZStrArg( - options=["uplink"], - help="Uplink bit rate.", - required=True, - fmt=AAZStrArgFormat( - pattern="^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$", - ), - ) - - _schema.downlink = cls._args_ambr_create.downlink - _schema.uplink = cls._args_ambr_create.uplink - - def _execute_operations(self): - self.pre_operations() - yield self.ServicesCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class ServicesCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "serviceName", self.ctx.args.service_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("pccRules", AAZListType, ".pcc_rules", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("servicePrecedence", AAZIntType, ".service_precedence", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("serviceQosPolicy", AAZObjectType, ".service_qos_policy") - - pcc_rules = _builder.get(".properties.pccRules") - if pcc_rules is not None: - pcc_rules.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.pccRules[]") - if _elements is not None: - _elements.set_prop("ruleName", AAZStrType, ".rule_name", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("rulePrecedence", AAZIntType, ".rule_precedence", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("ruleQosPolicy", AAZObjectType, ".rule_qos_policy") - _elements.set_prop("serviceDataFlowTemplates", AAZListType, ".service_data_flow_templates", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("trafficControl", AAZStrType, ".traffic_control") - - rule_qos_policy = _builder.get(".properties.pccRules[].ruleQosPolicy") - if rule_qos_policy is not None: - rule_qos_policy.set_prop("5qi", AAZIntType, ".five_qi") - rule_qos_policy.set_prop("allocationAndRetentionPriorityLevel", AAZIntType, ".allocation_and_retention_priority_level") - _CreateHelper._build_schema_ambr_create(rule_qos_policy.set_prop("guaranteedBitRate", AAZObjectType, ".guaranteed_bit_rate")) - _CreateHelper._build_schema_ambr_create(rule_qos_policy.set_prop("maximumBitRate", AAZObjectType, ".maximum_bit_rate", typ_kwargs={"flags": {"required": True}})) - rule_qos_policy.set_prop("preemptionCapability", AAZStrType, ".preemption_capability") - rule_qos_policy.set_prop("preemptionVulnerability", AAZStrType, ".preemption_vulnerability") - - service_data_flow_templates = _builder.get(".properties.pccRules[].serviceDataFlowTemplates") - if service_data_flow_templates is not None: - service_data_flow_templates.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.pccRules[].serviceDataFlowTemplates[]") - if _elements is not None: - _elements.set_prop("direction", AAZStrType, ".direction", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("ports", AAZListType, ".ports") - _elements.set_prop("protocol", AAZListType, ".protocol", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("remoteIpList", AAZListType, ".remote_ip_list", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("templateName", AAZStrType, ".template_name", typ_kwargs={"flags": {"required": True}}) - - ports = _builder.get(".properties.pccRules[].serviceDataFlowTemplates[].ports") - if ports is not None: - ports.set_elements(AAZStrType, ".") - - protocol = _builder.get(".properties.pccRules[].serviceDataFlowTemplates[].protocol") - if protocol is not None: - protocol.set_elements(AAZStrType, ".") - - remote_ip_list = _builder.get(".properties.pccRules[].serviceDataFlowTemplates[].remoteIpList") - if remote_ip_list is not None: - remote_ip_list.set_elements(AAZStrType, ".") - - service_qos_policy = _builder.get(".properties.serviceQosPolicy") - if service_qos_policy is not None: - service_qos_policy.set_prop("5qi", AAZIntType, ".five_qi") - service_qos_policy.set_prop("allocationAndRetentionPriorityLevel", AAZIntType, ".allocation_and_retention_priority_level") - _CreateHelper._build_schema_ambr_create(service_qos_policy.set_prop("maximumBitRate", AAZObjectType, ".maximum_bit_rate", typ_kwargs={"flags": {"required": True}})) - service_qos_policy.set_prop("preemptionCapability", AAZStrType, ".preemption_capability") - service_qos_policy.set_prop("preemptionVulnerability", AAZStrType, ".preemption_vulnerability") - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - - _schema_on_200_201 = cls._schema_on_200_201 - _schema_on_200_201.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200_201.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200_201.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200_201.tags = AAZDictType() - _schema_on_200_201.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200_201.properties - properties.pcc_rules = AAZListType( - serialized_name="pccRules", - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.service_precedence = AAZIntType( - serialized_name="servicePrecedence", - flags={"required": True}, - ) - properties.service_qos_policy = AAZObjectType( - serialized_name="serviceQosPolicy", - ) - - pcc_rules = cls._schema_on_200_201.properties.pcc_rules - pcc_rules.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.pcc_rules.Element - _element.rule_name = AAZStrType( - serialized_name="ruleName", - flags={"required": True}, - ) - _element.rule_precedence = AAZIntType( - serialized_name="rulePrecedence", - flags={"required": True}, - ) - _element.rule_qos_policy = AAZObjectType( - serialized_name="ruleQosPolicy", - ) - _element.service_data_flow_templates = AAZListType( - serialized_name="serviceDataFlowTemplates", - flags={"required": True}, - ) - _element.traffic_control = AAZStrType( - serialized_name="trafficControl", - ) - - rule_qos_policy = cls._schema_on_200_201.properties.pcc_rules.Element.rule_qos_policy - rule_qos_policy["5qi"] = AAZIntType() - rule_qos_policy.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - rule_qos_policy.guaranteed_bit_rate = AAZObjectType( - serialized_name="guaranteedBitRate", - ) - _CreateHelper._build_schema_ambr_read(rule_qos_policy.guaranteed_bit_rate) - rule_qos_policy.maximum_bit_rate = AAZObjectType( - serialized_name="maximumBitRate", - flags={"required": True}, - ) - _CreateHelper._build_schema_ambr_read(rule_qos_policy.maximum_bit_rate) - rule_qos_policy.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - rule_qos_policy.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - - service_data_flow_templates = cls._schema_on_200_201.properties.pcc_rules.Element.service_data_flow_templates - service_data_flow_templates.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.pcc_rules.Element.service_data_flow_templates.Element - _element.direction = AAZStrType( - flags={"required": True}, - ) - _element.ports = AAZListType() - _element.protocol = AAZListType( - flags={"required": True}, - ) - _element.remote_ip_list = AAZListType( - serialized_name="remoteIpList", - flags={"required": True}, - ) - _element.template_name = AAZStrType( - serialized_name="templateName", - flags={"required": True}, - ) - - ports = cls._schema_on_200_201.properties.pcc_rules.Element.service_data_flow_templates.Element.ports - ports.Element = AAZStrType() - - protocol = cls._schema_on_200_201.properties.pcc_rules.Element.service_data_flow_templates.Element.protocol - protocol.Element = AAZStrType() - - remote_ip_list = cls._schema_on_200_201.properties.pcc_rules.Element.service_data_flow_templates.Element.remote_ip_list - remote_ip_list.Element = AAZStrType() - - service_qos_policy = cls._schema_on_200_201.properties.service_qos_policy - service_qos_policy["5qi"] = AAZIntType() - service_qos_policy.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - service_qos_policy.maximum_bit_rate = AAZObjectType( - serialized_name="maximumBitRate", - flags={"required": True}, - ) - _CreateHelper._build_schema_ambr_read(service_qos_policy.maximum_bit_rate) - service_qos_policy.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - service_qos_policy.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - - system_data = cls._schema_on_200_201.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200_201.tags - tags.Element = AAZStrType() - - return cls._schema_on_200_201 - - -class _CreateHelper: - """Helper class for Create""" - - @classmethod - def _build_schema_ambr_create(cls, _builder): - if _builder is None: - return - _builder.set_prop("downlink", AAZStrType, ".downlink", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("uplink", AAZStrType, ".uplink", typ_kwargs={"flags": {"required": True}}) - - _schema_ambr_read = None - - @classmethod - def _build_schema_ambr_read(cls, _schema): - if cls._schema_ambr_read is not None: - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - return - - cls._schema_ambr_read = _schema_ambr_read = AAZObjectType() - - ambr_read = _schema_ambr_read - ambr_read.downlink = AAZStrType( - flags={"required": True}, - ) - ambr_read.uplink = AAZStrType( - flags={"required": True}, - ) - - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - - -__all__ = ["Create"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_list.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_list.py deleted file mode 100644 index 57084ca3f5b..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_list.py +++ /dev/null @@ -1,351 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network service list", -) -class List(AAZCommand): - """List all the services in a mobile network. - - :example: List service by resource group - az mobile-network service list --mobile-network-name mobile-network-name -g rg - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/services", "2023-09-01"], - ] - } - - AZ_SUPPORT_PAGINATION = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_paging(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.ServicesListByMobileNetwork(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) - next_link = self.deserialize_output(self.ctx.vars.instance.next_link) - return result, next_link - - class ServicesListByMobileNetwork(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.next_link = AAZStrType( - serialized_name="nextLink", - flags={"read_only": True}, - ) - _schema_on_200.value = AAZListType() - - value = cls._schema_on_200.value - value.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.value.Element.properties - properties.pcc_rules = AAZListType( - serialized_name="pccRules", - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.service_precedence = AAZIntType( - serialized_name="servicePrecedence", - flags={"required": True}, - ) - properties.service_qos_policy = AAZObjectType( - serialized_name="serviceQosPolicy", - ) - - pcc_rules = cls._schema_on_200.value.Element.properties.pcc_rules - pcc_rules.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.pcc_rules.Element - _element.rule_name = AAZStrType( - serialized_name="ruleName", - flags={"required": True}, - ) - _element.rule_precedence = AAZIntType( - serialized_name="rulePrecedence", - flags={"required": True}, - ) - _element.rule_qos_policy = AAZObjectType( - serialized_name="ruleQosPolicy", - ) - _element.service_data_flow_templates = AAZListType( - serialized_name="serviceDataFlowTemplates", - flags={"required": True}, - ) - _element.traffic_control = AAZStrType( - serialized_name="trafficControl", - ) - - rule_qos_policy = cls._schema_on_200.value.Element.properties.pcc_rules.Element.rule_qos_policy - rule_qos_policy["5qi"] = AAZIntType() - rule_qos_policy.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - rule_qos_policy.guaranteed_bit_rate = AAZObjectType( - serialized_name="guaranteedBitRate", - ) - _ListHelper._build_schema_ambr_read(rule_qos_policy.guaranteed_bit_rate) - rule_qos_policy.maximum_bit_rate = AAZObjectType( - serialized_name="maximumBitRate", - flags={"required": True}, - ) - _ListHelper._build_schema_ambr_read(rule_qos_policy.maximum_bit_rate) - rule_qos_policy.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - rule_qos_policy.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - - service_data_flow_templates = cls._schema_on_200.value.Element.properties.pcc_rules.Element.service_data_flow_templates - service_data_flow_templates.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.pcc_rules.Element.service_data_flow_templates.Element - _element.direction = AAZStrType( - flags={"required": True}, - ) - _element.ports = AAZListType() - _element.protocol = AAZListType( - flags={"required": True}, - ) - _element.remote_ip_list = AAZListType( - serialized_name="remoteIpList", - flags={"required": True}, - ) - _element.template_name = AAZStrType( - serialized_name="templateName", - flags={"required": True}, - ) - - ports = cls._schema_on_200.value.Element.properties.pcc_rules.Element.service_data_flow_templates.Element.ports - ports.Element = AAZStrType() - - protocol = cls._schema_on_200.value.Element.properties.pcc_rules.Element.service_data_flow_templates.Element.protocol - protocol.Element = AAZStrType() - - remote_ip_list = cls._schema_on_200.value.Element.properties.pcc_rules.Element.service_data_flow_templates.Element.remote_ip_list - remote_ip_list.Element = AAZStrType() - - service_qos_policy = cls._schema_on_200.value.Element.properties.service_qos_policy - service_qos_policy["5qi"] = AAZIntType() - service_qos_policy.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - service_qos_policy.maximum_bit_rate = AAZObjectType( - serialized_name="maximumBitRate", - flags={"required": True}, - ) - _ListHelper._build_schema_ambr_read(service_qos_policy.maximum_bit_rate) - service_qos_policy.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - service_qos_policy.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - - system_data = cls._schema_on_200.value.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.value.Element.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _ListHelper: - """Helper class for List""" - - _schema_ambr_read = None - - @classmethod - def _build_schema_ambr_read(cls, _schema): - if cls._schema_ambr_read is not None: - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - return - - cls._schema_ambr_read = _schema_ambr_read = AAZObjectType() - - ambr_read = _schema_ambr_read - ambr_read.downlink = AAZStrType( - flags={"required": True}, - ) - ambr_read.uplink = AAZStrType( - flags={"required": True}, - ) - - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - - -__all__ = ["List"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_show.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_show.py deleted file mode 100644 index 47c3b96b8b5..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_show.py +++ /dev/null @@ -1,354 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network service show", -) -class Show(AAZCommand): - """Get information about the specified service. - - :example: Show service - az mobile-network service show --mobile-network-name mobile-network-name -n service -g rg - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/services/{}", "2023-09-01"], - ] - } - - def _handler(self, command_args): - super()._handler(command_args) - self._execute_operations() - return self._output() - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.service_name = AAZStrArg( - options=["-n", "--name", "--service-name"], - help="The name of the service. You must not use any of the following reserved strings - `default`, `requested` or `service`", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^(?!(default|requested|service)$)[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.ServicesGet(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class ServicesGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "serviceName", self.ctx.args.service_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200.tags = AAZDictType() - _schema_on_200.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties - properties.pcc_rules = AAZListType( - serialized_name="pccRules", - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.service_precedence = AAZIntType( - serialized_name="servicePrecedence", - flags={"required": True}, - ) - properties.service_qos_policy = AAZObjectType( - serialized_name="serviceQosPolicy", - ) - - pcc_rules = cls._schema_on_200.properties.pcc_rules - pcc_rules.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.pcc_rules.Element - _element.rule_name = AAZStrType( - serialized_name="ruleName", - flags={"required": True}, - ) - _element.rule_precedence = AAZIntType( - serialized_name="rulePrecedence", - flags={"required": True}, - ) - _element.rule_qos_policy = AAZObjectType( - serialized_name="ruleQosPolicy", - ) - _element.service_data_flow_templates = AAZListType( - serialized_name="serviceDataFlowTemplates", - flags={"required": True}, - ) - _element.traffic_control = AAZStrType( - serialized_name="trafficControl", - ) - - rule_qos_policy = cls._schema_on_200.properties.pcc_rules.Element.rule_qos_policy - rule_qos_policy["5qi"] = AAZIntType() - rule_qos_policy.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - rule_qos_policy.guaranteed_bit_rate = AAZObjectType( - serialized_name="guaranteedBitRate", - ) - _ShowHelper._build_schema_ambr_read(rule_qos_policy.guaranteed_bit_rate) - rule_qos_policy.maximum_bit_rate = AAZObjectType( - serialized_name="maximumBitRate", - flags={"required": True}, - ) - _ShowHelper._build_schema_ambr_read(rule_qos_policy.maximum_bit_rate) - rule_qos_policy.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - rule_qos_policy.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - - service_data_flow_templates = cls._schema_on_200.properties.pcc_rules.Element.service_data_flow_templates - service_data_flow_templates.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.pcc_rules.Element.service_data_flow_templates.Element - _element.direction = AAZStrType( - flags={"required": True}, - ) - _element.ports = AAZListType() - _element.protocol = AAZListType( - flags={"required": True}, - ) - _element.remote_ip_list = AAZListType( - serialized_name="remoteIpList", - flags={"required": True}, - ) - _element.template_name = AAZStrType( - serialized_name="templateName", - flags={"required": True}, - ) - - ports = cls._schema_on_200.properties.pcc_rules.Element.service_data_flow_templates.Element.ports - ports.Element = AAZStrType() - - protocol = cls._schema_on_200.properties.pcc_rules.Element.service_data_flow_templates.Element.protocol - protocol.Element = AAZStrType() - - remote_ip_list = cls._schema_on_200.properties.pcc_rules.Element.service_data_flow_templates.Element.remote_ip_list - remote_ip_list.Element = AAZStrType() - - service_qos_policy = cls._schema_on_200.properties.service_qos_policy - service_qos_policy["5qi"] = AAZIntType() - service_qos_policy.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - service_qos_policy.maximum_bit_rate = AAZObjectType( - serialized_name="maximumBitRate", - flags={"required": True}, - ) - _ShowHelper._build_schema_ambr_read(service_qos_policy.maximum_bit_rate) - service_qos_policy.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - service_qos_policy.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - - system_data = cls._schema_on_200.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _ShowHelper: - """Helper class for Show""" - - _schema_ambr_read = None - - @classmethod - def _build_schema_ambr_read(cls, _schema): - if cls._schema_ambr_read is not None: - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - return - - cls._schema_ambr_read = _schema_ambr_read = AAZObjectType() - - ambr_read = _schema_ambr_read - ambr_read.downlink = AAZStrType( - flags={"required": True}, - ) - ambr_read.uplink = AAZStrType( - flags={"required": True}, - ) - - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - - -__all__ = ["Show"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_update.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_update.py deleted file mode 100644 index 89f850598fb..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_update.py +++ /dev/null @@ -1,862 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network service update", -) -class Update(AAZCommand): - """Update a service. - - :example: Update service tags - az mobile-network service update --mobile-network-name mobile-network-name -g rg -n service-name --tags "{tag:test,tag2:test2}" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/services/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - AZ_SUPPORT_GENERIC_UPDATE = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.service_name = AAZStrArg( - options=["-n", "--name", "--service-name"], - help="The name of the service. You must not use any of the following reserved strings - `default`, `requested` or `service`", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^(?!(default|requested|service)$)[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - nullable=True, - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg( - nullable=True, - ) - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.pcc_rules = AAZListArg( - options=["--pcc-rules"], - arg_group="Properties", - help="The set of data flow policy rules that make up this service.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.service_precedence = AAZIntArg( - options=["--service-precedence"], - arg_group="Properties", - help="A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network.", - fmt=AAZIntArgFormat( - maximum=255, - minimum=0, - ), - ) - _args_schema.service_qos_policy = AAZObjectArg( - options=["--service-qos-policy"], - arg_group="Properties", - help="The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a PccRuleConfiguration. If this field is null then the UE's SIM policy will define the QoS settings.", - nullable=True, - ) - - pcc_rules = cls._args_schema.pcc_rules - pcc_rules.Element = AAZObjectArg( - nullable=True, - ) - - _element = cls._args_schema.pcc_rules.Element - _element.rule_name = AAZStrArg( - options=["rule-name"], - help="The name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - `default`, `requested` or `service`.", - fmt=AAZStrArgFormat( - pattern="^(?!(default|requested|service)$)[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _element.rule_precedence = AAZIntArg( - options=["rule-precedence"], - help="A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network.", - fmt=AAZIntArgFormat( - maximum=255, - minimum=0, - ), - ) - _element.rule_qos_policy = AAZObjectArg( - options=["rule-qos-policy"], - help="The QoS policy to use for packets matching this rule. If this field is null then the parent service will define the QoS settings.", - nullable=True, - ) - _element.service_data_flow_templates = AAZListArg( - options=["service-data-flow-templates"], - help="The set of data flow templates to use for this data flow policy rule.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.traffic_control = AAZStrArg( - options=["traffic-control"], - help="Determines whether flows that match this data flow policy rule are permitted.", - nullable=True, - enum={"Blocked": "Blocked", "Enabled": "Enabled"}, - ) - - rule_qos_policy = cls._args_schema.pcc_rules.Element.rule_qos_policy - rule_qos_policy.five_qi = AAZIntArg( - options=["five-qi"], - help="QoS Flow 5G QoS Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. This must not be a standardized 5QI value corresponding to a GBR (guaranteed bit rate) QoS Flow. The illegal GBR 5QI values are: 1, 2, 3, 4, 65, 66, 67, 71, 72, 73, 74, 75, 76, 82, 83, 84, and 85. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition of which are the GBR 5QI values.", - nullable=True, - fmt=AAZIntArgFormat( - maximum=127, - minimum=1, - ), - ) - rule_qos_policy.allocation_and_retention_priority_level = AAZIntArg( - options=["allocation-and-retention-priority-level"], - help="QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - nullable=True, - fmt=AAZIntArgFormat( - maximum=15, - minimum=1, - ), - ) - rule_qos_policy.guaranteed_bit_rate = AAZObjectArg( - options=["guaranteed-bit-rate"], - help="The guaranteed bit rate (GBR) for all service data flows that use this data flow policy rule. This is an optional setting. If you do not provide a value, there will be no GBR set for the data flow policy rule that uses this QoS definition.", - ) - cls._build_args_ambr_update(rule_qos_policy.guaranteed_bit_rate) - rule_qos_policy.maximum_bit_rate = AAZObjectArg( - options=["maximum-bit-rate"], - help="The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.", - ) - cls._build_args_ambr_update(rule_qos_policy.maximum_bit_rate) - rule_qos_policy.preemption_capability = AAZStrArg( - options=["preemption-capability"], - help="QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - nullable=True, - enum={"MayPreempt": "MayPreempt", "NotPreempt": "NotPreempt"}, - ) - rule_qos_policy.preemption_vulnerability = AAZStrArg( - options=["preemption-vulnerability"], - help="QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - nullable=True, - enum={"NotPreemptable": "NotPreemptable", "Preemptable": "Preemptable"}, - ) - - service_data_flow_templates = cls._args_schema.pcc_rules.Element.service_data_flow_templates - service_data_flow_templates.Element = AAZObjectArg( - nullable=True, - ) - - _element = cls._args_schema.pcc_rules.Element.service_data_flow_templates.Element - _element.direction = AAZStrArg( - options=["direction"], - help="The direction of this flow.", - enum={"Bidirectional": "Bidirectional", "Downlink": "Downlink", "Uplink": "Uplink"}, - ) - _element.ports = AAZListArg( - options=["ports"], - help="The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than `ip` in the `protocol` field. This is an optional setting. If you do not specify it then connections will be allowed on all ports. Port ranges must be specified as -. For example: [`8080`, `8082-8085`].", - nullable=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.protocol = AAZListArg( - options=["protocol"], - help="A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value `ip`. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value `ip` then you must leave the field `port` unspecified.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.remote_ip_list = AAZListArg( - options=["remote-ip-list"], - help="The remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value `any`. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.template_name = AAZStrArg( - options=["template-name"], - help="The name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - `default`, `requested` or `service`.", - fmt=AAZStrArgFormat( - pattern="^(?!(default|requested|service)$)[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - - ports = cls._args_schema.pcc_rules.Element.service_data_flow_templates.Element.ports - ports.Element = AAZStrArg( - nullable=True, - fmt=AAZStrArgFormat( - pattern="^([1-9]|[1-9][0-9]{1,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])(-([1-9]|[1-9][0-9]{1,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5]))?$", - ), - ) - - protocol = cls._args_schema.pcc_rules.Element.service_data_flow_templates.Element.protocol - protocol.Element = AAZStrArg( - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(ip|[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - - remote_ip_list = cls._args_schema.pcc_rules.Element.service_data_flow_templates.Element.remote_ip_list - remote_ip_list.Element = AAZStrArg( - nullable=True, - fmt=AAZStrArgFormat( - pattern="^(any|(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2])))$", - ), - ) - - service_qos_policy = cls._args_schema.service_qos_policy - service_qos_policy.five_qi = AAZIntArg( - options=["five-qi"], - help="QoS Flow 5G QoS Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. This must not be a standardized 5QI value corresponding to a GBR (guaranteed bit rate) QoS Flow. The illegal GBR 5QI values are: 1, 2, 3, 4, 65, 66, 67, 71, 72, 73, 74, 75, 76, 82, 83, 84, and 85. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition of which are the GBR 5QI values.", - nullable=True, - fmt=AAZIntArgFormat( - maximum=127, - minimum=1, - ), - ) - service_qos_policy.allocation_and_retention_priority_level = AAZIntArg( - options=["allocation-and-retention-priority-level"], - help="QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - nullable=True, - fmt=AAZIntArgFormat( - maximum=15, - minimum=1, - ), - ) - service_qos_policy.maximum_bit_rate = AAZObjectArg( - options=["maximum-bit-rate"], - help="The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.", - ) - cls._build_args_ambr_update(service_qos_policy.maximum_bit_rate) - service_qos_policy.preemption_capability = AAZStrArg( - options=["preemption-capability"], - help="QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - nullable=True, - enum={"MayPreempt": "MayPreempt", "NotPreempt": "NotPreempt"}, - ) - service_qos_policy.preemption_vulnerability = AAZStrArg( - options=["preemption-vulnerability"], - help="QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - nullable=True, - enum={"NotPreemptable": "NotPreemptable", "Preemptable": "Preemptable"}, - ) - return cls._args_schema - - _args_ambr_update = None - - @classmethod - def _build_args_ambr_update(cls, _schema): - if cls._args_ambr_update is not None: - _schema.downlink = cls._args_ambr_update.downlink - _schema.uplink = cls._args_ambr_update.uplink - return - - cls._args_ambr_update = AAZObjectArg() - - ambr_update = cls._args_ambr_update - ambr_update.downlink = AAZStrArg( - options=["downlink"], - help="Downlink bit rate.", - fmt=AAZStrArgFormat( - pattern="^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$", - ), - ) - ambr_update.uplink = AAZStrArg( - options=["uplink"], - help="Uplink bit rate.", - fmt=AAZStrArgFormat( - pattern="^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$", - ), - ) - - _schema.downlink = cls._args_ambr_update.downlink - _schema.uplink = cls._args_ambr_update.uplink - - def _execute_operations(self): - self.pre_operations() - self.ServicesGet(ctx=self.ctx)() - self.pre_instance_update(self.ctx.vars.instance) - self.InstanceUpdateByJson(ctx=self.ctx)() - self.InstanceUpdateByGeneric(ctx=self.ctx)() - self.post_instance_update(self.ctx.vars.instance) - yield self.ServicesCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - @register_callback - def pre_instance_update(self, instance): - pass - - @register_callback - def post_instance_update(self, instance): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class ServicesGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "serviceName", self.ctx.args.service_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_service_read(cls._schema_on_200) - - return cls._schema_on_200 - - class ServicesCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "serviceName", self.ctx.args.service_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - value=self.ctx.vars.instance, - ) - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_service_read(cls._schema_on_200_201) - - return cls._schema_on_200_201 - - class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): - - def __call__(self, *args, **kwargs): - self._update_instance(self.ctx.vars.instance) - - def _update_instance(self, instance): - _instance_value, _builder = self.new_content_builder( - self.ctx.args, - value=instance, - typ=AAZObjectType - ) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("pccRules", AAZListType, ".pcc_rules", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("servicePrecedence", AAZIntType, ".service_precedence", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("serviceQosPolicy", AAZObjectType, ".service_qos_policy") - - pcc_rules = _builder.get(".properties.pccRules") - if pcc_rules is not None: - pcc_rules.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.pccRules[]") - if _elements is not None: - _elements.set_prop("ruleName", AAZStrType, ".rule_name", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("rulePrecedence", AAZIntType, ".rule_precedence", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("ruleQosPolicy", AAZObjectType, ".rule_qos_policy") - _elements.set_prop("serviceDataFlowTemplates", AAZListType, ".service_data_flow_templates", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("trafficControl", AAZStrType, ".traffic_control") - - rule_qos_policy = _builder.get(".properties.pccRules[].ruleQosPolicy") - if rule_qos_policy is not None: - rule_qos_policy.set_prop("5qi", AAZIntType, ".five_qi") - rule_qos_policy.set_prop("allocationAndRetentionPriorityLevel", AAZIntType, ".allocation_and_retention_priority_level") - _UpdateHelper._build_schema_ambr_update(rule_qos_policy.set_prop("guaranteedBitRate", AAZObjectType, ".guaranteed_bit_rate")) - _UpdateHelper._build_schema_ambr_update(rule_qos_policy.set_prop("maximumBitRate", AAZObjectType, ".maximum_bit_rate", typ_kwargs={"flags": {"required": True}})) - rule_qos_policy.set_prop("preemptionCapability", AAZStrType, ".preemption_capability") - rule_qos_policy.set_prop("preemptionVulnerability", AAZStrType, ".preemption_vulnerability") - - service_data_flow_templates = _builder.get(".properties.pccRules[].serviceDataFlowTemplates") - if service_data_flow_templates is not None: - service_data_flow_templates.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.pccRules[].serviceDataFlowTemplates[]") - if _elements is not None: - _elements.set_prop("direction", AAZStrType, ".direction", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("ports", AAZListType, ".ports") - _elements.set_prop("protocol", AAZListType, ".protocol", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("remoteIpList", AAZListType, ".remote_ip_list", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("templateName", AAZStrType, ".template_name", typ_kwargs={"flags": {"required": True}}) - - ports = _builder.get(".properties.pccRules[].serviceDataFlowTemplates[].ports") - if ports is not None: - ports.set_elements(AAZStrType, ".") - - protocol = _builder.get(".properties.pccRules[].serviceDataFlowTemplates[].protocol") - if protocol is not None: - protocol.set_elements(AAZStrType, ".") - - remote_ip_list = _builder.get(".properties.pccRules[].serviceDataFlowTemplates[].remoteIpList") - if remote_ip_list is not None: - remote_ip_list.set_elements(AAZStrType, ".") - - service_qos_policy = _builder.get(".properties.serviceQosPolicy") - if service_qos_policy is not None: - service_qos_policy.set_prop("5qi", AAZIntType, ".five_qi") - service_qos_policy.set_prop("allocationAndRetentionPriorityLevel", AAZIntType, ".allocation_and_retention_priority_level") - _UpdateHelper._build_schema_ambr_update(service_qos_policy.set_prop("maximumBitRate", AAZObjectType, ".maximum_bit_rate", typ_kwargs={"flags": {"required": True}})) - service_qos_policy.set_prop("preemptionCapability", AAZStrType, ".preemption_capability") - service_qos_policy.set_prop("preemptionVulnerability", AAZStrType, ".preemption_vulnerability") - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return _instance_value - - class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): - - def __call__(self, *args, **kwargs): - self._update_instance_by_generic( - self.ctx.vars.instance, - self.ctx.generic_update_args - ) - - -class _UpdateHelper: - """Helper class for Update""" - - @classmethod - def _build_schema_ambr_update(cls, _builder): - if _builder is None: - return - _builder.set_prop("downlink", AAZStrType, ".downlink", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("uplink", AAZStrType, ".uplink", typ_kwargs={"flags": {"required": True}}) - - _schema_ambr_read = None - - @classmethod - def _build_schema_ambr_read(cls, _schema): - if cls._schema_ambr_read is not None: - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - return - - cls._schema_ambr_read = _schema_ambr_read = AAZObjectType() - - ambr_read = _schema_ambr_read - ambr_read.downlink = AAZStrType( - flags={"required": True}, - ) - ambr_read.uplink = AAZStrType( - flags={"required": True}, - ) - - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - - _schema_service_read = None - - @classmethod - def _build_schema_service_read(cls, _schema): - if cls._schema_service_read is not None: - _schema.id = cls._schema_service_read.id - _schema.location = cls._schema_service_read.location - _schema.name = cls._schema_service_read.name - _schema.properties = cls._schema_service_read.properties - _schema.system_data = cls._schema_service_read.system_data - _schema.tags = cls._schema_service_read.tags - _schema.type = cls._schema_service_read.type - return - - cls._schema_service_read = _schema_service_read = AAZObjectType() - - service_read = _schema_service_read - service_read.id = AAZStrType( - flags={"read_only": True}, - ) - service_read.location = AAZStrType( - flags={"required": True}, - ) - service_read.name = AAZStrType( - flags={"read_only": True}, - ) - service_read.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - service_read.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - service_read.tags = AAZDictType() - service_read.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = _schema_service_read.properties - properties.pcc_rules = AAZListType( - serialized_name="pccRules", - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.service_precedence = AAZIntType( - serialized_name="servicePrecedence", - flags={"required": True}, - ) - properties.service_qos_policy = AAZObjectType( - serialized_name="serviceQosPolicy", - ) - - pcc_rules = _schema_service_read.properties.pcc_rules - pcc_rules.Element = AAZObjectType() - - _element = _schema_service_read.properties.pcc_rules.Element - _element.rule_name = AAZStrType( - serialized_name="ruleName", - flags={"required": True}, - ) - _element.rule_precedence = AAZIntType( - serialized_name="rulePrecedence", - flags={"required": True}, - ) - _element.rule_qos_policy = AAZObjectType( - serialized_name="ruleQosPolicy", - ) - _element.service_data_flow_templates = AAZListType( - serialized_name="serviceDataFlowTemplates", - flags={"required": True}, - ) - _element.traffic_control = AAZStrType( - serialized_name="trafficControl", - ) - - rule_qos_policy = _schema_service_read.properties.pcc_rules.Element.rule_qos_policy - rule_qos_policy["5qi"] = AAZIntType() - rule_qos_policy.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - rule_qos_policy.guaranteed_bit_rate = AAZObjectType( - serialized_name="guaranteedBitRate", - ) - cls._build_schema_ambr_read(rule_qos_policy.guaranteed_bit_rate) - rule_qos_policy.maximum_bit_rate = AAZObjectType( - serialized_name="maximumBitRate", - flags={"required": True}, - ) - cls._build_schema_ambr_read(rule_qos_policy.maximum_bit_rate) - rule_qos_policy.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - rule_qos_policy.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - - service_data_flow_templates = _schema_service_read.properties.pcc_rules.Element.service_data_flow_templates - service_data_flow_templates.Element = AAZObjectType() - - _element = _schema_service_read.properties.pcc_rules.Element.service_data_flow_templates.Element - _element.direction = AAZStrType( - flags={"required": True}, - ) - _element.ports = AAZListType() - _element.protocol = AAZListType( - flags={"required": True}, - ) - _element.remote_ip_list = AAZListType( - serialized_name="remoteIpList", - flags={"required": True}, - ) - _element.template_name = AAZStrType( - serialized_name="templateName", - flags={"required": True}, - ) - - ports = _schema_service_read.properties.pcc_rules.Element.service_data_flow_templates.Element.ports - ports.Element = AAZStrType() - - protocol = _schema_service_read.properties.pcc_rules.Element.service_data_flow_templates.Element.protocol - protocol.Element = AAZStrType() - - remote_ip_list = _schema_service_read.properties.pcc_rules.Element.service_data_flow_templates.Element.remote_ip_list - remote_ip_list.Element = AAZStrType() - - service_qos_policy = _schema_service_read.properties.service_qos_policy - service_qos_policy["5qi"] = AAZIntType() - service_qos_policy.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - service_qos_policy.maximum_bit_rate = AAZObjectType( - serialized_name="maximumBitRate", - flags={"required": True}, - ) - cls._build_schema_ambr_read(service_qos_policy.maximum_bit_rate) - service_qos_policy.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - service_qos_policy.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - - system_data = _schema_service_read.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = _schema_service_read.tags - tags.Element = AAZStrType() - - _schema.id = cls._schema_service_read.id - _schema.location = cls._schema_service_read.location - _schema.name = cls._schema_service_read.name - _schema.properties = cls._schema_service_read.properties - _schema.system_data = cls._schema_service_read.system_data - _schema.tags = cls._schema_service_read.tags - _schema.type = cls._schema_service_read.type - - -__all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_wait.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_wait.py deleted file mode 100644 index 6ca4be8e412..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_wait.py +++ /dev/null @@ -1,350 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network service wait", -) -class Wait(AAZWaitCommand): - """Place the CLI in a waiting state until a condition is met. - """ - - _aaz_info = { - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/services/{}", "2023-09-01"], - ] - } - - def _handler(self, command_args): - super()._handler(command_args) - self._execute_operations() - return self._output() - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.service_name = AAZStrArg( - options=["-n", "--name", "--service-name"], - help="The name of the service. You must not use any of the following reserved strings - `default`, `requested` or `service`", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^(?!(default|requested|service)$)[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.ServicesGet(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) - return result - - class ServicesGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "serviceName", self.ctx.args.service_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200.tags = AAZDictType() - _schema_on_200.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties - properties.pcc_rules = AAZListType( - serialized_name="pccRules", - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.service_precedence = AAZIntType( - serialized_name="servicePrecedence", - flags={"required": True}, - ) - properties.service_qos_policy = AAZObjectType( - serialized_name="serviceQosPolicy", - ) - - pcc_rules = cls._schema_on_200.properties.pcc_rules - pcc_rules.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.pcc_rules.Element - _element.rule_name = AAZStrType( - serialized_name="ruleName", - flags={"required": True}, - ) - _element.rule_precedence = AAZIntType( - serialized_name="rulePrecedence", - flags={"required": True}, - ) - _element.rule_qos_policy = AAZObjectType( - serialized_name="ruleQosPolicy", - ) - _element.service_data_flow_templates = AAZListType( - serialized_name="serviceDataFlowTemplates", - flags={"required": True}, - ) - _element.traffic_control = AAZStrType( - serialized_name="trafficControl", - ) - - rule_qos_policy = cls._schema_on_200.properties.pcc_rules.Element.rule_qos_policy - rule_qos_policy["5qi"] = AAZIntType() - rule_qos_policy.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - rule_qos_policy.guaranteed_bit_rate = AAZObjectType( - serialized_name="guaranteedBitRate", - ) - _WaitHelper._build_schema_ambr_read(rule_qos_policy.guaranteed_bit_rate) - rule_qos_policy.maximum_bit_rate = AAZObjectType( - serialized_name="maximumBitRate", - flags={"required": True}, - ) - _WaitHelper._build_schema_ambr_read(rule_qos_policy.maximum_bit_rate) - rule_qos_policy.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - rule_qos_policy.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - - service_data_flow_templates = cls._schema_on_200.properties.pcc_rules.Element.service_data_flow_templates - service_data_flow_templates.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.pcc_rules.Element.service_data_flow_templates.Element - _element.direction = AAZStrType( - flags={"required": True}, - ) - _element.ports = AAZListType() - _element.protocol = AAZListType( - flags={"required": True}, - ) - _element.remote_ip_list = AAZListType( - serialized_name="remoteIpList", - flags={"required": True}, - ) - _element.template_name = AAZStrType( - serialized_name="templateName", - flags={"required": True}, - ) - - ports = cls._schema_on_200.properties.pcc_rules.Element.service_data_flow_templates.Element.ports - ports.Element = AAZStrType() - - protocol = cls._schema_on_200.properties.pcc_rules.Element.service_data_flow_templates.Element.protocol - protocol.Element = AAZStrType() - - remote_ip_list = cls._schema_on_200.properties.pcc_rules.Element.service_data_flow_templates.Element.remote_ip_list - remote_ip_list.Element = AAZStrType() - - service_qos_policy = cls._schema_on_200.properties.service_qos_policy - service_qos_policy["5qi"] = AAZIntType() - service_qos_policy.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - service_qos_policy.maximum_bit_rate = AAZObjectType( - serialized_name="maximumBitRate", - flags={"required": True}, - ) - _WaitHelper._build_schema_ambr_read(service_qos_policy.maximum_bit_rate) - service_qos_policy.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - service_qos_policy.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - - system_data = cls._schema_on_200.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _WaitHelper: - """Helper class for Wait""" - - _schema_ambr_read = None - - @classmethod - def _build_schema_ambr_read(cls, _schema): - if cls._schema_ambr_read is not None: - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - return - - cls._schema_ambr_read = _schema_ambr_read = AAZObjectType() - - ambr_read = _schema_ambr_read - ambr_read.downlink = AAZStrType( - flags={"required": True}, - ) - ambr_read.uplink = AAZStrType( - flags={"required": True}, - ) - - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - - -__all__ = ["Wait"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_create.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_create.py deleted file mode 100644 index a79b193df32..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_create.py +++ /dev/null @@ -1,469 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim create", -) -class Create(AAZCommand): - """Create a SIM. - - :example: Create sim - az mobile-network sim create -g rg --sim-group-name sim-group-name -n sim-name --international-msi 0000000000 --operator-key-code 00000000000000000000000000000000 --authentication-key 00000000000000000000000000000000 - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}/sims/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["--sim-group-name"], - help="The name of the SIM Group.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.sim_name = AAZStrArg( - options=["-n", "--name", "--sim-name"], - help="The name of the SIM.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.authentication_key = AAZStrArg( - options=["--authentication-key"], - arg_group="Properties", - help="The Ki value for the SIM.", - fmt=AAZStrArgFormat( - pattern="^[0-9a-fA-F]{32}$", - ), - ) - _args_schema.device_type = AAZStrArg( - options=["--device-type"], - arg_group="Properties", - help="An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.", - ) - _args_schema.icc_id = AAZStrArg( - options=["--icc-id"], - arg_group="Properties", - help="The integrated circuit card ID (ICCID) for the SIM.", - fmt=AAZStrArgFormat( - pattern="^[0-9]{10,20}$", - ), - ) - _args_schema.international_msi = AAZStrArg( - options=["--international-msi"], - arg_group="Properties", - help="The international mobile subscriber identity (IMSI) for the SIM.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[0-9]{5,15}$", - ), - ) - _args_schema.operator_key_code = AAZStrArg( - options=["--operator-key-code"], - arg_group="Properties", - help="The Opc value for the SIM.", - fmt=AAZStrArgFormat( - pattern="^[0-9a-fA-F]{32}$", - ), - ) - _args_schema.sim_policy = AAZObjectArg( - options=["--sim-policy"], - arg_group="Properties", - help="The SIM policy used by this SIM.", - ) - _args_schema.static_ip_config = AAZListArg( - options=["--static-ip-config"], - arg_group="Properties", - help="A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - - sim_policy = cls._args_schema.sim_policy - sim_policy.id = AAZStrArg( - options=["id"], - help="SIM policy resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[sS][iI][mM][pP][oO][lL][iI][cC][iI][eE][sS]/[^/?#]+$", - ), - ) - - static_ip_config = cls._args_schema.static_ip_config - static_ip_config.Element = AAZObjectArg() - - _element = cls._args_schema.static_ip_config.Element - _element.attached_data_network = AAZObjectArg( - options=["attached-data-network"], - help="The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.", - ) - _element.slice = AAZObjectArg( - options=["slice"], - help="The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.", - ) - _element.static_ip = AAZObjectArg( - options=["static-ip"], - help="The static IP configuration for the SIM to use at the defined network scope.", - ) - - attached_data_network = cls._args_schema.static_ip_config.Element.attached_data_network - attached_data_network.id = AAZStrArg( - options=["id"], - help="Attached data network resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[pP][aA][cC][kK][eE][tT][cC][oO][rR][eE][cC][oO][nN][tT][rR][oO][lL][pP][lL][aA][nN][eE][sS]/[^/?#]+/[pP][aA][cC][kK][eE][tT][cC][oO][rR][eE][dD][aA][tT][aA][pP][lL][aA][nN][eE][sS]/[^/?#]+/[aA][tT][tT][aA][cC][hH][eE][dD][dD][aA][tT][aA][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+$", - ), - ) - - slice = cls._args_schema.static_ip_config.Element.slice - slice.id = AAZStrArg( - options=["id"], - help="Slice resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[sS][lL][iI][cC][eE][sS]/[^/?#]+$", - ), - ) - - static_ip = cls._args_schema.static_ip_config.Element.static_ip - static_ip.ipv4_address = AAZStrArg( - options=["ipv4-address"], - help="The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.SimsCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class SimsCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, - required=True, - ), - **self.serialize_url_param( - "simName", self.ctx.args.sim_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("authenticationKey", AAZStrType, ".authentication_key", typ_kwargs={"flags": {"secret": True}}) - properties.set_prop("deviceType", AAZStrType, ".device_type") - properties.set_prop("integratedCircuitCardIdentifier", AAZStrType, ".icc_id") - properties.set_prop("internationalMobileSubscriberIdentity", AAZStrType, ".international_msi", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("operatorKeyCode", AAZStrType, ".operator_key_code", typ_kwargs={"flags": {"secret": True}}) - properties.set_prop("simPolicy", AAZObjectType, ".sim_policy") - properties.set_prop("staticIpConfiguration", AAZListType, ".static_ip_config") - - sim_policy = _builder.get(".properties.simPolicy") - if sim_policy is not None: - sim_policy.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - static_ip_configuration = _builder.get(".properties.staticIpConfiguration") - if static_ip_configuration is not None: - static_ip_configuration.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.staticIpConfiguration[]") - if _elements is not None: - _elements.set_prop("attachedDataNetwork", AAZObjectType, ".attached_data_network") - _elements.set_prop("slice", AAZObjectType, ".slice") - _elements.set_prop("staticIp", AAZObjectType, ".static_ip") - - attached_data_network = _builder.get(".properties.staticIpConfiguration[].attachedDataNetwork") - if attached_data_network is not None: - attached_data_network.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - slice = _builder.get(".properties.staticIpConfiguration[].slice") - if slice is not None: - slice.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - static_ip = _builder.get(".properties.staticIpConfiguration[].staticIp") - if static_ip is not None: - static_ip.set_prop("ipv4Address", AAZStrType, ".ipv4_address") - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - - _schema_on_200_201 = cls._schema_on_200_201 - _schema_on_200_201.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200_201.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200_201.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200_201.properties - properties.device_type = AAZStrType( - serialized_name="deviceType", - ) - properties.integrated_circuit_card_identifier = AAZStrType( - serialized_name="integratedCircuitCardIdentifier", - ) - properties.international_mobile_subscriber_identity = AAZStrType( - serialized_name="internationalMobileSubscriberIdentity", - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.sim_policy = AAZObjectType( - serialized_name="simPolicy", - ) - properties.sim_state = AAZStrType( - serialized_name="simState", - flags={"read_only": True}, - ) - properties.site_provisioning_state = AAZDictType( - serialized_name="siteProvisioningState", - flags={"read_only": True}, - ) - properties.static_ip_configuration = AAZListType( - serialized_name="staticIpConfiguration", - ) - properties.vendor_key_fingerprint = AAZStrType( - serialized_name="vendorKeyFingerprint", - flags={"read_only": True}, - ) - properties.vendor_name = AAZStrType( - serialized_name="vendorName", - flags={"read_only": True}, - ) - - sim_policy = cls._schema_on_200_201.properties.sim_policy - sim_policy.id = AAZStrType( - flags={"required": True}, - ) - - site_provisioning_state = cls._schema_on_200_201.properties.site_provisioning_state - site_provisioning_state.Element = AAZStrType( - flags={"read_only": True}, - ) - - static_ip_configuration = cls._schema_on_200_201.properties.static_ip_configuration - static_ip_configuration.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.static_ip_configuration.Element - _element.attached_data_network = AAZObjectType( - serialized_name="attachedDataNetwork", - ) - _element.slice = AAZObjectType() - _element.static_ip = AAZObjectType( - serialized_name="staticIp", - ) - - attached_data_network = cls._schema_on_200_201.properties.static_ip_configuration.Element.attached_data_network - attached_data_network.id = AAZStrType( - flags={"required": True}, - ) - - slice = cls._schema_on_200_201.properties.static_ip_configuration.Element.slice - slice.id = AAZStrType( - flags={"required": True}, - ) - - static_ip = cls._schema_on_200_201.properties.static_ip_configuration.Element.static_ip - static_ip.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - - system_data = cls._schema_on_200_201.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - return cls._schema_on_200_201 - - -class _CreateHelper: - """Helper class for Create""" - - -__all__ = ["Create"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_list.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_list.py deleted file mode 100644 index c799a380ab4..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_list.py +++ /dev/null @@ -1,290 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim list", -) -class List(AAZCommand): - """List all the SIMs in a SIM group. - - :example: List sims by resource group - az mobile-network sim list -g rg --sim-group-name sim-group-name - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}/sims", "2023-09-01"], - ] - } - - AZ_SUPPORT_PAGINATION = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_paging(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["--sim-group-name"], - help="The name of the SIM Group.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.SimsListByGroup(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) - next_link = self.deserialize_output(self.ctx.vars.instance.next_link) - return result, next_link - - class SimsListByGroup(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.next_link = AAZStrType( - serialized_name="nextLink", - flags={"read_only": True}, - ) - _schema_on_200.value = AAZListType() - - value = cls._schema_on_200.value - value.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.value.Element.properties - properties.device_type = AAZStrType( - serialized_name="deviceType", - ) - properties.integrated_circuit_card_identifier = AAZStrType( - serialized_name="integratedCircuitCardIdentifier", - ) - properties.international_mobile_subscriber_identity = AAZStrType( - serialized_name="internationalMobileSubscriberIdentity", - flags={"required": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.sim_policy = AAZObjectType( - serialized_name="simPolicy", - ) - properties.sim_state = AAZStrType( - serialized_name="simState", - flags={"read_only": True}, - ) - properties.site_provisioning_state = AAZDictType( - serialized_name="siteProvisioningState", - flags={"read_only": True}, - ) - properties.static_ip_configuration = AAZListType( - serialized_name="staticIpConfiguration", - ) - properties.vendor_key_fingerprint = AAZStrType( - serialized_name="vendorKeyFingerprint", - flags={"read_only": True}, - ) - properties.vendor_name = AAZStrType( - serialized_name="vendorName", - flags={"read_only": True}, - ) - - sim_policy = cls._schema_on_200.value.Element.properties.sim_policy - sim_policy.id = AAZStrType( - flags={"required": True}, - ) - - site_provisioning_state = cls._schema_on_200.value.Element.properties.site_provisioning_state - site_provisioning_state.Element = AAZStrType( - flags={"read_only": True}, - ) - - static_ip_configuration = cls._schema_on_200.value.Element.properties.static_ip_configuration - static_ip_configuration.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.static_ip_configuration.Element - _element.attached_data_network = AAZObjectType( - serialized_name="attachedDataNetwork", - ) - _element.slice = AAZObjectType() - _element.static_ip = AAZObjectType( - serialized_name="staticIp", - ) - - attached_data_network = cls._schema_on_200.value.Element.properties.static_ip_configuration.Element.attached_data_network - attached_data_network.id = AAZStrType( - flags={"required": True}, - ) - - slice = cls._schema_on_200.value.Element.properties.static_ip_configuration.Element.slice - slice.id = AAZStrType( - flags={"required": True}, - ) - - static_ip = cls._schema_on_200.value.Element.properties.static_ip_configuration.Element.static_ip - static_ip.ipv4_address = AAZStrType( - serialized_name="ipv4Address", - ) - - system_data = cls._schema_on_200.value.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - return cls._schema_on_200 - - -class _ListHelper: - """Helper class for List""" - - -__all__ = ["List"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/__cmd_group.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/__cmd_group.py deleted file mode 100644 index 91f09a1fbb2..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/__cmd_group.py +++ /dev/null @@ -1,23 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command_group( - "mobile-network sim group", -) -class __CMDGroup(AAZCommandGroup): - """Manage sim group - """ - pass - - -__all__ = ["__CMDGroup"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/__init__.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/__init__.py deleted file mode 100644 index 6fac53aa311..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/__init__.py +++ /dev/null @@ -1,19 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from .__cmd_group import * -from ._bulk_delete_sims import * -from ._bulk_upload_sims import * -from ._create import * -from ._delete import * -from ._list import * -from ._show import * -from ._update import * -from ._wait import * diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_bulk_delete_sims.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_bulk_delete_sims.py deleted file mode 100644 index e79e646a3f2..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_bulk_delete_sims.py +++ /dev/null @@ -1,301 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim group bulk-delete-sims", -) -class BulkDeleteSims(AAZCommand): - """Bulk delete SIMs from a SIM group. - - :example: Deleting multiple sims in a sim group - az mobile-network sim group bulk-delete-sims -g group --sim-group-name SimGroup --sims "sim01,sim02" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}/deletesims", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["--sim-group-name"], - help="The name of the SIM Group.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.sims = AAZListArg( - options=["--sims"], - arg_group="Parameters", - help="A list of SIM resource names to delete.", - required=True, - ) - - sims = cls._args_schema.sims - sims.Element = AAZStrArg() - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.SimsBulkDelete(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class SimsBulkDelete(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [204]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_204, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/deleteSims", - **self.url_parameters - ) - - @property - def method(self): - return "POST" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("sims", AAZListType, ".sims", typ_kwargs={"flags": {"required": True}}) - - sims = _builder.get(".sims") - if sims is not None: - sims.set_elements(AAZStrType, ".") - - return self.serialize_content(_content_value) - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.end_time = AAZStrType( - serialized_name="endTime", - ) - _schema_on_200.error = AAZObjectType() - _BulkDeleteSimsHelper._build_schema_error_detail_read(_schema_on_200.error) - _schema_on_200.id = AAZStrType() - _schema_on_200.name = AAZStrType() - _schema_on_200.percent_complete = AAZFloatType( - serialized_name="percentComplete", - ) - _schema_on_200.properties = AAZObjectType() - _schema_on_200.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _schema_on_200.start_time = AAZStrType( - serialized_name="startTime", - ) - _schema_on_200.status = AAZStrType( - flags={"required": True}, - ) - - return cls._schema_on_200 - - def on_204(self, session): - pass - - -class _BulkDeleteSimsHelper: - """Helper class for BulkDeleteSims""" - - _schema_error_detail_read = None - - @classmethod - def _build_schema_error_detail_read(cls, _schema): - if cls._schema_error_detail_read is not None: - _schema.additional_info = cls._schema_error_detail_read.additional_info - _schema.code = cls._schema_error_detail_read.code - _schema.details = cls._schema_error_detail_read.details - _schema.message = cls._schema_error_detail_read.message - _schema.target = cls._schema_error_detail_read.target - return - - cls._schema_error_detail_read = _schema_error_detail_read = AAZObjectType() - - error_detail_read = _schema_error_detail_read - error_detail_read.additional_info = AAZListType( - serialized_name="additionalInfo", - flags={"read_only": True}, - ) - error_detail_read.code = AAZStrType( - flags={"read_only": True}, - ) - error_detail_read.details = AAZListType( - flags={"read_only": True}, - ) - error_detail_read.message = AAZStrType( - flags={"read_only": True}, - ) - error_detail_read.target = AAZStrType( - flags={"read_only": True}, - ) - - additional_info = _schema_error_detail_read.additional_info - additional_info.Element = AAZObjectType() - - _element = _schema_error_detail_read.additional_info.Element - _element.info = AAZObjectType( - flags={"read_only": True}, - ) - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - details = _schema_error_detail_read.details - details.Element = AAZObjectType() - cls._build_schema_error_detail_read(details.Element) - - _schema.additional_info = cls._schema_error_detail_read.additional_info - _schema.code = cls._schema_error_detail_read.code - _schema.details = cls._schema_error_detail_read.details - _schema.message = cls._schema_error_detail_read.message - _schema.target = cls._schema_error_detail_read.target - - -__all__ = ["BulkDeleteSims"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_bulk_upload_sims.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_bulk_upload_sims.py deleted file mode 100644 index ee17b56655e..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_bulk_upload_sims.py +++ /dev/null @@ -1,438 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim group bulk-upload-sims", -) -class BulkUploadSims(AAZCommand): - """Bulk upload SIMs to a SIM group. - - :example: Uploading multiple sims to a sim group - az mobile-network sim group bulk-upload-sims -g rg --sim-group-name SimGroup --sims "[{name:bulk-upload-sim-01,authentication-key:00000000000000000000000000000000,operator-key-code:00000000000000000000000000000000,international-msi:0000000000},{name:bulk-upload-sim-02,authentication-key:00000000000000000000000000000001,operator-key-code:00000000000000000000000000000001,international-msi:0000000001}]" - az mobile-network sim group bulk-upload-sims -g rg --sim-group-name SimGroup --sims "[{name:bulk-upload-sim-01,authentication-key:00000000000000000000000000000000,operator-key-code:00000000000000000000000000000000,international-msi:0000000000,icc-id:00000000000000000000,device-type:camera,sim-policy:{id:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.MobileNetwork/mobileNetworks/mobile-network/simPolicies/policy01},static-ip-configuration:[{attached-data-network:{id:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp01/packetCoreDataPlanes/pccp01/attachedDataNetworks/internet1},slice:{id:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.MobileNetwork/mobileNetworks/mobile-network/slices/slice01},static-ip:{ipv4-address:2.4.0.10}}]}]" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}/uploadsims", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["--sim-group-name"], - help="The name of the SIM Group.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.sims = AAZListArg( - options=["--sims"], - arg_group="Parameters", - help="A list of SIMs to upload.", - required=True, - ) - - sims = cls._args_schema.sims - sims.Element = AAZObjectArg() - - _element = cls._args_schema.sims.Element - _element.name = AAZStrArg( - options=["name"], - help="The name of the SIM.", - required=True, - ) - _element.authentication_key = AAZStrArg( - options=["authentication-key"], - help="The Ki value for the SIM.", - fmt=AAZStrArgFormat( - pattern="^[0-9a-fA-F]{32}$", - ), - ) - _element.device_type = AAZStrArg( - options=["device-type"], - help="An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.", - ) - _element.icc_id = AAZStrArg( - options=["icc-id"], - help="The integrated circuit card ID (ICCID) for the SIM.", - fmt=AAZStrArgFormat( - pattern="^[0-9]{10,20}$", - ), - ) - _element.international_msi = AAZStrArg( - options=["international-msi"], - help="The international mobile subscriber identity (IMSI) for the SIM.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[0-9]{5,15}$", - ), - ) - _element.operator_key_code = AAZStrArg( - options=["operator-key-code"], - help="The Opc value for the SIM.", - fmt=AAZStrArgFormat( - pattern="^[0-9a-fA-F]{32}$", - ), - ) - _element.sim_policy = AAZObjectArg( - options=["sim-policy"], - help="The SIM policy used by this SIM. The SIM policy must be in the same location as the SIM.", - ) - _element.static_ip_configuration = AAZListArg( - options=["static-ip-configuration"], - help="A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - - sim_policy = cls._args_schema.sims.Element.sim_policy - sim_policy.id = AAZStrArg( - options=["id"], - help="SIM policy resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[sS][iI][mM][pP][oO][lL][iI][cC][iI][eE][sS]/[^/?#]+$", - ), - ) - - static_ip_configuration = cls._args_schema.sims.Element.static_ip_configuration - static_ip_configuration.Element = AAZObjectArg() - - _element = cls._args_schema.sims.Element.static_ip_configuration.Element - _element.attached_data_network = AAZObjectArg( - options=["attached-data-network"], - help="The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address. The attached data network must be in the same location as the SIM.", - ) - _element.slice = AAZObjectArg( - options=["slice"], - help="The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address. The slice must be in the same location as the SIM.", - ) - _element.static_ip = AAZObjectArg( - options=["static-ip"], - help="The static IP configuration for the SIM to use at the defined network scope.", - ) - - attached_data_network = cls._args_schema.sims.Element.static_ip_configuration.Element.attached_data_network - attached_data_network.id = AAZStrArg( - options=["id"], - help="Attached data network resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[pP][aA][cC][kK][eE][tT][cC][oO][rR][eE][cC][oO][nN][tT][rR][oO][lL][pP][lL][aA][nN][eE][sS]/[^/?#]+/[pP][aA][cC][kK][eE][tT][cC][oO][rR][eE][dD][aA][tT][aA][pP][lL][aA][nN][eE][sS]/[^/?#]+/[aA][tT][tT][aA][cC][hH][eE][dD][dD][aA][tT][aA][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+$", - ), - ) - - slice = cls._args_schema.sims.Element.static_ip_configuration.Element.slice - slice.id = AAZStrArg( - options=["id"], - help="Slice resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[sS][lL][iI][cC][eE][sS]/[^/?#]+$", - ), - ) - - static_ip = cls._args_schema.sims.Element.static_ip_configuration.Element.static_ip - static_ip.ipv4_address = AAZStrArg( - options=["ipv4-address"], - help="The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.", - fmt=AAZStrArgFormat( - pattern="^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$", - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.SimsBulkUpload(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class SimsBulkUpload(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/uploadSims", - **self.url_parameters - ) - - @property - def method(self): - return "POST" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("sims", AAZListType, ".sims", typ_kwargs={"flags": {"required": True}}) - - sims = _builder.get(".sims") - if sims is not None: - sims.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".sims[]") - if _elements is not None: - _elements.set_prop("name", AAZStrType, ".name", typ_kwargs={"flags": {"required": True}}) - _elements.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - - properties = _builder.get(".sims[].properties") - if properties is not None: - properties.set_prop("authenticationKey", AAZStrType, ".authentication_key", typ_kwargs={"flags": {"secret": True}}) - properties.set_prop("deviceType", AAZStrType, ".device_type") - properties.set_prop("integratedCircuitCardIdentifier", AAZStrType, ".icc_id") - properties.set_prop("internationalMobileSubscriberIdentity", AAZStrType, ".international_msi", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("operatorKeyCode", AAZStrType, ".operator_key_code", typ_kwargs={"flags": {"secret": True}}) - properties.set_prop("simPolicy", AAZObjectType, ".sim_policy") - properties.set_prop("staticIpConfiguration", AAZListType, ".static_ip_configuration") - - sim_policy = _builder.get(".sims[].properties.simPolicy") - if sim_policy is not None: - sim_policy.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - static_ip_configuration = _builder.get(".sims[].properties.staticIpConfiguration") - if static_ip_configuration is not None: - static_ip_configuration.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".sims[].properties.staticIpConfiguration[]") - if _elements is not None: - _elements.set_prop("attachedDataNetwork", AAZObjectType, ".attached_data_network") - _elements.set_prop("slice", AAZObjectType, ".slice") - _elements.set_prop("staticIp", AAZObjectType, ".static_ip") - - attached_data_network = _builder.get(".sims[].properties.staticIpConfiguration[].attachedDataNetwork") - if attached_data_network is not None: - attached_data_network.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - slice = _builder.get(".sims[].properties.staticIpConfiguration[].slice") - if slice is not None: - slice.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - static_ip = _builder.get(".sims[].properties.staticIpConfiguration[].staticIp") - if static_ip is not None: - static_ip.set_prop("ipv4Address", AAZStrType, ".ipv4_address") - - return self.serialize_content(_content_value) - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.end_time = AAZStrType( - serialized_name="endTime", - ) - _schema_on_200.error = AAZObjectType() - _BulkUploadSimsHelper._build_schema_error_detail_read(_schema_on_200.error) - _schema_on_200.id = AAZStrType() - _schema_on_200.name = AAZStrType() - _schema_on_200.percent_complete = AAZFloatType( - serialized_name="percentComplete", - ) - _schema_on_200.properties = AAZObjectType() - _schema_on_200.resource_id = AAZStrType( - serialized_name="resourceId", - ) - _schema_on_200.start_time = AAZStrType( - serialized_name="startTime", - ) - _schema_on_200.status = AAZStrType( - flags={"required": True}, - ) - - return cls._schema_on_200 - - -class _BulkUploadSimsHelper: - """Helper class for BulkUploadSims""" - - _schema_error_detail_read = None - - @classmethod - def _build_schema_error_detail_read(cls, _schema): - if cls._schema_error_detail_read is not None: - _schema.additional_info = cls._schema_error_detail_read.additional_info - _schema.code = cls._schema_error_detail_read.code - _schema.details = cls._schema_error_detail_read.details - _schema.message = cls._schema_error_detail_read.message - _schema.target = cls._schema_error_detail_read.target - return - - cls._schema_error_detail_read = _schema_error_detail_read = AAZObjectType() - - error_detail_read = _schema_error_detail_read - error_detail_read.additional_info = AAZListType( - serialized_name="additionalInfo", - flags={"read_only": True}, - ) - error_detail_read.code = AAZStrType( - flags={"read_only": True}, - ) - error_detail_read.details = AAZListType( - flags={"read_only": True}, - ) - error_detail_read.message = AAZStrType( - flags={"read_only": True}, - ) - error_detail_read.target = AAZStrType( - flags={"read_only": True}, - ) - - additional_info = _schema_error_detail_read.additional_info - additional_info.Element = AAZObjectType() - - _element = _schema_error_detail_read.additional_info.Element - _element.info = AAZObjectType( - flags={"read_only": True}, - ) - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - details = _schema_error_detail_read.details - details.Element = AAZObjectType() - cls._build_schema_error_detail_read(details.Element) - - _schema.additional_info = cls._schema_error_detail_read.additional_info - _schema.code = cls._schema_error_detail_read.code - _schema.details = cls._schema_error_detail_read.details - _schema.message = cls._schema_error_detail_read.message - _schema.target = cls._schema_error_detail_read.target - - -__all__ = ["BulkUploadSims"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_update.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_update.py deleted file mode 100644 index 4bd92a1f58e..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_update.py +++ /dev/null @@ -1,531 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim group update", -) -class Update(AAZCommand): - """Update a SIM group. - - :example: Update sim group tags - az mobile-network sim group update -n sim-group-name -g rg --tags "{tag:test,tag2:test2}" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - AZ_SUPPORT_GENERIC_UPDATE = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["-n", "--name", "--sim-group-name"], - help="The name of the SIM Group.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.identity = AAZObjectArg( - options=["--identity"], - arg_group="Parameters", - help="The identity used to retrieve the encryption key from Azure key vault.", - nullable=True, - ) - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - nullable=True, - ) - - identity = cls._args_schema.identity - identity.type = AAZStrArg( - options=["type"], - help="Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).", - enum={"None": "None", "UserAssigned": "UserAssigned"}, - ) - identity.user_assigned_identities = AAZDictArg( - options=["user-assigned-identities"], - help="The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.", - nullable=True, - ) - - user_assigned_identities = cls._args_schema.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectArg( - nullable=True, - blank={}, - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg( - nullable=True, - ) - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.encryption_key = AAZObjectArg( - options=["--encryption-key"], - arg_group="Properties", - help="A key to encrypt the SIM data that belongs to this SIM group.", - nullable=True, - ) - _args_schema.mobile_network = AAZObjectArg( - options=["--mobile-network"], - arg_group="Properties", - help="Mobile network that this SIM belongs to", - nullable=True, - ) - - encryption_key = cls._args_schema.encryption_key - encryption_key.key_url = AAZStrArg( - options=["key-url"], - help="The key URL, unversioned. For example: https://contosovault.vault.azure.net/keys/azureKey.", - nullable=True, - ) - - mobile_network = cls._args_schema.mobile_network - mobile_network.id = AAZStrArg( - options=["id"], - help="Mobile network resource ID.", - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+$", - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.SimGroupsGet(ctx=self.ctx)() - self.pre_instance_update(self.ctx.vars.instance) - self.InstanceUpdateByJson(ctx=self.ctx)() - self.InstanceUpdateByGeneric(ctx=self.ctx)() - self.post_instance_update(self.ctx.vars.instance) - yield self.SimGroupsCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - @register_callback - def pre_instance_update(self, instance): - pass - - @register_callback - def post_instance_update(self, instance): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class SimGroupsGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_sim_group_read(cls._schema_on_200) - - return cls._schema_on_200 - - class SimGroupsCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - value=self.ctx.vars.instance, - ) - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_sim_group_read(cls._schema_on_200_201) - - return cls._schema_on_200_201 - - class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): - - def __call__(self, *args, **kwargs): - self._update_instance(self.ctx.vars.instance) - - def _update_instance(self, instance): - _instance_value, _builder = self.new_content_builder( - self.ctx.args, - value=instance, - typ=AAZObjectType - ) - _builder.set_prop("identity", AAZObjectType, ".identity") - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - identity = _builder.get(".identity") - if identity is not None: - identity.set_prop("type", AAZStrType, ".type", typ_kwargs={"flags": {"required": True}}) - identity.set_prop("userAssignedIdentities", AAZDictType, ".user_assigned_identities") - - user_assigned_identities = _builder.get(".identity.userAssignedIdentities") - if user_assigned_identities is not None: - user_assigned_identities.set_elements(AAZObjectType, ".") - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("encryptionKey", AAZObjectType, ".encryption_key") - properties.set_prop("mobileNetwork", AAZObjectType, ".mobile_network") - - encryption_key = _builder.get(".properties.encryptionKey") - if encryption_key is not None: - encryption_key.set_prop("keyUrl", AAZStrType, ".key_url") - - mobile_network = _builder.get(".properties.mobileNetwork") - if mobile_network is not None: - mobile_network.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return _instance_value - - class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): - - def __call__(self, *args, **kwargs): - self._update_instance_by_generic( - self.ctx.vars.instance, - self.ctx.generic_update_args - ) - - -class _UpdateHelper: - """Helper class for Update""" - - _schema_sim_group_read = None - - @classmethod - def _build_schema_sim_group_read(cls, _schema): - if cls._schema_sim_group_read is not None: - _schema.id = cls._schema_sim_group_read.id - _schema.identity = cls._schema_sim_group_read.identity - _schema.location = cls._schema_sim_group_read.location - _schema.name = cls._schema_sim_group_read.name - _schema.properties = cls._schema_sim_group_read.properties - _schema.system_data = cls._schema_sim_group_read.system_data - _schema.tags = cls._schema_sim_group_read.tags - _schema.type = cls._schema_sim_group_read.type - return - - cls._schema_sim_group_read = _schema_sim_group_read = AAZObjectType() - - sim_group_read = _schema_sim_group_read - sim_group_read.id = AAZStrType( - flags={"read_only": True}, - ) - sim_group_read.identity = AAZObjectType() - sim_group_read.location = AAZStrType( - flags={"required": True}, - ) - sim_group_read.name = AAZStrType( - flags={"read_only": True}, - ) - sim_group_read.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - sim_group_read.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - sim_group_read.tags = AAZDictType() - sim_group_read.type = AAZStrType( - flags={"read_only": True}, - ) - - identity = _schema_sim_group_read.identity - identity.type = AAZStrType( - flags={"required": True}, - ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", - ) - - user_assigned_identities = _schema_sim_group_read.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = _schema_sim_group_read.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", - flags={"read_only": True}, - ) - _element.principal_id = AAZStrType( - serialized_name="principalId", - flags={"read_only": True}, - ) - - properties = _schema_sim_group_read.properties - properties.encryption_key = AAZObjectType( - serialized_name="encryptionKey", - ) - properties.mobile_network = AAZObjectType( - serialized_name="mobileNetwork", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - - encryption_key = _schema_sim_group_read.properties.encryption_key - encryption_key.key_url = AAZStrType( - serialized_name="keyUrl", - ) - - mobile_network = _schema_sim_group_read.properties.mobile_network - mobile_network.id = AAZStrType( - flags={"required": True}, - ) - - system_data = _schema_sim_group_read.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = _schema_sim_group_read.tags - tags.Element = AAZStrType() - - _schema.id = cls._schema_sim_group_read.id - _schema.identity = cls._schema_sim_group_read.identity - _schema.location = cls._schema_sim_group_read.location - _schema.name = cls._schema_sim_group_read.name - _schema.properties = cls._schema_sim_group_read.properties - _schema.system_data = cls._schema_sim_group_read.system_data - _schema.tags = cls._schema_sim_group_read.tags - _schema.type = cls._schema_sim_group_read.type - - -__all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/__cmd_group.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/__cmd_group.py deleted file mode 100644 index cd596a05f1f..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/__cmd_group.py +++ /dev/null @@ -1,23 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command_group( - "mobile-network sim policy", -) -class __CMDGroup(AAZCommandGroup): - """Manage sim policy - """ - pass - - -__all__ = ["__CMDGroup"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_create.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_create.py deleted file mode 100644 index 480369a35f0..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_create.py +++ /dev/null @@ -1,741 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim policy create", -) -class Create(AAZCommand): - """Create a SIM policy. - - :example: Create sim policy - az mobile-network sim policy create -g rg -n sim-policy-name --mobile-network-name mobile-network-name --default-slice '{id:slice-id}' --slice-config "[{slice:{id:slice-id},defaultDataNetwork:{id:data-network-id},dataNetworkConfigurations:[{dataNetwork:{id:data-network-id},allowedServices:[{id:service-id}],sessionAmbr:{uplink:'500 Mbps',downlink:'1 Gbps'}}]}]" --ue-ambr "{uplink:'500 Mbps',downlink:'1 Gbps'}" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/simpolicies/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_policy_name = AAZStrArg( - options=["-n", "--name", "--sim-policy-name"], - help="The name of the SIM policy.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.location = AAZResourceLocationArg( - arg_group="Parameters", - help="The geo-location where the resource lives", - required=True, - fmt=AAZResourceLocationArgFormat( - resource_group_arg="resource_group", - ), - ) - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg() - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.default_slice = AAZObjectArg( - options=["--default-slice"], - arg_group="Properties", - help="The default slice to use if the UE does not explicitly specify it. This slice must exist in the `sliceConfigurations` map.", - required=True, - ) - cls._build_args_slice_resource_id_create(_args_schema.default_slice) - _args_schema.registration_timer = AAZIntArg( - options=["--registration-timer"], - arg_group="Properties", - help="Interval for the UE periodic registration update procedure, in seconds.", - default=3240, - fmt=AAZIntArgFormat( - minimum=30, - ), - ) - _args_schema.rfsp_index = AAZIntArg( - options=["--rfsp-index"], - arg_group="Properties", - help="RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413. This is an optional setting and by default is unspecified.", - fmt=AAZIntArgFormat( - maximum=256, - minimum=1, - ), - ) - _args_schema.slice_config = AAZListArg( - options=["--slice-config"], - arg_group="Properties", - help="The allowed slices and the settings to use for them. The list must not contain duplicate items and must contain at least one item.", - required=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.ue_ambr = AAZObjectArg( - options=["--ue-ambr"], - arg_group="Properties", - help="Aggregate maximum bit rate across all non-GBR QoS flows of all PDU sessions of a given UE. See 3GPP TS23.501 section 5.7.2.6 for a full description of the UE-AMBR.", - required=True, - ) - cls._build_args_ambr_create(_args_schema.ue_ambr) - - slice_config = cls._args_schema.slice_config - slice_config.Element = AAZObjectArg() - - _element = cls._args_schema.slice_config.Element - _element.data_network_configurations = AAZListArg( - options=["data-network-configurations"], - help="The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.", - required=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.default_data_network = AAZObjectArg( - options=["default-data-network"], - help="The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the `dataNetworkConfigurations` map.", - required=True, - ) - cls._build_args_data_network_resource_id_create(_element.default_data_network) - _element.slice = AAZObjectArg( - options=["slice"], - help="A reference to the slice that these settings apply to", - required=True, - ) - cls._build_args_slice_resource_id_create(_element.slice) - - data_network_configurations = cls._args_schema.slice_config.Element.data_network_configurations - data_network_configurations.Element = AAZObjectArg() - - _element = cls._args_schema.slice_config.Element.data_network_configurations.Element - _element.five_qi = AAZIntArg( - options=["five-qi"], - help="Default QoS Flow 5G QoS Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. This must not be a standardized 5QI value corresponding to a GBR (guaranteed bit rate) QoS Flow. The illegal GBR 5QI values are: 1, 2, 3, 4, 65, 66, 67, 71, 72, 73, 74, 75, 76, 82, 83, 84, and 85. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition of which are the GBR 5QI values.", - default=9, - fmt=AAZIntArgFormat( - maximum=255, - minimum=0, - ), - ) - _element.additional_session_type = AAZListArg( - options=["additional-session-type"], - help="Allowed session types in addition to the default session type. Must not duplicate the default session type.", - ) - _element.arp_level = AAZIntArg( - options=["arp-level"], - help="Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - default=9, - fmt=AAZIntArgFormat( - maximum=15, - minimum=1, - ), - ) - _element.allowed_services = AAZListArg( - options=["allowed-services"], - help="List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item.", - required=True, - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.data_network = AAZObjectArg( - options=["data-network"], - help="A reference to the data network that these settings apply to", - required=True, - ) - cls._build_args_data_network_resource_id_create(_element.data_network) - _element.default_session_type = AAZStrArg( - options=["default-session-type"], - help="The default PDU session type, which is used if the UE does not request a specific session type.", - default="IPv4", - enum={"IPv4": "IPv4", "IPv6": "IPv6"}, - ) - _element.maximum_number_of_buffered_packets = AAZIntArg( - options=["maximum-number-of-buffered-packets"], - help="The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.", - default=10, - fmt=AAZIntArgFormat( - minimum=0, - ), - ) - _element.preemption_capability = AAZStrArg( - options=["preemption-capability"], - help="Default QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - default="NotPreempt", - enum={"MayPreempt": "MayPreempt", "NotPreempt": "NotPreempt"}, - ) - _element.preemption_vulnerability = AAZStrArg( - options=["preemption-vulnerability"], - help="Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - default="Preemptable", - enum={"NotPreemptable": "NotPreemptable", "Preemptable": "Preemptable"}, - ) - _element.session_ambr = AAZObjectArg( - options=["session-ambr"], - help="Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.", - required=True, - ) - cls._build_args_ambr_create(_element.session_ambr) - - additional_session_type = cls._args_schema.slice_config.Element.data_network_configurations.Element.additional_session_type - additional_session_type.Element = AAZStrArg( - enum={"IPv4": "IPv4", "IPv6": "IPv6"}, - ) - - allowed_services = cls._args_schema.slice_config.Element.data_network_configurations.Element.allowed_services - allowed_services.Element = AAZObjectArg() - - _element = cls._args_schema.slice_config.Element.data_network_configurations.Element.allowed_services.Element - _element.id = AAZStrArg( - options=["id"], - help="Service resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[sS][eE][rR][vV][iI][cC][eE][sS]/[^/?#]+$", - ), - ) - return cls._args_schema - - _args_ambr_create = None - - @classmethod - def _build_args_ambr_create(cls, _schema): - if cls._args_ambr_create is not None: - _schema.downlink = cls._args_ambr_create.downlink - _schema.uplink = cls._args_ambr_create.uplink - return - - cls._args_ambr_create = AAZObjectArg() - - ambr_create = cls._args_ambr_create - ambr_create.downlink = AAZStrArg( - options=["downlink"], - help="Downlink bit rate.", - required=True, - fmt=AAZStrArgFormat( - pattern="^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$", - ), - ) - ambr_create.uplink = AAZStrArg( - options=["uplink"], - help="Uplink bit rate.", - required=True, - fmt=AAZStrArgFormat( - pattern="^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$", - ), - ) - - _schema.downlink = cls._args_ambr_create.downlink - _schema.uplink = cls._args_ambr_create.uplink - - _args_data_network_resource_id_create = None - - @classmethod - def _build_args_data_network_resource_id_create(cls, _schema): - if cls._args_data_network_resource_id_create is not None: - _schema.id = cls._args_data_network_resource_id_create.id - return - - cls._args_data_network_resource_id_create = AAZObjectArg() - - data_network_resource_id_create = cls._args_data_network_resource_id_create - data_network_resource_id_create.id = AAZStrArg( - options=["id"], - help="Data network resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[dD][aA][tT][aA][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+$", - ), - ) - - _schema.id = cls._args_data_network_resource_id_create.id - - _args_slice_resource_id_create = None - - @classmethod - def _build_args_slice_resource_id_create(cls, _schema): - if cls._args_slice_resource_id_create is not None: - _schema.id = cls._args_slice_resource_id_create.id - return - - cls._args_slice_resource_id_create = AAZObjectArg() - - slice_resource_id_create = cls._args_slice_resource_id_create - slice_resource_id_create.id = AAZStrArg( - options=["id"], - help="Slice resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[sS][lL][iI][cC][eE][sS]/[^/?#]+$", - ), - ) - - _schema.id = cls._args_slice_resource_id_create.id - - def _execute_operations(self): - self.pre_operations() - yield self.SimPoliciesCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class SimPoliciesCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simPolicyName", self.ctx.args.sim_policy_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - typ=AAZObjectType, - typ_kwargs={"flags": {"required": True, "client_flatten": True}} - ) - _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties") - if properties is not None: - _CreateHelper._build_schema_slice_resource_id_create(properties.set_prop("defaultSlice", AAZObjectType, ".default_slice", typ_kwargs={"flags": {"required": True}})) - properties.set_prop("registrationTimer", AAZIntType, ".registration_timer") - properties.set_prop("rfspIndex", AAZIntType, ".rfsp_index") - properties.set_prop("sliceConfigurations", AAZListType, ".slice_config", typ_kwargs={"flags": {"required": True}}) - _CreateHelper._build_schema_ambr_create(properties.set_prop("ueAmbr", AAZObjectType, ".ue_ambr", typ_kwargs={"flags": {"required": True}})) - - slice_configurations = _builder.get(".properties.sliceConfigurations") - if slice_configurations is not None: - slice_configurations.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.sliceConfigurations[]") - if _elements is not None: - _elements.set_prop("dataNetworkConfigurations", AAZListType, ".data_network_configurations", typ_kwargs={"flags": {"required": True}}) - _CreateHelper._build_schema_data_network_resource_id_create(_elements.set_prop("defaultDataNetwork", AAZObjectType, ".default_data_network", typ_kwargs={"flags": {"required": True}})) - _CreateHelper._build_schema_slice_resource_id_create(_elements.set_prop("slice", AAZObjectType, ".slice", typ_kwargs={"flags": {"required": True}})) - - data_network_configurations = _builder.get(".properties.sliceConfigurations[].dataNetworkConfigurations") - if data_network_configurations is not None: - data_network_configurations.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.sliceConfigurations[].dataNetworkConfigurations[]") - if _elements is not None: - _elements.set_prop("5qi", AAZIntType, ".five_qi") - _elements.set_prop("additionalAllowedSessionTypes", AAZListType, ".additional_session_type") - _elements.set_prop("allocationAndRetentionPriorityLevel", AAZIntType, ".arp_level") - _elements.set_prop("allowedServices", AAZListType, ".allowed_services", typ_kwargs={"flags": {"required": True}}) - _CreateHelper._build_schema_data_network_resource_id_create(_elements.set_prop("dataNetwork", AAZObjectType, ".data_network", typ_kwargs={"flags": {"required": True}})) - _elements.set_prop("defaultSessionType", AAZStrType, ".default_session_type") - _elements.set_prop("maximumNumberOfBufferedPackets", AAZIntType, ".maximum_number_of_buffered_packets") - _elements.set_prop("preemptionCapability", AAZStrType, ".preemption_capability") - _elements.set_prop("preemptionVulnerability", AAZStrType, ".preemption_vulnerability") - _CreateHelper._build_schema_ambr_create(_elements.set_prop("sessionAmbr", AAZObjectType, ".session_ambr", typ_kwargs={"flags": {"required": True}})) - - additional_allowed_session_types = _builder.get(".properties.sliceConfigurations[].dataNetworkConfigurations[].additionalAllowedSessionTypes") - if additional_allowed_session_types is not None: - additional_allowed_session_types.set_elements(AAZStrType, ".") - - allowed_services = _builder.get(".properties.sliceConfigurations[].dataNetworkConfigurations[].allowedServices") - if allowed_services is not None: - allowed_services.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.sliceConfigurations[].dataNetworkConfigurations[].allowedServices[]") - if _elements is not None: - _elements.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - - _schema_on_200_201 = cls._schema_on_200_201 - _schema_on_200_201.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200_201.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200_201.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200_201.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200_201.tags = AAZDictType() - _schema_on_200_201.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200_201.properties - properties.default_slice = AAZObjectType( - serialized_name="defaultSlice", - flags={"required": True}, - ) - _CreateHelper._build_schema_slice_resource_id_read(properties.default_slice) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.registration_timer = AAZIntType( - serialized_name="registrationTimer", - ) - properties.rfsp_index = AAZIntType( - serialized_name="rfspIndex", - ) - properties.site_provisioning_state = AAZDictType( - serialized_name="siteProvisioningState", - flags={"read_only": True}, - ) - properties.slice_configurations = AAZListType( - serialized_name="sliceConfigurations", - flags={"required": True}, - ) - properties.ue_ambr = AAZObjectType( - serialized_name="ueAmbr", - flags={"required": True}, - ) - _CreateHelper._build_schema_ambr_read(properties.ue_ambr) - - site_provisioning_state = cls._schema_on_200_201.properties.site_provisioning_state - site_provisioning_state.Element = AAZStrType( - flags={"read_only": True}, - ) - - slice_configurations = cls._schema_on_200_201.properties.slice_configurations - slice_configurations.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.slice_configurations.Element - _element.data_network_configurations = AAZListType( - serialized_name="dataNetworkConfigurations", - flags={"required": True}, - ) - _element.default_data_network = AAZObjectType( - serialized_name="defaultDataNetwork", - flags={"required": True}, - ) - _CreateHelper._build_schema_data_network_resource_id_read(_element.default_data_network) - _element.slice = AAZObjectType( - flags={"required": True}, - ) - _CreateHelper._build_schema_slice_resource_id_read(_element.slice) - - data_network_configurations = cls._schema_on_200_201.properties.slice_configurations.Element.data_network_configurations - data_network_configurations.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.slice_configurations.Element.data_network_configurations.Element - _element["5qi"] = AAZIntType() - _element.additional_allowed_session_types = AAZListType( - serialized_name="additionalAllowedSessionTypes", - ) - _element.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - _element.allowed_services = AAZListType( - serialized_name="allowedServices", - flags={"required": True}, - ) - _element.data_network = AAZObjectType( - serialized_name="dataNetwork", - flags={"required": True}, - ) - _CreateHelper._build_schema_data_network_resource_id_read(_element.data_network) - _element.default_session_type = AAZStrType( - serialized_name="defaultSessionType", - ) - _element.maximum_number_of_buffered_packets = AAZIntType( - serialized_name="maximumNumberOfBufferedPackets", - ) - _element.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - _element.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - _element.session_ambr = AAZObjectType( - serialized_name="sessionAmbr", - flags={"required": True}, - ) - _CreateHelper._build_schema_ambr_read(_element.session_ambr) - - additional_allowed_session_types = cls._schema_on_200_201.properties.slice_configurations.Element.data_network_configurations.Element.additional_allowed_session_types - additional_allowed_session_types.Element = AAZStrType() - - allowed_services = cls._schema_on_200_201.properties.slice_configurations.Element.data_network_configurations.Element.allowed_services - allowed_services.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.slice_configurations.Element.data_network_configurations.Element.allowed_services.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200_201.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200_201.tags - tags.Element = AAZStrType() - - return cls._schema_on_200_201 - - -class _CreateHelper: - """Helper class for Create""" - - @classmethod - def _build_schema_ambr_create(cls, _builder): - if _builder is None: - return - _builder.set_prop("downlink", AAZStrType, ".downlink", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("uplink", AAZStrType, ".uplink", typ_kwargs={"flags": {"required": True}}) - - @classmethod - def _build_schema_data_network_resource_id_create(cls, _builder): - if _builder is None: - return - _builder.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - @classmethod - def _build_schema_slice_resource_id_create(cls, _builder): - if _builder is None: - return - _builder.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - _schema_ambr_read = None - - @classmethod - def _build_schema_ambr_read(cls, _schema): - if cls._schema_ambr_read is not None: - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - return - - cls._schema_ambr_read = _schema_ambr_read = AAZObjectType() - - ambr_read = _schema_ambr_read - ambr_read.downlink = AAZStrType( - flags={"required": True}, - ) - ambr_read.uplink = AAZStrType( - flags={"required": True}, - ) - - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - - _schema_data_network_resource_id_read = None - - @classmethod - def _build_schema_data_network_resource_id_read(cls, _schema): - if cls._schema_data_network_resource_id_read is not None: - _schema.id = cls._schema_data_network_resource_id_read.id - return - - cls._schema_data_network_resource_id_read = _schema_data_network_resource_id_read = AAZObjectType() - - data_network_resource_id_read = _schema_data_network_resource_id_read - data_network_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_data_network_resource_id_read.id - - _schema_slice_resource_id_read = None - - @classmethod - def _build_schema_slice_resource_id_read(cls, _schema): - if cls._schema_slice_resource_id_read is not None: - _schema.id = cls._schema_slice_resource_id_read.id - return - - cls._schema_slice_resource_id_read = _schema_slice_resource_id_read = AAZObjectType() - - slice_resource_id_read = _schema_slice_resource_id_read - slice_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_slice_resource_id_read.id - - -__all__ = ["Create"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_delete.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_delete.py deleted file mode 100644 index 63c9e6830f9..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_delete.py +++ /dev/null @@ -1,181 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim policy delete", - confirmation="Are you sure you want to perform this operation?", -) -class Delete(AAZCommand): - """Delete the specified SIM policy. - - :example: Delete sim policy - az mobile-network sim policy delete -g rg -n sim-policy-name --mobile-network-name mobile-network-name - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/simpolicies/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, None) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_policy_name = AAZStrArg( - options=["-n", "--name", "--sim-policy-name"], - help="The name of the SIM policy.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.SimPoliciesDelete(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - class SimPoliciesDelete(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [204]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_204, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}", - **self.url_parameters - ) - - @property - def method(self): - return "DELETE" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simPolicyName", self.ctx.args.sim_policy_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - def on_200(self, session): - pass - - def on_204(self, session): - pass - - -class _DeleteHelper: - """Helper class for Delete""" - - -__all__ = ["Delete"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_list.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_list.py deleted file mode 100644 index cf2836cfef5..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_list.py +++ /dev/null @@ -1,380 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim policy list", -) -class List(AAZCommand): - """List all the SIM policies in a mobile network. - - :example: List sim policy by resource group - az mobile-network sim policy list -g rg --mobile-network-name mobile-network-name - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/simpolicies", "2023-09-01"], - ] - } - - AZ_SUPPORT_PAGINATION = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_paging(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.SimPoliciesListByMobileNetwork(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) - next_link = self.deserialize_output(self.ctx.vars.instance.next_link) - return result, next_link - - class SimPoliciesListByMobileNetwork(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.next_link = AAZStrType( - serialized_name="nextLink", - flags={"read_only": True}, - ) - _schema_on_200.value = AAZListType() - - value = cls._schema_on_200.value - value.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element - _element.id = AAZStrType( - flags={"read_only": True}, - ) - _element.location = AAZStrType( - flags={"required": True}, - ) - _element.name = AAZStrType( - flags={"read_only": True}, - ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _element.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _element.tags = AAZDictType() - _element.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.value.Element.properties - properties.default_slice = AAZObjectType( - serialized_name="defaultSlice", - flags={"required": True}, - ) - _ListHelper._build_schema_slice_resource_id_read(properties.default_slice) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.registration_timer = AAZIntType( - serialized_name="registrationTimer", - ) - properties.rfsp_index = AAZIntType( - serialized_name="rfspIndex", - ) - properties.site_provisioning_state = AAZDictType( - serialized_name="siteProvisioningState", - flags={"read_only": True}, - ) - properties.slice_configurations = AAZListType( - serialized_name="sliceConfigurations", - flags={"required": True}, - ) - properties.ue_ambr = AAZObjectType( - serialized_name="ueAmbr", - flags={"required": True}, - ) - _ListHelper._build_schema_ambr_read(properties.ue_ambr) - - site_provisioning_state = cls._schema_on_200.value.Element.properties.site_provisioning_state - site_provisioning_state.Element = AAZStrType( - flags={"read_only": True}, - ) - - slice_configurations = cls._schema_on_200.value.Element.properties.slice_configurations - slice_configurations.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.slice_configurations.Element - _element.data_network_configurations = AAZListType( - serialized_name="dataNetworkConfigurations", - flags={"required": True}, - ) - _element.default_data_network = AAZObjectType( - serialized_name="defaultDataNetwork", - flags={"required": True}, - ) - _ListHelper._build_schema_data_network_resource_id_read(_element.default_data_network) - _element.slice = AAZObjectType( - flags={"required": True}, - ) - _ListHelper._build_schema_slice_resource_id_read(_element.slice) - - data_network_configurations = cls._schema_on_200.value.Element.properties.slice_configurations.Element.data_network_configurations - data_network_configurations.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.slice_configurations.Element.data_network_configurations.Element - _element["5qi"] = AAZIntType() - _element.additional_allowed_session_types = AAZListType( - serialized_name="additionalAllowedSessionTypes", - ) - _element.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - _element.allowed_services = AAZListType( - serialized_name="allowedServices", - flags={"required": True}, - ) - _element.data_network = AAZObjectType( - serialized_name="dataNetwork", - flags={"required": True}, - ) - _ListHelper._build_schema_data_network_resource_id_read(_element.data_network) - _element.default_session_type = AAZStrType( - serialized_name="defaultSessionType", - ) - _element.maximum_number_of_buffered_packets = AAZIntType( - serialized_name="maximumNumberOfBufferedPackets", - ) - _element.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - _element.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - _element.session_ambr = AAZObjectType( - serialized_name="sessionAmbr", - flags={"required": True}, - ) - _ListHelper._build_schema_ambr_read(_element.session_ambr) - - additional_allowed_session_types = cls._schema_on_200.value.Element.properties.slice_configurations.Element.data_network_configurations.Element.additional_allowed_session_types - additional_allowed_session_types.Element = AAZStrType() - - allowed_services = cls._schema_on_200.value.Element.properties.slice_configurations.Element.data_network_configurations.Element.allowed_services - allowed_services.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.slice_configurations.Element.data_network_configurations.Element.allowed_services.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200.value.Element.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.value.Element.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _ListHelper: - """Helper class for List""" - - _schema_ambr_read = None - - @classmethod - def _build_schema_ambr_read(cls, _schema): - if cls._schema_ambr_read is not None: - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - return - - cls._schema_ambr_read = _schema_ambr_read = AAZObjectType() - - ambr_read = _schema_ambr_read - ambr_read.downlink = AAZStrType( - flags={"required": True}, - ) - ambr_read.uplink = AAZStrType( - flags={"required": True}, - ) - - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - - _schema_data_network_resource_id_read = None - - @classmethod - def _build_schema_data_network_resource_id_read(cls, _schema): - if cls._schema_data_network_resource_id_read is not None: - _schema.id = cls._schema_data_network_resource_id_read.id - return - - cls._schema_data_network_resource_id_read = _schema_data_network_resource_id_read = AAZObjectType() - - data_network_resource_id_read = _schema_data_network_resource_id_read - data_network_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_data_network_resource_id_read.id - - _schema_slice_resource_id_read = None - - @classmethod - def _build_schema_slice_resource_id_read(cls, _schema): - if cls._schema_slice_resource_id_read is not None: - _schema.id = cls._schema_slice_resource_id_read.id - return - - cls._schema_slice_resource_id_read = _schema_slice_resource_id_read = AAZObjectType() - - slice_resource_id_read = _schema_slice_resource_id_read - slice_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_slice_resource_id_read.id - - -__all__ = ["List"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_show.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_show.py deleted file mode 100644 index 0126554ecf3..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_show.py +++ /dev/null @@ -1,383 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim policy show", -) -class Show(AAZCommand): - """Get information about the specified SIM policy. - - :example: Show sim policy - az mobile-network sim policy show -g rg -n sim-policy-name --mobile-network-name mobile-network-name - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/simpolicies/{}", "2023-09-01"], - ] - } - - def _handler(self, command_args): - super()._handler(command_args) - self._execute_operations() - return self._output() - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_policy_name = AAZStrArg( - options=["-n", "--name", "--sim-policy-name"], - help="The name of the SIM policy.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.SimPoliciesGet(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class SimPoliciesGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simPolicyName", self.ctx.args.sim_policy_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200.tags = AAZDictType() - _schema_on_200.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties - properties.default_slice = AAZObjectType( - serialized_name="defaultSlice", - flags={"required": True}, - ) - _ShowHelper._build_schema_slice_resource_id_read(properties.default_slice) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.registration_timer = AAZIntType( - serialized_name="registrationTimer", - ) - properties.rfsp_index = AAZIntType( - serialized_name="rfspIndex", - ) - properties.site_provisioning_state = AAZDictType( - serialized_name="siteProvisioningState", - flags={"read_only": True}, - ) - properties.slice_configurations = AAZListType( - serialized_name="sliceConfigurations", - flags={"required": True}, - ) - properties.ue_ambr = AAZObjectType( - serialized_name="ueAmbr", - flags={"required": True}, - ) - _ShowHelper._build_schema_ambr_read(properties.ue_ambr) - - site_provisioning_state = cls._schema_on_200.properties.site_provisioning_state - site_provisioning_state.Element = AAZStrType( - flags={"read_only": True}, - ) - - slice_configurations = cls._schema_on_200.properties.slice_configurations - slice_configurations.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.slice_configurations.Element - _element.data_network_configurations = AAZListType( - serialized_name="dataNetworkConfigurations", - flags={"required": True}, - ) - _element.default_data_network = AAZObjectType( - serialized_name="defaultDataNetwork", - flags={"required": True}, - ) - _ShowHelper._build_schema_data_network_resource_id_read(_element.default_data_network) - _element.slice = AAZObjectType( - flags={"required": True}, - ) - _ShowHelper._build_schema_slice_resource_id_read(_element.slice) - - data_network_configurations = cls._schema_on_200.properties.slice_configurations.Element.data_network_configurations - data_network_configurations.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.slice_configurations.Element.data_network_configurations.Element - _element["5qi"] = AAZIntType() - _element.additional_allowed_session_types = AAZListType( - serialized_name="additionalAllowedSessionTypes", - ) - _element.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - _element.allowed_services = AAZListType( - serialized_name="allowedServices", - flags={"required": True}, - ) - _element.data_network = AAZObjectType( - serialized_name="dataNetwork", - flags={"required": True}, - ) - _ShowHelper._build_schema_data_network_resource_id_read(_element.data_network) - _element.default_session_type = AAZStrType( - serialized_name="defaultSessionType", - ) - _element.maximum_number_of_buffered_packets = AAZIntType( - serialized_name="maximumNumberOfBufferedPackets", - ) - _element.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - _element.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - _element.session_ambr = AAZObjectType( - serialized_name="sessionAmbr", - flags={"required": True}, - ) - _ShowHelper._build_schema_ambr_read(_element.session_ambr) - - additional_allowed_session_types = cls._schema_on_200.properties.slice_configurations.Element.data_network_configurations.Element.additional_allowed_session_types - additional_allowed_session_types.Element = AAZStrType() - - allowed_services = cls._schema_on_200.properties.slice_configurations.Element.data_network_configurations.Element.allowed_services - allowed_services.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.slice_configurations.Element.data_network_configurations.Element.allowed_services.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _ShowHelper: - """Helper class for Show""" - - _schema_ambr_read = None - - @classmethod - def _build_schema_ambr_read(cls, _schema): - if cls._schema_ambr_read is not None: - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - return - - cls._schema_ambr_read = _schema_ambr_read = AAZObjectType() - - ambr_read = _schema_ambr_read - ambr_read.downlink = AAZStrType( - flags={"required": True}, - ) - ambr_read.uplink = AAZStrType( - flags={"required": True}, - ) - - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - - _schema_data_network_resource_id_read = None - - @classmethod - def _build_schema_data_network_resource_id_read(cls, _schema): - if cls._schema_data_network_resource_id_read is not None: - _schema.id = cls._schema_data_network_resource_id_read.id - return - - cls._schema_data_network_resource_id_read = _schema_data_network_resource_id_read = AAZObjectType() - - data_network_resource_id_read = _schema_data_network_resource_id_read - data_network_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_data_network_resource_id_read.id - - _schema_slice_resource_id_read = None - - @classmethod - def _build_schema_slice_resource_id_read(cls, _schema): - if cls._schema_slice_resource_id_read is not None: - _schema.id = cls._schema_slice_resource_id_read.id - return - - cls._schema_slice_resource_id_read = _schema_slice_resource_id_read = AAZObjectType() - - slice_resource_id_read = _schema_slice_resource_id_read - slice_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_slice_resource_id_read.id - - -__all__ = ["Show"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_update.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_update.py deleted file mode 100644 index 8141ca5c287..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_update.py +++ /dev/null @@ -1,880 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim policy update", -) -class Update(AAZCommand): - """Update a SIM policy. - - :example: Update sim policy tags - az mobile-network sim policy update -g rg-n sim-policy-name --mobile-network-name mobile-network-name --tags "{tag:test,tag2:test2}" - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/simpolicies/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - AZ_SUPPORT_GENERIC_UPDATE = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, self._output) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_policy_name = AAZStrArg( - options=["-n", "--name", "--sim-policy-name"], - help="The name of the SIM policy.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - nullable=True, - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg( - nullable=True, - ) - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.default_slice = AAZObjectArg( - options=["--default-slice"], - arg_group="Properties", - help="The default slice to use if the UE does not explicitly specify it. This slice must exist in the `sliceConfigurations` map.", - ) - cls._build_args_slice_resource_id_update(_args_schema.default_slice) - _args_schema.registration_timer = AAZIntArg( - options=["--registration-timer"], - arg_group="Properties", - help="Interval for the UE periodic registration update procedure, in seconds.", - nullable=True, - fmt=AAZIntArgFormat( - minimum=30, - ), - ) - _args_schema.rfsp_index = AAZIntArg( - options=["--rfsp-index"], - arg_group="Properties", - help="RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413. This is an optional setting and by default is unspecified.", - nullable=True, - fmt=AAZIntArgFormat( - maximum=256, - minimum=1, - ), - ) - _args_schema.slice_config = AAZListArg( - options=["--slice-config"], - arg_group="Properties", - help="The allowed slices and the settings to use for them. The list must not contain duplicate items and must contain at least one item.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _args_schema.ue_ambr = AAZObjectArg( - options=["--ue-ambr"], - arg_group="Properties", - help="Aggregate maximum bit rate across all non-GBR QoS flows of all PDU sessions of a given UE. See 3GPP TS23.501 section 5.7.2.6 for a full description of the UE-AMBR.", - ) - cls._build_args_ambr_update(_args_schema.ue_ambr) - - slice_config = cls._args_schema.slice_config - slice_config.Element = AAZObjectArg( - nullable=True, - ) - - _element = cls._args_schema.slice_config.Element - _element.data_network_config = AAZListArg( - options=["data-network-config"], - help="The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.default_data_network = AAZObjectArg( - options=["default-data-network"], - help="The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the `dataNetworkConfigurations` map.", - ) - cls._build_args_data_network_resource_id_update(_element.default_data_network) - _element.slice = AAZObjectArg( - options=["slice"], - help="A reference to the slice that these settings apply to", - ) - cls._build_args_slice_resource_id_update(_element.slice) - - data_network_config = cls._args_schema.slice_config.Element.data_network_config - data_network_config.Element = AAZObjectArg( - nullable=True, - ) - - _element = cls._args_schema.slice_config.Element.data_network_config.Element - _element.five_qi = AAZIntArg( - options=["five-qi"], - help="Default QoS Flow 5G QoS Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. This must not be a standardized 5QI value corresponding to a GBR (guaranteed bit rate) QoS Flow. The illegal GBR 5QI values are: 1, 2, 3, 4, 65, 66, 67, 71, 72, 73, 74, 75, 76, 82, 83, 84, and 85. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition of which are the GBR 5QI values.", - nullable=True, - fmt=AAZIntArgFormat( - maximum=255, - minimum=0, - ), - ) - _element.additional_session_type = AAZListArg( - options=["additional-session-type"], - help="Allowed session types in addition to the default session type. Must not duplicate the default session type.", - nullable=True, - ) - _element.arp_level = AAZIntArg( - options=["arp-level"], - help="Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - nullable=True, - fmt=AAZIntArgFormat( - maximum=15, - minimum=1, - ), - ) - _element.allowed_services = AAZListArg( - options=["allowed-services"], - help="List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item.", - fmt=AAZListArgFormat( - unique=True, - ), - ) - _element.data_network = AAZObjectArg( - options=["data-network"], - help="A reference to the data network that these settings apply to", - ) - cls._build_args_data_network_resource_id_update(_element.data_network) - _element.default_session_type = AAZStrArg( - options=["default-session-type"], - help="The default PDU session type, which is used if the UE does not request a specific session type.", - nullable=True, - enum={"IPv4": "IPv4", "IPv6": "IPv6"}, - ) - _element.maximum_number_of_buffered_packets = AAZIntArg( - options=["maximum-number-of-buffered-packets"], - help="The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.", - nullable=True, - fmt=AAZIntArgFormat( - minimum=0, - ), - ) - _element.preemption_capability = AAZStrArg( - options=["preemption-capability"], - help="Default QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - nullable=True, - enum={"MayPreempt": "MayPreempt", "NotPreempt": "NotPreempt"}, - ) - _element.preemption_vulnerability = AAZStrArg( - options=["preemption-vulnerability"], - help="Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.", - nullable=True, - enum={"NotPreemptable": "NotPreemptable", "Preemptable": "Preemptable"}, - ) - _element.session_ambr = AAZObjectArg( - options=["session-ambr"], - help="Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.", - ) - cls._build_args_ambr_update(_element.session_ambr) - - additional_session_type = cls._args_schema.slice_config.Element.data_network_config.Element.additional_session_type - additional_session_type.Element = AAZStrArg( - nullable=True, - enum={"IPv4": "IPv4", "IPv6": "IPv6"}, - ) - - allowed_services = cls._args_schema.slice_config.Element.data_network_config.Element.allowed_services - allowed_services.Element = AAZObjectArg( - nullable=True, - ) - - _element = cls._args_schema.slice_config.Element.data_network_config.Element.allowed_services.Element - _element.id = AAZStrArg( - options=["id"], - help="Service resource ID.", - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[sS][eE][rR][vV][iI][cC][eE][sS]/[^/?#]+$", - ), - ) - return cls._args_schema - - _args_ambr_update = None - - @classmethod - def _build_args_ambr_update(cls, _schema): - if cls._args_ambr_update is not None: - _schema.downlink = cls._args_ambr_update.downlink - _schema.uplink = cls._args_ambr_update.uplink - return - - cls._args_ambr_update = AAZObjectArg() - - ambr_update = cls._args_ambr_update - ambr_update.downlink = AAZStrArg( - options=["downlink"], - help="Downlink bit rate.", - fmt=AAZStrArgFormat( - pattern="^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$", - ), - ) - ambr_update.uplink = AAZStrArg( - options=["uplink"], - help="Uplink bit rate.", - fmt=AAZStrArgFormat( - pattern="^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$", - ), - ) - - _schema.downlink = cls._args_ambr_update.downlink - _schema.uplink = cls._args_ambr_update.uplink - - _args_data_network_resource_id_update = None - - @classmethod - def _build_args_data_network_resource_id_update(cls, _schema): - if cls._args_data_network_resource_id_update is not None: - _schema.id = cls._args_data_network_resource_id_update.id - return - - cls._args_data_network_resource_id_update = AAZObjectArg() - - data_network_resource_id_update = cls._args_data_network_resource_id_update - data_network_resource_id_update.id = AAZStrArg( - options=["id"], - help="Data network resource ID.", - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[dD][aA][tT][aA][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+$", - ), - ) - - _schema.id = cls._args_data_network_resource_id_update.id - - _args_slice_resource_id_update = None - - @classmethod - def _build_args_slice_resource_id_update(cls, _schema): - if cls._args_slice_resource_id_update is not None: - _schema.id = cls._args_slice_resource_id_update.id - return - - cls._args_slice_resource_id_update = AAZObjectArg() - - slice_resource_id_update = cls._args_slice_resource_id_update - slice_resource_id_update.id = AAZStrArg( - options=["id"], - help="Slice resource ID.", - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+/[sS][lL][iI][cC][eE][sS]/[^/?#]+$", - ), - ) - - _schema.id = cls._args_slice_resource_id_update.id - - def _execute_operations(self): - self.pre_operations() - self.SimPoliciesGet(ctx=self.ctx)() - self.pre_instance_update(self.ctx.vars.instance) - self.InstanceUpdateByJson(ctx=self.ctx)() - self.InstanceUpdateByGeneric(ctx=self.ctx)() - self.post_instance_update(self.ctx.vars.instance) - yield self.SimPoliciesCreateOrUpdate(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - @register_callback - def pre_instance_update(self, instance): - pass - - @register_callback - def post_instance_update(self, instance): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) - return result - - class SimPoliciesGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simPolicyName", self.ctx.args.sim_policy_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_sim_policy_read(cls._schema_on_200) - - return cls._schema_on_200 - - class SimPoliciesCreateOrUpdate(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200, 201]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200_201, - self.on_error, - lro_options={"final-state-via": "azure-async-operation"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}", - **self.url_parameters - ) - - @property - def method(self): - return "PUT" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simPolicyName", self.ctx.args.sim_policy_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Content-Type", "application/json", - ), - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - @property - def content(self): - _content_value, _builder = self.new_content_builder( - self.ctx.args, - value=self.ctx.vars.instance, - ) - - return self.serialize_content(_content_value) - - def on_200_201(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200_201 - ) - - _schema_on_200_201 = None - - @classmethod - def _build_schema_on_200_201(cls): - if cls._schema_on_200_201 is not None: - return cls._schema_on_200_201 - - cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_sim_policy_read(cls._schema_on_200_201) - - return cls._schema_on_200_201 - - class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): - - def __call__(self, *args, **kwargs): - self._update_instance(self.ctx.vars.instance) - - def _update_instance(self, instance): - _instance_value, _builder = self.new_content_builder( - self.ctx.args, - value=instance, - typ=AAZObjectType - ) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties") - if properties is not None: - _UpdateHelper._build_schema_slice_resource_id_update(properties.set_prop("defaultSlice", AAZObjectType, ".default_slice", typ_kwargs={"flags": {"required": True}})) - properties.set_prop("registrationTimer", AAZIntType, ".registration_timer") - properties.set_prop("rfspIndex", AAZIntType, ".rfsp_index") - properties.set_prop("sliceConfigurations", AAZListType, ".slice_config", typ_kwargs={"flags": {"required": True}}) - _UpdateHelper._build_schema_ambr_update(properties.set_prop("ueAmbr", AAZObjectType, ".ue_ambr", typ_kwargs={"flags": {"required": True}})) - - slice_configurations = _builder.get(".properties.sliceConfigurations") - if slice_configurations is not None: - slice_configurations.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.sliceConfigurations[]") - if _elements is not None: - _elements.set_prop("dataNetworkConfigurations", AAZListType, ".data_network_config", typ_kwargs={"flags": {"required": True}}) - _UpdateHelper._build_schema_data_network_resource_id_update(_elements.set_prop("defaultDataNetwork", AAZObjectType, ".default_data_network", typ_kwargs={"flags": {"required": True}})) - _UpdateHelper._build_schema_slice_resource_id_update(_elements.set_prop("slice", AAZObjectType, ".slice", typ_kwargs={"flags": {"required": True}})) - - data_network_configurations = _builder.get(".properties.sliceConfigurations[].dataNetworkConfigurations") - if data_network_configurations is not None: - data_network_configurations.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.sliceConfigurations[].dataNetworkConfigurations[]") - if _elements is not None: - _elements.set_prop("5qi", AAZIntType, ".five_qi") - _elements.set_prop("additionalAllowedSessionTypes", AAZListType, ".additional_session_type") - _elements.set_prop("allocationAndRetentionPriorityLevel", AAZIntType, ".arp_level") - _elements.set_prop("allowedServices", AAZListType, ".allowed_services", typ_kwargs={"flags": {"required": True}}) - _UpdateHelper._build_schema_data_network_resource_id_update(_elements.set_prop("dataNetwork", AAZObjectType, ".data_network", typ_kwargs={"flags": {"required": True}})) - _elements.set_prop("defaultSessionType", AAZStrType, ".default_session_type") - _elements.set_prop("maximumNumberOfBufferedPackets", AAZIntType, ".maximum_number_of_buffered_packets") - _elements.set_prop("preemptionCapability", AAZStrType, ".preemption_capability") - _elements.set_prop("preemptionVulnerability", AAZStrType, ".preemption_vulnerability") - _UpdateHelper._build_schema_ambr_update(_elements.set_prop("sessionAmbr", AAZObjectType, ".session_ambr", typ_kwargs={"flags": {"required": True}})) - - additional_allowed_session_types = _builder.get(".properties.sliceConfigurations[].dataNetworkConfigurations[].additionalAllowedSessionTypes") - if additional_allowed_session_types is not None: - additional_allowed_session_types.set_elements(AAZStrType, ".") - - allowed_services = _builder.get(".properties.sliceConfigurations[].dataNetworkConfigurations[].allowedServices") - if allowed_services is not None: - allowed_services.set_elements(AAZObjectType, ".") - - _elements = _builder.get(".properties.sliceConfigurations[].dataNetworkConfigurations[].allowedServices[]") - if _elements is not None: - _elements.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") - - return _instance_value - - class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): - - def __call__(self, *args, **kwargs): - self._update_instance_by_generic( - self.ctx.vars.instance, - self.ctx.generic_update_args - ) - - -class _UpdateHelper: - """Helper class for Update""" - - @classmethod - def _build_schema_ambr_update(cls, _builder): - if _builder is None: - return - _builder.set_prop("downlink", AAZStrType, ".downlink", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("uplink", AAZStrType, ".uplink", typ_kwargs={"flags": {"required": True}}) - - @classmethod - def _build_schema_data_network_resource_id_update(cls, _builder): - if _builder is None: - return - _builder.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - @classmethod - def _build_schema_slice_resource_id_update(cls, _builder): - if _builder is None: - return - _builder.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) - - _schema_ambr_read = None - - @classmethod - def _build_schema_ambr_read(cls, _schema): - if cls._schema_ambr_read is not None: - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - return - - cls._schema_ambr_read = _schema_ambr_read = AAZObjectType() - - ambr_read = _schema_ambr_read - ambr_read.downlink = AAZStrType( - flags={"required": True}, - ) - ambr_read.uplink = AAZStrType( - flags={"required": True}, - ) - - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - - _schema_data_network_resource_id_read = None - - @classmethod - def _build_schema_data_network_resource_id_read(cls, _schema): - if cls._schema_data_network_resource_id_read is not None: - _schema.id = cls._schema_data_network_resource_id_read.id - return - - cls._schema_data_network_resource_id_read = _schema_data_network_resource_id_read = AAZObjectType() - - data_network_resource_id_read = _schema_data_network_resource_id_read - data_network_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_data_network_resource_id_read.id - - _schema_sim_policy_read = None - - @classmethod - def _build_schema_sim_policy_read(cls, _schema): - if cls._schema_sim_policy_read is not None: - _schema.id = cls._schema_sim_policy_read.id - _schema.location = cls._schema_sim_policy_read.location - _schema.name = cls._schema_sim_policy_read.name - _schema.properties = cls._schema_sim_policy_read.properties - _schema.system_data = cls._schema_sim_policy_read.system_data - _schema.tags = cls._schema_sim_policy_read.tags - _schema.type = cls._schema_sim_policy_read.type - return - - cls._schema_sim_policy_read = _schema_sim_policy_read = AAZObjectType() - - sim_policy_read = _schema_sim_policy_read - sim_policy_read.id = AAZStrType( - flags={"read_only": True}, - ) - sim_policy_read.location = AAZStrType( - flags={"required": True}, - ) - sim_policy_read.name = AAZStrType( - flags={"read_only": True}, - ) - sim_policy_read.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - sim_policy_read.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - sim_policy_read.tags = AAZDictType() - sim_policy_read.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = _schema_sim_policy_read.properties - properties.default_slice = AAZObjectType( - serialized_name="defaultSlice", - flags={"required": True}, - ) - cls._build_schema_slice_resource_id_read(properties.default_slice) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.registration_timer = AAZIntType( - serialized_name="registrationTimer", - ) - properties.rfsp_index = AAZIntType( - serialized_name="rfspIndex", - ) - properties.site_provisioning_state = AAZDictType( - serialized_name="siteProvisioningState", - flags={"read_only": True}, - ) - properties.slice_configurations = AAZListType( - serialized_name="sliceConfigurations", - flags={"required": True}, - ) - properties.ue_ambr = AAZObjectType( - serialized_name="ueAmbr", - flags={"required": True}, - ) - cls._build_schema_ambr_read(properties.ue_ambr) - - site_provisioning_state = _schema_sim_policy_read.properties.site_provisioning_state - site_provisioning_state.Element = AAZStrType( - flags={"read_only": True}, - ) - - slice_configurations = _schema_sim_policy_read.properties.slice_configurations - slice_configurations.Element = AAZObjectType() - - _element = _schema_sim_policy_read.properties.slice_configurations.Element - _element.data_network_configurations = AAZListType( - serialized_name="dataNetworkConfigurations", - flags={"required": True}, - ) - _element.default_data_network = AAZObjectType( - serialized_name="defaultDataNetwork", - flags={"required": True}, - ) - cls._build_schema_data_network_resource_id_read(_element.default_data_network) - _element.slice = AAZObjectType( - flags={"required": True}, - ) - cls._build_schema_slice_resource_id_read(_element.slice) - - data_network_configurations = _schema_sim_policy_read.properties.slice_configurations.Element.data_network_configurations - data_network_configurations.Element = AAZObjectType() - - _element = _schema_sim_policy_read.properties.slice_configurations.Element.data_network_configurations.Element - _element["5qi"] = AAZIntType() - _element.additional_allowed_session_types = AAZListType( - serialized_name="additionalAllowedSessionTypes", - ) - _element.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - _element.allowed_services = AAZListType( - serialized_name="allowedServices", - flags={"required": True}, - ) - _element.data_network = AAZObjectType( - serialized_name="dataNetwork", - flags={"required": True}, - ) - cls._build_schema_data_network_resource_id_read(_element.data_network) - _element.default_session_type = AAZStrType( - serialized_name="defaultSessionType", - ) - _element.maximum_number_of_buffered_packets = AAZIntType( - serialized_name="maximumNumberOfBufferedPackets", - ) - _element.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - _element.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - _element.session_ambr = AAZObjectType( - serialized_name="sessionAmbr", - flags={"required": True}, - ) - cls._build_schema_ambr_read(_element.session_ambr) - - additional_allowed_session_types = _schema_sim_policy_read.properties.slice_configurations.Element.data_network_configurations.Element.additional_allowed_session_types - additional_allowed_session_types.Element = AAZStrType() - - allowed_services = _schema_sim_policy_read.properties.slice_configurations.Element.data_network_configurations.Element.allowed_services - allowed_services.Element = AAZObjectType() - - _element = _schema_sim_policy_read.properties.slice_configurations.Element.data_network_configurations.Element.allowed_services.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = _schema_sim_policy_read.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = _schema_sim_policy_read.tags - tags.Element = AAZStrType() - - _schema.id = cls._schema_sim_policy_read.id - _schema.location = cls._schema_sim_policy_read.location - _schema.name = cls._schema_sim_policy_read.name - _schema.properties = cls._schema_sim_policy_read.properties - _schema.system_data = cls._schema_sim_policy_read.system_data - _schema.tags = cls._schema_sim_policy_read.tags - _schema.type = cls._schema_sim_policy_read.type - - _schema_slice_resource_id_read = None - - @classmethod - def _build_schema_slice_resource_id_read(cls, _schema): - if cls._schema_slice_resource_id_read is not None: - _schema.id = cls._schema_slice_resource_id_read.id - return - - cls._schema_slice_resource_id_read = _schema_slice_resource_id_read = AAZObjectType() - - slice_resource_id_read = _schema_slice_resource_id_read - slice_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_slice_resource_id_read.id - - -__all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_wait.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_wait.py deleted file mode 100644 index 3c0d9e12ade..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/_wait.py +++ /dev/null @@ -1,379 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network sim policy wait", -) -class Wait(AAZWaitCommand): - """Place the CLI in a waiting state until a condition is met. - """ - - _aaz_info = { - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/simpolicies/{}", "2023-09-01"], - ] - } - - def _handler(self, command_args): - super()._handler(command_args) - self._execute_operations() - return self._output() - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_policy_name = AAZStrArg( - options=["-n", "--name", "--sim-policy-name"], - help="The name of the SIM policy.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - self.SimPoliciesGet(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) - return result - - class SimPoliciesGet(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [200]: - return self.on_200(session) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}", - **self.url_parameters - ) - - @property - def method(self): - return "GET" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simPolicyName", self.ctx.args.sim_policy_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - @property - def header_parameters(self): - parameters = { - **self.serialize_header_param( - "Accept", "application/json", - ), - } - return parameters - - def on_200(self, session): - data = self.deserialize_http_content(session) - self.ctx.set_var( - "instance", - data, - schema_builder=self._build_schema_on_200 - ) - - _schema_on_200 = None - - @classmethod - def _build_schema_on_200(cls): - if cls._schema_on_200 is not None: - return cls._schema_on_200 - - cls._schema_on_200 = AAZObjectType() - - _schema_on_200 = cls._schema_on_200 - _schema_on_200.id = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) - _schema_on_200.name = AAZStrType( - flags={"read_only": True}, - ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) - _schema_on_200.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - _schema_on_200.tags = AAZDictType() - _schema_on_200.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = cls._schema_on_200.properties - properties.default_slice = AAZObjectType( - serialized_name="defaultSlice", - flags={"required": True}, - ) - _WaitHelper._build_schema_slice_resource_id_read(properties.default_slice) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.registration_timer = AAZIntType( - serialized_name="registrationTimer", - ) - properties.rfsp_index = AAZIntType( - serialized_name="rfspIndex", - ) - properties.site_provisioning_state = AAZDictType( - serialized_name="siteProvisioningState", - flags={"read_only": True}, - ) - properties.slice_configurations = AAZListType( - serialized_name="sliceConfigurations", - flags={"required": True}, - ) - properties.ue_ambr = AAZObjectType( - serialized_name="ueAmbr", - flags={"required": True}, - ) - _WaitHelper._build_schema_ambr_read(properties.ue_ambr) - - site_provisioning_state = cls._schema_on_200.properties.site_provisioning_state - site_provisioning_state.Element = AAZStrType( - flags={"read_only": True}, - ) - - slice_configurations = cls._schema_on_200.properties.slice_configurations - slice_configurations.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.slice_configurations.Element - _element.data_network_configurations = AAZListType( - serialized_name="dataNetworkConfigurations", - flags={"required": True}, - ) - _element.default_data_network = AAZObjectType( - serialized_name="defaultDataNetwork", - flags={"required": True}, - ) - _WaitHelper._build_schema_data_network_resource_id_read(_element.default_data_network) - _element.slice = AAZObjectType( - flags={"required": True}, - ) - _WaitHelper._build_schema_slice_resource_id_read(_element.slice) - - data_network_configurations = cls._schema_on_200.properties.slice_configurations.Element.data_network_configurations - data_network_configurations.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.slice_configurations.Element.data_network_configurations.Element - _element["5qi"] = AAZIntType() - _element.additional_allowed_session_types = AAZListType( - serialized_name="additionalAllowedSessionTypes", - ) - _element.allocation_and_retention_priority_level = AAZIntType( - serialized_name="allocationAndRetentionPriorityLevel", - ) - _element.allowed_services = AAZListType( - serialized_name="allowedServices", - flags={"required": True}, - ) - _element.data_network = AAZObjectType( - serialized_name="dataNetwork", - flags={"required": True}, - ) - _WaitHelper._build_schema_data_network_resource_id_read(_element.data_network) - _element.default_session_type = AAZStrType( - serialized_name="defaultSessionType", - ) - _element.maximum_number_of_buffered_packets = AAZIntType( - serialized_name="maximumNumberOfBufferedPackets", - ) - _element.preemption_capability = AAZStrType( - serialized_name="preemptionCapability", - ) - _element.preemption_vulnerability = AAZStrType( - serialized_name="preemptionVulnerability", - ) - _element.session_ambr = AAZObjectType( - serialized_name="sessionAmbr", - flags={"required": True}, - ) - _WaitHelper._build_schema_ambr_read(_element.session_ambr) - - additional_allowed_session_types = cls._schema_on_200.properties.slice_configurations.Element.data_network_configurations.Element.additional_allowed_session_types - additional_allowed_session_types.Element = AAZStrType() - - allowed_services = cls._schema_on_200.properties.slice_configurations.Element.data_network_configurations.Element.allowed_services - allowed_services.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.slice_configurations.Element.data_network_configurations.Element.allowed_services.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - - system_data = cls._schema_on_200.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - - return cls._schema_on_200 - - -class _WaitHelper: - """Helper class for Wait""" - - _schema_ambr_read = None - - @classmethod - def _build_schema_ambr_read(cls, _schema): - if cls._schema_ambr_read is not None: - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - return - - cls._schema_ambr_read = _schema_ambr_read = AAZObjectType() - - ambr_read = _schema_ambr_read - ambr_read.downlink = AAZStrType( - flags={"required": True}, - ) - ambr_read.uplink = AAZStrType( - flags={"required": True}, - ) - - _schema.downlink = cls._schema_ambr_read.downlink - _schema.uplink = cls._schema_ambr_read.uplink - - _schema_data_network_resource_id_read = None - - @classmethod - def _build_schema_data_network_resource_id_read(cls, _schema): - if cls._schema_data_network_resource_id_read is not None: - _schema.id = cls._schema_data_network_resource_id_read.id - return - - cls._schema_data_network_resource_id_read = _schema_data_network_resource_id_read = AAZObjectType() - - data_network_resource_id_read = _schema_data_network_resource_id_read - data_network_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_data_network_resource_id_read.id - - _schema_slice_resource_id_read = None - - @classmethod - def _build_schema_slice_resource_id_read(cls, _schema): - if cls._schema_slice_resource_id_read is not None: - _schema.id = cls._schema_slice_resource_id_read.id - return - - cls._schema_slice_resource_id_read = _schema_slice_resource_id_read = AAZObjectType() - - slice_resource_id_read = _schema_slice_resource_id_read - slice_resource_id_read.id = AAZStrType( - flags={"required": True}, - ) - - _schema.id = cls._schema_slice_resource_id_read.id - - -__all__ = ["Wait"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/__cmd_group.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/__cmd_group.py deleted file mode 100644 index ed148cf0a76..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/__cmd_group.py +++ /dev/null @@ -1,23 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command_group( - "mobile-network site", -) -class __CMDGroup(AAZCommandGroup): - """Manage site - """ - pass - - -__all__ = ["__CMDGroup"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_delete.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_delete.py deleted file mode 100644 index 52003bf4f08..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_delete.py +++ /dev/null @@ -1,181 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network site delete", - confirmation="Are you sure you want to perform this operation?", -) -class Delete(AAZCommand): - """Delete the specified mobile network site. - - :example: Delete site - az mobile-network site delete --mobile-network-name mobile-network-name -n site-name -g rg -y' - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/sites/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, None) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.site_name = AAZStrArg( - options=["-n", "--name", "--site-name"], - help="The name of the mobile network site.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.SitesDelete(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - class SitesDelete(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [204]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_204, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}", - **self.url_parameters - ) - - @property - def method(self): - return "DELETE" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "siteName", self.ctx.args.site_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - def on_200(self, session): - pass - - def on_204(self, session): - pass - - -class _DeleteHelper: - """Helper class for Delete""" - - -__all__ = ["Delete"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/__cmd_group.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/__cmd_group.py deleted file mode 100644 index b14d6dd1c85..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/__cmd_group.py +++ /dev/null @@ -1,23 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command_group( - "mobile-network slice", -) -class __CMDGroup(AAZCommandGroup): - """Manage slice - """ - pass - - -__all__ = ["__CMDGroup"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_delete.py b/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_delete.py deleted file mode 100644 index fac49d38c6a..00000000000 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_delete.py +++ /dev/null @@ -1,181 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: skip-file -# flake8: noqa - -from azure.cli.core.aaz import * - - -@register_command( - "mobile-network slice delete", - confirmation="Are you sure you want to perform this operation?", -) -class Delete(AAZCommand): - """Delete the specified network slice. - - :example: Delete slice - az mobile-network slice delete --mobile-network-name mobilenetwork-name -n slice-name -g rg -y - """ - - _aaz_info = { - "version": "2023-09-01", - "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/slices/{}", "2023-09-01"], - ] - } - - AZ_SUPPORT_NO_WAIT = True - - def _handler(self, command_args): - super()._handler(command_args) - return self.build_lro_poller(self._execute_operations, None) - - _args_schema = None - - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - if cls._args_schema is not None: - return cls._args_schema - cls._args_schema = super()._build_arguments_schema(*args, **kwargs) - - # define Arg Group "" - - _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - id_part="name", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.slice_name = AAZStrArg( - options=["-n", "--name", "--slice-name"], - help="The name of the network slice.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - return cls._args_schema - - def _execute_operations(self): - self.pre_operations() - yield self.SlicesDelete(ctx=self.ctx)() - self.post_operations() - - @register_callback - def pre_operations(self): - pass - - @register_callback - def post_operations(self): - pass - - class SlicesDelete(AAZHttpOperation): - CLIENT_TYPE = "MgmtClient" - - def __call__(self, *args, **kwargs): - request = self.make_request() - session = self.client.send_request(request=request, stream=False, **kwargs) - if session.http_response.status_code in [202]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [200]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_200, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - if session.http_response.status_code in [204]: - return self.client.build_lro_polling( - self.ctx.args.no_wait, - session, - self.on_204, - self.on_error, - lro_options={"final-state-via": "location"}, - path_format_arguments=self.url_parameters, - ) - - return self.on_error(session.http_response) - - @property - def url(self): - return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}", - **self.url_parameters - ) - - @property - def method(self): - return "DELETE" - - @property - def error_format(self): - return "MgmtErrorFormat" - - @property - def url_parameters(self): - parameters = { - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "sliceName", self.ctx.args.slice_name, - required=True, - ), - **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, - required=True, - ), - } - return parameters - - @property - def query_parameters(self): - parameters = { - **self.serialize_query_param( - "api-version", "2023-09-01", - required=True, - ), - } - return parameters - - def on_200(self, session): - pass - - def on_204(self, session): - pass - - -class _DeleteHelper: - """Helper class for Delete""" - - -__all__ = ["Delete"] diff --git a/src/mobile-network/azext_mobile_network/azext_metadata.json b/src/mobile-network/azext_mobile_network/azext_metadata.json deleted file mode 100644 index a3b0ca7605e..00000000000 --- a/src/mobile-network/azext_mobile_network/azext_metadata.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "azext.minCliCoreVersion": "2.55.0" -} \ No newline at end of file diff --git a/src/mobile-network/azext_mobile_network/commands.py b/src/mobile-network/azext_mobile_network/commands.py deleted file mode 100644 index b0d842e4993..00000000000 --- a/src/mobile-network/azext_mobile_network/commands.py +++ /dev/null @@ -1,15 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: disable=too-many-lines -# pylint: disable=too-many-statements - -# from azure.cli.core.commands import CliCommandType - - -def load_command_table(self, _): # pylint: disable=unused-argument - pass diff --git a/src/mobile-network/azext_mobile_network/custom.py b/src/mobile-network/azext_mobile_network/custom.py deleted file mode 100644 index 86df1e48ef5..00000000000 --- a/src/mobile-network/azext_mobile_network/custom.py +++ /dev/null @@ -1,14 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -# pylint: disable=too-many-lines -# pylint: disable=too-many-statements - -from knack.log import get_logger - - -logger = get_logger(__name__) diff --git a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network.yaml b/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network.yaml deleted file mode 100644 index cde23e3b044..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network.yaml +++ /dev/null @@ -1,554 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '391' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 9C759577149B49E6BBF6A05401BAF9BE Ref B: MAA201060515049 Ref C: 2024-03-07T08:46:56Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"publicLandMobileNetworkIdentifier": - {"mcc": "001", "mnc": "01"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:58.4077536Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:58.4077536Z"},"properties":{"provisioningState":"Accepted","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"e7d48b6f-7810-4e37-a8c4-9d970e431d2f"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A?api-version=2023-09-01&t=638453980201734065&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=kh9gDVOQyZcmnKJPimlEsrZ1IytOKGsaVai7pO_uTYd4ZUiDdC4Px4ocSpLSjhC8q6Mxl1ZhkNY8EfqRzUI1GIog3Ryt7PKPj8DXaUojcKnh3ul2dFmbMpM0ApjI7t1i5yl5lRG3QFrMZXIiunCETfsqZUA-LHS2HJIY1BNVXQhrA4_15clAQsHJdZCLDETjOPu-jCz8fRm0Bqz0pP74zQ1jreDm6sSSXNS_PmU6Qbl_8Qe75Y1lvj7NLVNZMstBQ2DPU-jPLTUia1QsGp-ROCzyDiZDGB8ZyaSPL7Bp6B0S0J5L9tnQcQwJydQtydtBZEPEbzP0bHtFnGyuQ06hTg&h=NgFi24RT5NMXNXv0MlmXntJM6C4BTHWMDXKcGABKR3E - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:00 GMT - etag: - - '"5701a600-0000-0100-0000-65e97f030000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 76984339E9134EB08F02A2AAEE2EE2F2 Ref B: MAA201060516021 Ref C: 2024-03-07T08:46:57Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A?api-version=2023-09-01&t=638453980201734065&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=kh9gDVOQyZcmnKJPimlEsrZ1IytOKGsaVai7pO_uTYd4ZUiDdC4Px4ocSpLSjhC8q6Mxl1ZhkNY8EfqRzUI1GIog3Ryt7PKPj8DXaUojcKnh3ul2dFmbMpM0ApjI7t1i5yl5lRG3QFrMZXIiunCETfsqZUA-LHS2HJIY1BNVXQhrA4_15clAQsHJdZCLDETjOPu-jCz8fRm0Bqz0pP74zQ1jreDm6sSSXNS_PmU6Qbl_8Qe75Y1lvj7NLVNZMstBQ2DPU-jPLTUia1QsGp-ROCzyDiZDGB8ZyaSPL7Bp6B0S0J5L9tnQcQwJydQtydtBZEPEbzP0bHtFnGyuQ06hTg&h=NgFi24RT5NMXNXv0MlmXntJM6C4BTHWMDXKcGABKR3E - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A","name":"a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:59.4943143Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:01 GMT - etag: - - '"d0006049-0000-0100-0000-65e97f030000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 39C0C3CAC16F4224AD6EFC404600FF0E Ref B: MAA201060516021 Ref C: 2024-03-07T08:47:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A?api-version=2023-09-01&t=638453980201734065&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=kh9gDVOQyZcmnKJPimlEsrZ1IytOKGsaVai7pO_uTYd4ZUiDdC4Px4ocSpLSjhC8q6Mxl1ZhkNY8EfqRzUI1GIog3Ryt7PKPj8DXaUojcKnh3ul2dFmbMpM0ApjI7t1i5yl5lRG3QFrMZXIiunCETfsqZUA-LHS2HJIY1BNVXQhrA4_15clAQsHJdZCLDETjOPu-jCz8fRm0Bqz0pP74zQ1jreDm6sSSXNS_PmU6Qbl_8Qe75Y1lvj7NLVNZMstBQ2DPU-jPLTUia1QsGp-ROCzyDiZDGB8ZyaSPL7Bp6B0S0J5L9tnQcQwJydQtydtBZEPEbzP0bHtFnGyuQ06hTg&h=NgFi24RT5NMXNXv0MlmXntJM6C4BTHWMDXKcGABKR3E - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A","name":"a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:59.4943143Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:32 GMT - etag: - - '"d0006049-0000-0100-0000-65e97f030000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: C3BA63F8CF9A45328996C5C236233D8E Ref B: MAA201060516021 Ref C: 2024-03-07T08:47:31Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A?api-version=2023-09-01&t=638453980201734065&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=kh9gDVOQyZcmnKJPimlEsrZ1IytOKGsaVai7pO_uTYd4ZUiDdC4Px4ocSpLSjhC8q6Mxl1ZhkNY8EfqRzUI1GIog3Ryt7PKPj8DXaUojcKnh3ul2dFmbMpM0ApjI7t1i5yl5lRG3QFrMZXIiunCETfsqZUA-LHS2HJIY1BNVXQhrA4_15clAQsHJdZCLDETjOPu-jCz8fRm0Bqz0pP74zQ1jreDm6sSSXNS_PmU6Qbl_8Qe75Y1lvj7NLVNZMstBQ2DPU-jPLTUia1QsGp-ROCzyDiZDGB8ZyaSPL7Bp6B0S0J5L9tnQcQwJydQtydtBZEPEbzP0bHtFnGyuQ06hTg&h=NgFi24RT5NMXNXv0MlmXntJM6C4BTHWMDXKcGABKR3E - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A","name":"a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:59.4943143Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:02 GMT - etag: - - '"d0006049-0000-0100-0000-65e97f030000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 59256D5DD4414EA484E89E0C88E47DF5 Ref B: MAA201060516021 Ref C: 2024-03-07T08:48:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A?api-version=2023-09-01&t=638453980201734065&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=kh9gDVOQyZcmnKJPimlEsrZ1IytOKGsaVai7pO_uTYd4ZUiDdC4Px4ocSpLSjhC8q6Mxl1ZhkNY8EfqRzUI1GIog3Ryt7PKPj8DXaUojcKnh3ul2dFmbMpM0ApjI7t1i5yl5lRG3QFrMZXIiunCETfsqZUA-LHS2HJIY1BNVXQhrA4_15clAQsHJdZCLDETjOPu-jCz8fRm0Bqz0pP74zQ1jreDm6sSSXNS_PmU6Qbl_8Qe75Y1lvj7NLVNZMstBQ2DPU-jPLTUia1QsGp-ROCzyDiZDGB8ZyaSPL7Bp6B0S0J5L9tnQcQwJydQtydtBZEPEbzP0bHtFnGyuQ06hTg&h=NgFi24RT5NMXNXv0MlmXntJM6C4BTHWMDXKcGABKR3E - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A","name":"a7a625ec-512e-4de0-b3ee-f32d7228b954*0D6D452BE4A732CC19C24960D1CDDC355EC1FC4B6E33B2F22D010A060D69C34A","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Succeeded","startTime":"2024-03-07T08:46:59.4943143Z","endTime":"2024-03-07T08:48:24.8255685Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:32 GMT - etag: - - '"d0000b4c-0000-0100-0000-65e97f580000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 97F0713AC2F34FF7952BF1D5F10852FE Ref B: MAA201060516021 Ref C: 2024-03-07T08:48:32Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:58.4077536Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:58.4077536Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"e7d48b6f-7810-4e37-a8c4-9d970e431d2f"}}' - headers: - cache-control: - - no-cache - content-length: - - '679' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:34 GMT - etag: - - '"5701e70d-0000-0100-0000-65e97f580000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 939D210361E74F1DBC8F6F218A4BA5F2 Ref B: MAA201060516021 Ref C: 2024-03-07T08:48:33Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {"tag": "test", "tag2": "test2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network update - Connection: - - keep-alive - Content-Length: - - '42' - Content-Type: - - application/json - ParameterSetName: - - -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:58.4077536Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:35.4504964Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"e7d48b6f-7810-4e37-a8c4-9d970e431d2f"}}' - headers: - cache-control: - - no-cache - content-length: - - '716' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:38 GMT - etag: - - '"5701890f-0000-0100-0000-65e97f640000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 57F9DE0EB12343779A9056067FEA80DF Ref B: MAA201060515033 Ref C: 2024-03-07T08:48:35Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:58.4077536Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:35.4504964Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"e7d48b6f-7810-4e37-a8c4-9d970e431d2f"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '728' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - f53eadd6-faa7-49bb-8948-14e30031a10d - - bdf6e9e0-bb13-4f7c-9cd9-ee131633d075 - - 51a2005c-114f-4f84-afeb-97bb64409ff6 - - 37c98168-e30d-4d61-a0be-dbde64992f34 - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: AA11E101E7B64C2E81C0AD6FD80D06EF Ref B: MAA201060514025 Ref C: 2024-03-07T08:48:39Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:58.4077536Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:35.4504964Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"e7d48b6f-7810-4e37-a8c4-9d970e431d2f"}}' - headers: - cache-control: - - no-cache - content-length: - - '716' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:42 GMT - etag: - - '"5701890f-0000-0100-0000-65e97f640000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 1F5B9E5F96F6432CBCDC4E7A7BD795E3 Ref B: MAA201060515029 Ref C: 2024-03-07T08:48:42Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 07 Mar 2024 08:48:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 8E7BA0CC8BF6429F91B99D799CC681AE Ref B: MAA201060514053 Ref C: 2024-03-07T08:48:44Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_attached_data_network.yaml b/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_attached_data_network.yaml deleted file mode 100644 index 775b0742784..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_attached_data_network.yaml +++ /dev/null @@ -1,2802 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_attached_data_network","date":"2024-03-07T09:38:24Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '413' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:38:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 65906F9CE9A748BA945D36E1A84ACC9D Ref B: MAA201060514035 Ref C: 2024-03-07T09:38:39Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"publicLandMobileNetworkIdentifier": - {"mcc": "001", "mnc": "01"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:38:41.4418681Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:38:41.4418681Z"},"properties":{"provisioningState":"Accepted","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"5c4cc712-b476-4722-9459-9457302778ae"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/116d9316-7d56-4898-b990-615c9298d513*45090EBB039CD159B73ABF5CE1AFF01E69416C3AB8707D3BC2E9F6369BC329D1?api-version=2023-09-01&t=638454011229887364&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=hSGA8NDVa68Q0B3AZOzZzlrHvPJvKyHIdHCVi-OtjDP2rj5BarVqDdnP14J3aRgNEz6OqBt7KfVFtBV_kr5_DWDst7hdWudVK6YNdwEvRbiNbkoCdb66k-BoPg4C57QgYXlyf1McaiP0cKhC3OjtL5-xJTbooq5X9Vkrtjzjwm1Hw5BKAYVmcOVpWN-6xCa0DGuGAmcCZobbH6x-jrSE2I6Jrbw8ph-gYsKoe6PhClBkocmNPVca9S04ucsUOWZTVRWAopOX7eh0SfIoCLLcZp2yqTgeGopEW-g5ywdo9KTLbPiqcYSw4QnerbP-Pwl_N3h-NEjF7_CZxXdVHr3_kA&h=J1DRA2R_P3qORgz-LwEv7ZnlXM2H8QEdH1t7BTWI8oo - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:38:42 GMT - etag: - - '"5801dcc8-0000-0100-0000-65e98b220000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 5EBAA91EC36542E48DF06CD8CB5F58FC Ref B: MAA201060513021 Ref C: 2024-03-07T09:38:40Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/116d9316-7d56-4898-b990-615c9298d513*45090EBB039CD159B73ABF5CE1AFF01E69416C3AB8707D3BC2E9F6369BC329D1?api-version=2023-09-01&t=638454011229887364&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=hSGA8NDVa68Q0B3AZOzZzlrHvPJvKyHIdHCVi-OtjDP2rj5BarVqDdnP14J3aRgNEz6OqBt7KfVFtBV_kr5_DWDst7hdWudVK6YNdwEvRbiNbkoCdb66k-BoPg4C57QgYXlyf1McaiP0cKhC3OjtL5-xJTbooq5X9Vkrtjzjwm1Hw5BKAYVmcOVpWN-6xCa0DGuGAmcCZobbH6x-jrSE2I6Jrbw8ph-gYsKoe6PhClBkocmNPVca9S04ucsUOWZTVRWAopOX7eh0SfIoCLLcZp2yqTgeGopEW-g5ywdo9KTLbPiqcYSw4QnerbP-Pwl_N3h-NEjF7_CZxXdVHr3_kA&h=J1DRA2R_P3qORgz-LwEv7ZnlXM2H8QEdH1t7BTWI8oo - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/116d9316-7d56-4898-b990-615c9298d513*45090EBB039CD159B73ABF5CE1AFF01E69416C3AB8707D3BC2E9F6369BC329D1","name":"116d9316-7d56-4898-b990-615c9298d513*45090EBB039CD159B73ABF5CE1AFF01E69416C3AB8707D3BC2E9F6369BC329D1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T09:38:42.2643919Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:38:43 GMT - etag: - - '"d0003cbb-0000-0100-0000-65e98b220000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: BA8D41B8F83149C6949BDFE610499486 Ref B: MAA201060513021 Ref C: 2024-03-07T09:38:43Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/116d9316-7d56-4898-b990-615c9298d513*45090EBB039CD159B73ABF5CE1AFF01E69416C3AB8707D3BC2E9F6369BC329D1?api-version=2023-09-01&t=638454011229887364&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=hSGA8NDVa68Q0B3AZOzZzlrHvPJvKyHIdHCVi-OtjDP2rj5BarVqDdnP14J3aRgNEz6OqBt7KfVFtBV_kr5_DWDst7hdWudVK6YNdwEvRbiNbkoCdb66k-BoPg4C57QgYXlyf1McaiP0cKhC3OjtL5-xJTbooq5X9Vkrtjzjwm1Hw5BKAYVmcOVpWN-6xCa0DGuGAmcCZobbH6x-jrSE2I6Jrbw8ph-gYsKoe6PhClBkocmNPVca9S04ucsUOWZTVRWAopOX7eh0SfIoCLLcZp2yqTgeGopEW-g5ywdo9KTLbPiqcYSw4QnerbP-Pwl_N3h-NEjF7_CZxXdVHr3_kA&h=J1DRA2R_P3qORgz-LwEv7ZnlXM2H8QEdH1t7BTWI8oo - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/116d9316-7d56-4898-b990-615c9298d513*45090EBB039CD159B73ABF5CE1AFF01E69416C3AB8707D3BC2E9F6369BC329D1","name":"116d9316-7d56-4898-b990-615c9298d513*45090EBB039CD159B73ABF5CE1AFF01E69416C3AB8707D3BC2E9F6369BC329D1","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Succeeded","startTime":"2024-03-07T09:38:42.2643919Z","endTime":"2024-03-07T09:39:02.4618943Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:14 GMT - etag: - - '"d000abbb-0000-0100-0000-65e98b360000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: AAE6016210A941C3A9C1558295A351E3 Ref B: MAA201060513021 Ref C: 2024-03-07T09:39:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:38:41.4418681Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:38:41.4418681Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"5c4cc712-b476-4722-9459-9457302778ae"}}' - headers: - cache-control: - - no-cache - content-length: - - '679' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:15 GMT - etag: - - '"5801b3cb-0000-0100-0000-65e98b360000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 3FFFE94A1F334E77967A3CE343FA5C2E Ref B: MAA201060513021 Ref C: 2024-03-07T09:39:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site create - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_attached_data_network","date":"2024-03-07T09:38:24Z","module":"mobile-network","Creator":"v-jingszhang@microsoft.com","DateCreated":"2024-03-07T09:38:46Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '489' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 83378B495C3A4EF9B6C71B9EB1DD6C3C Ref B: MAA201060516029 Ref C: 2024-03-07T09:39:17Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site create - Connection: - - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","name":"site_000003","type":"microsoft.mobilenetwork/mobilenetworks/sites","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:39:19.4162247Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:39:19.4162247Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '580' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:20 GMT - etag: - - '"1d002402-0000-0100-0000-65e98b470000"' - expires: - - '-1' - mise-correlation-id: - - 04bd8cbc-4b01-4e69-a483-b9283def2155 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 0736E8DD02104C30955C066DC61BF8D3 Ref B: MAA201060514027 Ref C: 2024-03-07T09:39:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_attached_data_network","date":"2024-03-07T09:38:24Z","module":"mobile-network","Creator":"v-jingszhang@microsoft.com","DateCreated":"2024-03-07T09:38:46Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '489' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2885A154CD9047E0A25ECCB672B8DEF9 Ref B: MAA201060515031 Ref C: 2024-03-07T09:39:21Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"controlPlaneAccessInterface": {"ipv4Address": - "10.28.128.2", "ipv4Gateway": "10.28.128.1", "ipv4Subnet": "10.28.128.0/24", - "name": "N2"}, "coreNetworkTechnology": "5GC", "localDiagnosticsAccess": {"authenticationType": - "AAD"}, "platform": {"type": "AKS-HCI"}, "sites": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}], - "sku": "G0", "ueMtu": 1440}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - Content-Length: - - '535' - Content-Type: - - application/json - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004","name":"pccp000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:39:23.5228707Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:39:23.5228707Z"},"properties":{"controlPlaneAccessInterface":{"ipv4Address":"10.28.128.2","ipv4Gateway":"10.28.128.1","ipv4Subnet":"10.28.128.0/24","name":"N2"},"coreNetworkTechnology":"5GC","localDiagnosticsAccess":{"authenticationType":"AAD"},"platform":{"type":"AKS-HCI"},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"sku":"G0","ueMtu":1440,"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435?api-version=2023-09-01&t=638454011654448104&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=EUKAizbhacoeC-94c2pjiRn8YfVlQarf5Y9wMtcKNwuT52BUgRRnDolafUx8C_-CPGUiyftbd3vU7E9oX9gYhjAnk4Dpnddn11fP-tk1B9CW5Xe91OW6q72vBzehEDPwDav-gr7en1u5GxN1WORdVYBybEv9TbmB2O6d02AU0dlQkaBWbIXeV3rAOEyKIuqfMqjjKGkj8lu1qo7eSQKG2hi74gvlyivP_i78lIBrrfioNiQ1IzkgL5gfocIJ32PnOVsvxxKWR3RN0gKKSM7GBGW2F4cxs3olbS64KUURJ2n7JPV6_vlL-RRRhwjFcilTR1JDQWQSbndaAPxbyqH_0Q&h=pJ38Gy2gWWtm8TacC4d07ZnzyRSF6d4z7e-n3QngbYo - cache-control: - - no-cache - content-length: - - '1034' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:25 GMT - etag: - - '"ed0079e2-0000-0100-0000-65e98b4d0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: C03F4FE16F334497AF9133F90966543B Ref B: MAA201060516021 Ref C: 2024-03-07T09:39:22Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435?api-version=2023-09-01&t=638454011654448104&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=EUKAizbhacoeC-94c2pjiRn8YfVlQarf5Y9wMtcKNwuT52BUgRRnDolafUx8C_-CPGUiyftbd3vU7E9oX9gYhjAnk4Dpnddn11fP-tk1B9CW5Xe91OW6q72vBzehEDPwDav-gr7en1u5GxN1WORdVYBybEv9TbmB2O6d02AU0dlQkaBWbIXeV3rAOEyKIuqfMqjjKGkj8lu1qo7eSQKG2hi74gvlyivP_i78lIBrrfioNiQ1IzkgL5gfocIJ32PnOVsvxxKWR3RN0gKKSM7GBGW2F4cxs3olbS64KUURJ2n7JPV6_vlL-RRRhwjFcilTR1JDQWQSbndaAPxbyqH_0Q&h=pJ38Gy2gWWtm8TacC4d07ZnzyRSF6d4z7e-n3QngbYo - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","name":"289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004","status":"Accepted","startTime":"2024-03-07T09:39:24.8088165Z"}' - headers: - cache-control: - - no-cache - content-length: - - '535' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:26 GMT - etag: - - '"d00024bc-0000-0100-0000-65e98b4c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 6CD09898A6AF47A490A1A858F951AD27 Ref B: MAA201060516021 Ref C: 2024-03-07T09:39:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435?api-version=2023-09-01&t=638454011654448104&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=EUKAizbhacoeC-94c2pjiRn8YfVlQarf5Y9wMtcKNwuT52BUgRRnDolafUx8C_-CPGUiyftbd3vU7E9oX9gYhjAnk4Dpnddn11fP-tk1B9CW5Xe91OW6q72vBzehEDPwDav-gr7en1u5GxN1WORdVYBybEv9TbmB2O6d02AU0dlQkaBWbIXeV3rAOEyKIuqfMqjjKGkj8lu1qo7eSQKG2hi74gvlyivP_i78lIBrrfioNiQ1IzkgL5gfocIJ32PnOVsvxxKWR3RN0gKKSM7GBGW2F4cxs3olbS64KUURJ2n7JPV6_vlL-RRRhwjFcilTR1JDQWQSbndaAPxbyqH_0Q&h=pJ38Gy2gWWtm8TacC4d07ZnzyRSF6d4z7e-n3QngbYo - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","name":"289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004","status":"Accepted","startTime":"2024-03-07T09:39:24.8088165Z"}' - headers: - cache-control: - - no-cache - content-length: - - '535' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:56 GMT - etag: - - '"d00024bc-0000-0100-0000-65e98b4c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: E7EA09B9B4B04F03B68CAD8F2CDD5A77 Ref B: MAA201060516021 Ref C: 2024-03-07T09:39:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435?api-version=2023-09-01&t=638454011654448104&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=EUKAizbhacoeC-94c2pjiRn8YfVlQarf5Y9wMtcKNwuT52BUgRRnDolafUx8C_-CPGUiyftbd3vU7E9oX9gYhjAnk4Dpnddn11fP-tk1B9CW5Xe91OW6q72vBzehEDPwDav-gr7en1u5GxN1WORdVYBybEv9TbmB2O6d02AU0dlQkaBWbIXeV3rAOEyKIuqfMqjjKGkj8lu1qo7eSQKG2hi74gvlyivP_i78lIBrrfioNiQ1IzkgL5gfocIJ32PnOVsvxxKWR3RN0gKKSM7GBGW2F4cxs3olbS64KUURJ2n7JPV6_vlL-RRRhwjFcilTR1JDQWQSbndaAPxbyqH_0Q&h=pJ38Gy2gWWtm8TacC4d07ZnzyRSF6d4z7e-n3QngbYo - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","name":"289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004","status":"Accepted","startTime":"2024-03-07T09:39:24.8088165Z"}' - headers: - cache-control: - - no-cache - content-length: - - '535' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:40:27 GMT - etag: - - '"d00024bc-0000-0100-0000-65e98b4c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: FE99AE10078142BB977526C005382106 Ref B: MAA201060516021 Ref C: 2024-03-07T09:40:27Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435?api-version=2023-09-01&t=638454011654448104&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=EUKAizbhacoeC-94c2pjiRn8YfVlQarf5Y9wMtcKNwuT52BUgRRnDolafUx8C_-CPGUiyftbd3vU7E9oX9gYhjAnk4Dpnddn11fP-tk1B9CW5Xe91OW6q72vBzehEDPwDav-gr7en1u5GxN1WORdVYBybEv9TbmB2O6d02AU0dlQkaBWbIXeV3rAOEyKIuqfMqjjKGkj8lu1qo7eSQKG2hi74gvlyivP_i78lIBrrfioNiQ1IzkgL5gfocIJ32PnOVsvxxKWR3RN0gKKSM7GBGW2F4cxs3olbS64KUURJ2n7JPV6_vlL-RRRhwjFcilTR1JDQWQSbndaAPxbyqH_0Q&h=pJ38Gy2gWWtm8TacC4d07ZnzyRSF6d4z7e-n3QngbYo - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","name":"289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004","status":"Accepted","startTime":"2024-03-07T09:39:24.8088165Z"}' - headers: - cache-control: - - no-cache - content-length: - - '535' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:40:58 GMT - etag: - - '"d00024bc-0000-0100-0000-65e98b4c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 646A14F78DE447559DE25DE41EB224EC Ref B: MAA201060516021 Ref C: 2024-03-07T09:40:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435?api-version=2023-09-01&t=638454011654448104&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=EUKAizbhacoeC-94c2pjiRn8YfVlQarf5Y9wMtcKNwuT52BUgRRnDolafUx8C_-CPGUiyftbd3vU7E9oX9gYhjAnk4Dpnddn11fP-tk1B9CW5Xe91OW6q72vBzehEDPwDav-gr7en1u5GxN1WORdVYBybEv9TbmB2O6d02AU0dlQkaBWbIXeV3rAOEyKIuqfMqjjKGkj8lu1qo7eSQKG2hi74gvlyivP_i78lIBrrfioNiQ1IzkgL5gfocIJ32PnOVsvxxKWR3RN0gKKSM7GBGW2F4cxs3olbS64KUURJ2n7JPV6_vlL-RRRhwjFcilTR1JDQWQSbndaAPxbyqH_0Q&h=pJ38Gy2gWWtm8TacC4d07ZnzyRSF6d4z7e-n3QngbYo - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","name":"289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004","status":"Accepted","startTime":"2024-03-07T09:39:24.8088165Z"}' - headers: - cache-control: - - no-cache - content-length: - - '535' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:41:29 GMT - etag: - - '"d00024bc-0000-0100-0000-65e98b4c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 28BFA38525A242F3B100D864C34F4EDB Ref B: MAA201060516021 Ref C: 2024-03-07T09:41:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435?api-version=2023-09-01&t=638454011654448104&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=EUKAizbhacoeC-94c2pjiRn8YfVlQarf5Y9wMtcKNwuT52BUgRRnDolafUx8C_-CPGUiyftbd3vU7E9oX9gYhjAnk4Dpnddn11fP-tk1B9CW5Xe91OW6q72vBzehEDPwDav-gr7en1u5GxN1WORdVYBybEv9TbmB2O6d02AU0dlQkaBWbIXeV3rAOEyKIuqfMqjjKGkj8lu1qo7eSQKG2hi74gvlyivP_i78lIBrrfioNiQ1IzkgL5gfocIJ32PnOVsvxxKWR3RN0gKKSM7GBGW2F4cxs3olbS64KUURJ2n7JPV6_vlL-RRRhwjFcilTR1JDQWQSbndaAPxbyqH_0Q&h=pJ38Gy2gWWtm8TacC4d07ZnzyRSF6d4z7e-n3QngbYo - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","name":"289331db-bf18-4328-8c0b-8f8ed4e17e52*6BB979D09DC6655B1251EB2E90B47CF67557C84A83D788522945C6BADC92D435","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004","status":"Succeeded","startTime":"2024-03-07T09:39:24.8088165Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '554' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:00 GMT - etag: - - '"1c00dbe5-0000-0600-0000-65e98bcc0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 58FBC824EF234E17BF7DC3097700306A Ref B: MAA201060516021 Ref C: 2024-03-07T09:41:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004","name":"pccp000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:39:23.5228707Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:39:23.5228707Z"},"properties":{"provisioningState":"Succeeded","installation":{"state":"Uninstalled","reinstallRequired":"NotRequired","reasons":["NoPacketCoreDataPlane"]},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"platform":{"type":"AKS-HCI"},"coreNetworkTechnology":"5GC","controlPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"sku":"G0","ueMtu":1440,"localDiagnosticsAccess":{"authenticationType":"AAD"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1144' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:01 GMT - etag: - - '"ed00d4e3-0000-0100-0000-65e98ba40000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D8296DB5B99C4BA8A6CD1FB1C8D7494F Ref B: MAA201060516021 Ref C: 2024-03-07T09:42:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_attached_data_network","date":"2024-03-07T09:38:24Z","module":"mobile-network","Creator":"v-jingszhang@microsoft.com","DateCreated":"2024-03-07T09:38:46Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '489' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 004CA439ADED4E99B08A2B049C29CA18 Ref B: MAA201060515017 Ref C: 2024-03-07T09:42:02Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"userPlaneAccessInterface": {"ipv4Address": - "10.28.128.2", "ipv4Gateway": "10.28.128.1", "ipv4Subnet": "10.28.128.0/24", - "name": "N2"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - Content-Length: - - '174' - Content-Type: - - application/json - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005","name":"pcdp000005","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:42:04.9130209Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:42:04.9130209Z"},"properties":{"userPlaneAccessInterface":{"ipv4Address":"10.28.128.2","ipv4Gateway":"10.28.128.1","ipv4Subnet":"10.28.128.0/24","name":"N2"},"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD?api-version=2023-09-01&t=638454013267724263&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=krUhO4eToMa77lWmz0mfGJw98z6jXjFACsCNi-f3WIuua-zBeiBZ5MdD7qDbH3-H9s3u5AxNXxRDeqAS242MYfEcVQvh30EbR8ytWrmwklbUbrwCF_ou578RNuJyxCgPBtYuOgxjUFR7o-X8Oa4Op64H3XH3gkoMYzosCD2mi0opFNDXDIHBPIhW4vFWokp6xUyzfLr9kkYlRigiKB2dm-3rFQ9U0-tTd-jeIHehAqBLIzSeXIKt0nVZ8fAvjTZ8ffyfYrXAZfh3XzNPon3hqcZ6_WB8ZZxPsPOhcbU4EeHazKBfUsCrAlUW8zcjcVu47DUaev3KTc4zPFyO9kZ_nw&h=SUqkq8I_b7jmBBCCaqFzNqaWRgeJvs_tbSwW1qzSkjw - cache-control: - - no-cache - content-length: - - '741' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:06 GMT - etag: - - '"2100d2cc-0000-0100-0000-65e98bee0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: A67B1D6500EC43FBA5D67E95A29D0969 Ref B: MAA201060516049 Ref C: 2024-03-07T09:42:03Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD?api-version=2023-09-01&t=638454013267724263&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=krUhO4eToMa77lWmz0mfGJw98z6jXjFACsCNi-f3WIuua-zBeiBZ5MdD7qDbH3-H9s3u5AxNXxRDeqAS242MYfEcVQvh30EbR8ytWrmwklbUbrwCF_ou578RNuJyxCgPBtYuOgxjUFR7o-X8Oa4Op64H3XH3gkoMYzosCD2mi0opFNDXDIHBPIhW4vFWokp6xUyzfLr9kkYlRigiKB2dm-3rFQ9U0-tTd-jeIHehAqBLIzSeXIKt0nVZ8fAvjTZ8ffyfYrXAZfh3XzNPon3hqcZ6_WB8ZZxPsPOhcbU4EeHazKBfUsCrAlUW8zcjcVu47DUaev3KTc4zPFyO9kZ_nw&h=SUqkq8I_b7jmBBCCaqFzNqaWRgeJvs_tbSwW1qzSkjw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","name":"02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005","status":"Accepted","startTime":"2024-03-07T09:42:06.0271311Z"}' - headers: - cache-control: - - no-cache - content-length: - - '567' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:07 GMT - etag: - - '"d00076c0-0000-0100-0000-65e98bee0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 11B1986663194E9DA367B96D2F6F5A58 Ref B: MAA201060516049 Ref C: 2024-03-07T09:42:06Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD?api-version=2023-09-01&t=638454013267724263&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=krUhO4eToMa77lWmz0mfGJw98z6jXjFACsCNi-f3WIuua-zBeiBZ5MdD7qDbH3-H9s3u5AxNXxRDeqAS242MYfEcVQvh30EbR8ytWrmwklbUbrwCF_ou578RNuJyxCgPBtYuOgxjUFR7o-X8Oa4Op64H3XH3gkoMYzosCD2mi0opFNDXDIHBPIhW4vFWokp6xUyzfLr9kkYlRigiKB2dm-3rFQ9U0-tTd-jeIHehAqBLIzSeXIKt0nVZ8fAvjTZ8ffyfYrXAZfh3XzNPon3hqcZ6_WB8ZZxPsPOhcbU4EeHazKBfUsCrAlUW8zcjcVu47DUaev3KTc4zPFyO9kZ_nw&h=SUqkq8I_b7jmBBCCaqFzNqaWRgeJvs_tbSwW1qzSkjw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","name":"02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005","status":"Accepted","startTime":"2024-03-07T09:42:06.0271311Z"}' - headers: - cache-control: - - no-cache - content-length: - - '567' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:37 GMT - etag: - - '"d00076c0-0000-0100-0000-65e98bee0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 4C37D8DC05594243BCBD4BF7CC3B3365 Ref B: MAA201060516049 Ref C: 2024-03-07T09:42:37Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD?api-version=2023-09-01&t=638454013267724263&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=krUhO4eToMa77lWmz0mfGJw98z6jXjFACsCNi-f3WIuua-zBeiBZ5MdD7qDbH3-H9s3u5AxNXxRDeqAS242MYfEcVQvh30EbR8ytWrmwklbUbrwCF_ou578RNuJyxCgPBtYuOgxjUFR7o-X8Oa4Op64H3XH3gkoMYzosCD2mi0opFNDXDIHBPIhW4vFWokp6xUyzfLr9kkYlRigiKB2dm-3rFQ9U0-tTd-jeIHehAqBLIzSeXIKt0nVZ8fAvjTZ8ffyfYrXAZfh3XzNPon3hqcZ6_WB8ZZxPsPOhcbU4EeHazKBfUsCrAlUW8zcjcVu47DUaev3KTc4zPFyO9kZ_nw&h=SUqkq8I_b7jmBBCCaqFzNqaWRgeJvs_tbSwW1qzSkjw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","name":"02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005","status":"Accepted","startTime":"2024-03-07T09:42:06.0271311Z"}' - headers: - cache-control: - - no-cache - content-length: - - '567' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:43:07 GMT - etag: - - '"d00076c0-0000-0100-0000-65e98bee0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: EAAD02CAFB3440ADB1F3D1D7C519F89E Ref B: MAA201060516049 Ref C: 2024-03-07T09:43:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD?api-version=2023-09-01&t=638454013267724263&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=krUhO4eToMa77lWmz0mfGJw98z6jXjFACsCNi-f3WIuua-zBeiBZ5MdD7qDbH3-H9s3u5AxNXxRDeqAS242MYfEcVQvh30EbR8ytWrmwklbUbrwCF_ou578RNuJyxCgPBtYuOgxjUFR7o-X8Oa4Op64H3XH3gkoMYzosCD2mi0opFNDXDIHBPIhW4vFWokp6xUyzfLr9kkYlRigiKB2dm-3rFQ9U0-tTd-jeIHehAqBLIzSeXIKt0nVZ8fAvjTZ8ffyfYrXAZfh3XzNPon3hqcZ6_WB8ZZxPsPOhcbU4EeHazKBfUsCrAlUW8zcjcVu47DUaev3KTc4zPFyO9kZ_nw&h=SUqkq8I_b7jmBBCCaqFzNqaWRgeJvs_tbSwW1qzSkjw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","name":"02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005","status":"Accepted","startTime":"2024-03-07T09:42:06.0271311Z"}' - headers: - cache-control: - - no-cache - content-length: - - '567' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:43:40 GMT - etag: - - '"d00076c0-0000-0100-0000-65e98bee0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 60AB505A10764E42AC2D5E82EFBC5D00 Ref B: MAA201060516049 Ref C: 2024-03-07T09:43:39Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD?api-version=2023-09-01&t=638454013267724263&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=krUhO4eToMa77lWmz0mfGJw98z6jXjFACsCNi-f3WIuua-zBeiBZ5MdD7qDbH3-H9s3u5AxNXxRDeqAS242MYfEcVQvh30EbR8ytWrmwklbUbrwCF_ou578RNuJyxCgPBtYuOgxjUFR7o-X8Oa4Op64H3XH3gkoMYzosCD2mi0opFNDXDIHBPIhW4vFWokp6xUyzfLr9kkYlRigiKB2dm-3rFQ9U0-tTd-jeIHehAqBLIzSeXIKt0nVZ8fAvjTZ8ffyfYrXAZfh3XzNPon3hqcZ6_WB8ZZxPsPOhcbU4EeHazKBfUsCrAlUW8zcjcVu47DUaev3KTc4zPFyO9kZ_nw&h=SUqkq8I_b7jmBBCCaqFzNqaWRgeJvs_tbSwW1qzSkjw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","name":"02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005","status":"Accepted","startTime":"2024-03-07T09:42:06.0271311Z"}' - headers: - cache-control: - - no-cache - content-length: - - '567' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:44:10 GMT - etag: - - '"d00076c0-0000-0100-0000-65e98bee0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D4847FBC48074FBAB94BA527DC4EA8B6 Ref B: MAA201060516049 Ref C: 2024-03-07T09:44:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD?api-version=2023-09-01&t=638454013267724263&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=krUhO4eToMa77lWmz0mfGJw98z6jXjFACsCNi-f3WIuua-zBeiBZ5MdD7qDbH3-H9s3u5AxNXxRDeqAS242MYfEcVQvh30EbR8ytWrmwklbUbrwCF_ou578RNuJyxCgPBtYuOgxjUFR7o-X8Oa4Op64H3XH3gkoMYzosCD2mi0opFNDXDIHBPIhW4vFWokp6xUyzfLr9kkYlRigiKB2dm-3rFQ9U0-tTd-jeIHehAqBLIzSeXIKt0nVZ8fAvjTZ8ffyfYrXAZfh3XzNPon3hqcZ6_WB8ZZxPsPOhcbU4EeHazKBfUsCrAlUW8zcjcVu47DUaev3KTc4zPFyO9kZ_nw&h=SUqkq8I_b7jmBBCCaqFzNqaWRgeJvs_tbSwW1qzSkjw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","name":"02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005","status":"Accepted","startTime":"2024-03-07T09:42:06.0271311Z"}' - headers: - cache-control: - - no-cache - content-length: - - '567' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:44:41 GMT - etag: - - '"d00076c0-0000-0100-0000-65e98bee0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 6841D6EC7DE84A7F94E7F7905F92D70A Ref B: MAA201060516049 Ref C: 2024-03-07T09:44:41Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD?api-version=2023-09-01&t=638454013267724263&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=krUhO4eToMa77lWmz0mfGJw98z6jXjFACsCNi-f3WIuua-zBeiBZ5MdD7qDbH3-H9s3u5AxNXxRDeqAS242MYfEcVQvh30EbR8ytWrmwklbUbrwCF_ou578RNuJyxCgPBtYuOgxjUFR7o-X8Oa4Op64H3XH3gkoMYzosCD2mi0opFNDXDIHBPIhW4vFWokp6xUyzfLr9kkYlRigiKB2dm-3rFQ9U0-tTd-jeIHehAqBLIzSeXIKt0nVZ8fAvjTZ8ffyfYrXAZfh3XzNPon3hqcZ6_WB8ZZxPsPOhcbU4EeHazKBfUsCrAlUW8zcjcVu47DUaev3KTc4zPFyO9kZ_nw&h=SUqkq8I_b7jmBBCCaqFzNqaWRgeJvs_tbSwW1qzSkjw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","name":"02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005","status":"Accepted","startTime":"2024-03-07T09:42:06.0271311Z"}' - headers: - cache-control: - - no-cache - content-length: - - '567' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:45:12 GMT - etag: - - '"d00076c0-0000-0100-0000-65e98bee0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 632915D390A2465D94BB58F300F1B430 Ref B: MAA201060516049 Ref C: 2024-03-07T09:45:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD?api-version=2023-09-01&t=638454013267724263&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=krUhO4eToMa77lWmz0mfGJw98z6jXjFACsCNi-f3WIuua-zBeiBZ5MdD7qDbH3-H9s3u5AxNXxRDeqAS242MYfEcVQvh30EbR8ytWrmwklbUbrwCF_ou578RNuJyxCgPBtYuOgxjUFR7o-X8Oa4Op64H3XH3gkoMYzosCD2mi0opFNDXDIHBPIhW4vFWokp6xUyzfLr9kkYlRigiKB2dm-3rFQ9U0-tTd-jeIHehAqBLIzSeXIKt0nVZ8fAvjTZ8ffyfYrXAZfh3XzNPon3hqcZ6_WB8ZZxPsPOhcbU4EeHazKBfUsCrAlUW8zcjcVu47DUaev3KTc4zPFyO9kZ_nw&h=SUqkq8I_b7jmBBCCaqFzNqaWRgeJvs_tbSwW1qzSkjw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","name":"02fb6617-3e6a-4879-b702-a12257303e92*D05B69B168DC134FAC33B0C534C1E434690656AC2727564948EA13555C8417FD","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005","status":"Succeeded","startTime":"2024-03-07T09:42:06.0271311Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '586' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:45:42 GMT - etag: - - '"1c0059e8-0000-0600-0000-65e98ca90000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: FAAFEC9951B348EEA37C3F80781CD5CF Ref B: MAA201060516049 Ref C: 2024-03-07T09:45:42Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005","name":"pcdp000005","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:42:04.9130209Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:42:04.9130209Z"},"properties":{"provisioningState":"Succeeded","userPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"}}}' - headers: - cache-control: - - no-cache - content-length: - - '742' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:45:43 GMT - etag: - - '"2100c7cd-0000-0100-0000-65e98c960000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: C4D8F76D1A1144C1BF6E79966D5D8315 Ref B: MAA201060516049 Ref C: 2024-03-07T09:45:43Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_attached_data_network","date":"2024-03-07T09:38:24Z","module":"mobile-network","Creator":"v-jingszhang@microsoft.com","DateCreated":"2024-03-07T09:38:46Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '489' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:45:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 9DD44E43B0C84E769A04FB03ADC04505 Ref B: MAA201060515031 Ref C: 2024-03-07T09:45:44Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network create - Connection: - - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json - ParameterSetName: - - -n -g --mobile-network-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000006?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000006","name":"dn000006","type":"microsoft.mobilenetwork/mobilenetworks/datanetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:45:47.0116424Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:45:47.0116424Z"},"properties":{"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a368849f-480a-46c9-9ca2-974f331f26c0*C8BC80F0A5D3032983C5DFA25C159C197886C4FBF87810F5AE4B0CD87B32366B?api-version=2023-09-01&t=638454015483084498&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=KVT9hg6jgmnotHOLAmPHgF0Y6Va3ys-h3yzIZyuVtOr8buyH_IEGZNJ_nwAsjpPtn_tNJ8H2rVv7VDmH8c1g0q-SnyRc7Zio5zChm-RpkywBaf-vbpoxj61Ib9yTNFAkKapWz6ssb1FhU8-5VfYwuYwpGGUJ07apw1cnyUbb2z3lJNTWRaXCQgz4289eR5-XQqT4Joks0eTfLru6yu9kfrFn211Fo20tGoNTjjsVUX6RCZpe2HIDgPdxqqq3EdIGJBJo1rnUbuGo6-w9sFTbImnKxBojYbXYCKcWbdfF8kUd79Xq2dFQPux-DQCsqhUP-A6o5bqFzHZLu37SwX-Fcw&h=qhPi2UXMEtpOo1fB3lCpXMjMyEO2CdQ7F1QTfa6ODdw - cache-control: - - no-cache - content-length: - - '587' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:45:47 GMT - etag: - - '"56039036-0000-0100-0000-65e98ccb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 72EF517CD8F5474BBBF8A5FF0B6BA03F Ref B: MAA201060513045 Ref C: 2024-03-07T09:45:45Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a368849f-480a-46c9-9ca2-974f331f26c0*C8BC80F0A5D3032983C5DFA25C159C197886C4FBF87810F5AE4B0CD87B32366B?api-version=2023-09-01&t=638454015483084498&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=KVT9hg6jgmnotHOLAmPHgF0Y6Va3ys-h3yzIZyuVtOr8buyH_IEGZNJ_nwAsjpPtn_tNJ8H2rVv7VDmH8c1g0q-SnyRc7Zio5zChm-RpkywBaf-vbpoxj61Ib9yTNFAkKapWz6ssb1FhU8-5VfYwuYwpGGUJ07apw1cnyUbb2z3lJNTWRaXCQgz4289eR5-XQqT4Joks0eTfLru6yu9kfrFn211Fo20tGoNTjjsVUX6RCZpe2HIDgPdxqqq3EdIGJBJo1rnUbuGo6-w9sFTbImnKxBojYbXYCKcWbdfF8kUd79Xq2dFQPux-DQCsqhUP-A6o5bqFzHZLu37SwX-Fcw&h=qhPi2UXMEtpOo1fB3lCpXMjMyEO2CdQ7F1QTfa6ODdw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a368849f-480a-46c9-9ca2-974f331f26c0*C8BC80F0A5D3032983C5DFA25C159C197886C4FBF87810F5AE4B0CD87B32366B","name":"a368849f-480a-46c9-9ca2-974f331f26c0*C8BC80F0A5D3032983C5DFA25C159C197886C4FBF87810F5AE4B0CD87B32366B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000006","status":"Accepted","startTime":"2024-03-07T09:45:47.4968329Z"}' - headers: - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:45:48 GMT - etag: - - '"d0005fc6-0000-0100-0000-65e98ccb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D5E3FD80D83340DD87E9FD400253CD06 Ref B: MAA201060513045 Ref C: 2024-03-07T09:45:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a368849f-480a-46c9-9ca2-974f331f26c0*C8BC80F0A5D3032983C5DFA25C159C197886C4FBF87810F5AE4B0CD87B32366B?api-version=2023-09-01&t=638454015483084498&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=KVT9hg6jgmnotHOLAmPHgF0Y6Va3ys-h3yzIZyuVtOr8buyH_IEGZNJ_nwAsjpPtn_tNJ8H2rVv7VDmH8c1g0q-SnyRc7Zio5zChm-RpkywBaf-vbpoxj61Ib9yTNFAkKapWz6ssb1FhU8-5VfYwuYwpGGUJ07apw1cnyUbb2z3lJNTWRaXCQgz4289eR5-XQqT4Joks0eTfLru6yu9kfrFn211Fo20tGoNTjjsVUX6RCZpe2HIDgPdxqqq3EdIGJBJo1rnUbuGo6-w9sFTbImnKxBojYbXYCKcWbdfF8kUd79Xq2dFQPux-DQCsqhUP-A6o5bqFzHZLu37SwX-Fcw&h=qhPi2UXMEtpOo1fB3lCpXMjMyEO2CdQ7F1QTfa6ODdw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a368849f-480a-46c9-9ca2-974f331f26c0*C8BC80F0A5D3032983C5DFA25C159C197886C4FBF87810F5AE4B0CD87B32366B","name":"a368849f-480a-46c9-9ca2-974f331f26c0*C8BC80F0A5D3032983C5DFA25C159C197886C4FBF87810F5AE4B0CD87B32366B","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000006","status":"Succeeded","startTime":"2024-03-07T09:45:47.4968329Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '578' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:46:18 GMT - etag: - - '"1c00bbe8-0000-0600-0000-65e98cd20000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F0BAD191997745A8A9B258E788FB88AB Ref B: MAA201060513045 Ref C: 2024-03-07T09:46:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000006?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000006","name":"dn000006","type":"microsoft.mobilenetwork/mobilenetworks/datanetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:45:47.0116424Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:45:47.0116424Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '588' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:46:19 GMT - etag: - - '"120061c7-0000-0600-0000-65e98cd20000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: DC564A2921064D07861BCE1A32A506A7 Ref B: MAA201060513045 Ref C: 2024-03-07T09:46:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --dns-addresses --data-interface --address-pool - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_attached_data_network","date":"2024-03-07T09:38:24Z","module":"mobile-network","Creator":"v-jingszhang@microsoft.com","DateCreated":"2024-03-07T09:38:46Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '489' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:46:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 57E9A0F9A8484957BF915C31E6D64C67 Ref B: MAA201060514019 Ref C: 2024-03-07T09:46:21Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"dnsAddresses": ["1.1.1.1"], "userEquipmentAddressPoolPrefix": - ["2.2.0.0/16"], "userPlaneDataInterface": {"ipv4Address": "10.28.128.2", "ipv4Gateway": - "10.28.128.1", "ipv4Subnet": "10.28.128.0/24", "name": "N2"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network create - Connection: - - keep-alive - Content-Length: - - '251' - Content-Type: - - application/json - ParameterSetName: - - -n -g --pccp-name --pcdp-name --dns-addresses --data-interface --address-pool - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","name":"dn000006","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes/attacheddatanetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:46:23.3104387Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:46:23.3104387Z"},"properties":{"dnsAddresses":["1.1.1.1"],"userEquipmentAddressPoolPrefix":["2.2.0.0/16"],"userPlaneDataInterface":{"ipv4Address":"10.28.128.2","ipv4Gateway":"10.28.128.1","ipv4Subnet":"10.28.128.0/24","name":"N2"},"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454015852636773&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WX8NJW9v1Yk8SYc0Dq4_j_KUWtPvsbysoorC31J9HsVSl16_k6snsdqmiSVlnAv51h5450skk9SS9wykdBpdis0WG5mONKCTyoTEhetWY7tVtOouN_n58f4yv4407NmYwEf42fQBkwL51NEYuTANKQUylGd9cnZoER-4FkMG5xrDuy6tFL0uuda61PGXi-2eL3zUUt0pqC1n5mw2My_7yzJO87JgcOTtekLgwggUT3xrKfTqHSMXrCrG-bxJQMZShEYy92T_jLpUfTzElXkW65UGnR9sQhlo0Lk2JGwID80oF3R6VMjcRgRhz1ww78nHZv2dV6wQTaZMW4fZDxN4KQ&h=y50sP6_m5kR4xr2hwq1DIP1L1k4BqrcwA9VGILizHuM - cache-control: - - no-cache - content-length: - - '863' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:46:24 GMT - etag: - - '"8e00d755-0000-0100-0000-65e98cf00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: D45766FF490346E1BCB70736BE36DC36 Ref B: MAA201060514035 Ref C: 2024-03-07T09:46:21Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --dns-addresses --data-interface --address-pool - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454015852636773&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WX8NJW9v1Yk8SYc0Dq4_j_KUWtPvsbysoorC31J9HsVSl16_k6snsdqmiSVlnAv51h5450skk9SS9wykdBpdis0WG5mONKCTyoTEhetWY7tVtOouN_n58f4yv4407NmYwEf42fQBkwL51NEYuTANKQUylGd9cnZoER-4FkMG5xrDuy6tFL0uuda61PGXi-2eL3zUUt0pqC1n5mw2My_7yzJO87JgcOTtekLgwggUT3xrKfTqHSMXrCrG-bxJQMZShEYy92T_jLpUfTzElXkW65UGnR9sQhlo0Lk2JGwID80oF3R6VMjcRgRhz1ww78nHZv2dV6wQTaZMW4fZDxN4KQ&h=y50sP6_m5kR4xr2hwq1DIP1L1k4BqrcwA9VGILizHuM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Accepted","startTime":"2024-03-07T09:46:24.5265551Z"}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:46:24 GMT - etag: - - '"d0009ac7-0000-0100-0000-65e98cf00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 05F92B91BA7E41B3BE689ADB1D367097 Ref B: MAA201060514035 Ref C: 2024-03-07T09:46:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --dns-addresses --data-interface --address-pool - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454015852636773&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WX8NJW9v1Yk8SYc0Dq4_j_KUWtPvsbysoorC31J9HsVSl16_k6snsdqmiSVlnAv51h5450skk9SS9wykdBpdis0WG5mONKCTyoTEhetWY7tVtOouN_n58f4yv4407NmYwEf42fQBkwL51NEYuTANKQUylGd9cnZoER-4FkMG5xrDuy6tFL0uuda61PGXi-2eL3zUUt0pqC1n5mw2My_7yzJO87JgcOTtekLgwggUT3xrKfTqHSMXrCrG-bxJQMZShEYy92T_jLpUfTzElXkW65UGnR9sQhlo0Lk2JGwID80oF3R6VMjcRgRhz1ww78nHZv2dV6wQTaZMW4fZDxN4KQ&h=y50sP6_m5kR4xr2hwq1DIP1L1k4BqrcwA9VGILizHuM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Accepted","startTime":"2024-03-07T09:46:24.5265551Z"}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:46:55 GMT - etag: - - '"d0009ac7-0000-0100-0000-65e98cf00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D5D6D0BCF68C4823B1B8C038BAF9383C Ref B: MAA201060514035 Ref C: 2024-03-07T09:46:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --dns-addresses --data-interface --address-pool - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454015852636773&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WX8NJW9v1Yk8SYc0Dq4_j_KUWtPvsbysoorC31J9HsVSl16_k6snsdqmiSVlnAv51h5450skk9SS9wykdBpdis0WG5mONKCTyoTEhetWY7tVtOouN_n58f4yv4407NmYwEf42fQBkwL51NEYuTANKQUylGd9cnZoER-4FkMG5xrDuy6tFL0uuda61PGXi-2eL3zUUt0pqC1n5mw2My_7yzJO87JgcOTtekLgwggUT3xrKfTqHSMXrCrG-bxJQMZShEYy92T_jLpUfTzElXkW65UGnR9sQhlo0Lk2JGwID80oF3R6VMjcRgRhz1ww78nHZv2dV6wQTaZMW4fZDxN4KQ&h=y50sP6_m5kR4xr2hwq1DIP1L1k4BqrcwA9VGILizHuM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Accepted","startTime":"2024-03-07T09:46:24.5265551Z"}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:47:27 GMT - etag: - - '"d0009ac7-0000-0100-0000-65e98cf00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: FA72D16868A841668AC39D0D1C438EC9 Ref B: MAA201060514035 Ref C: 2024-03-07T09:47:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --dns-addresses --data-interface --address-pool - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454015852636773&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WX8NJW9v1Yk8SYc0Dq4_j_KUWtPvsbysoorC31J9HsVSl16_k6snsdqmiSVlnAv51h5450skk9SS9wykdBpdis0WG5mONKCTyoTEhetWY7tVtOouN_n58f4yv4407NmYwEf42fQBkwL51NEYuTANKQUylGd9cnZoER-4FkMG5xrDuy6tFL0uuda61PGXi-2eL3zUUt0pqC1n5mw2My_7yzJO87JgcOTtekLgwggUT3xrKfTqHSMXrCrG-bxJQMZShEYy92T_jLpUfTzElXkW65UGnR9sQhlo0Lk2JGwID80oF3R6VMjcRgRhz1ww78nHZv2dV6wQTaZMW4fZDxN4KQ&h=y50sP6_m5kR4xr2hwq1DIP1L1k4BqrcwA9VGILizHuM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Accepted","startTime":"2024-03-07T09:46:24.5265551Z"}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:47:57 GMT - etag: - - '"d0009ac7-0000-0100-0000-65e98cf00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: EA001D95283A4E6AA2DA7F77BA8D3047 Ref B: MAA201060514035 Ref C: 2024-03-07T09:47:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --dns-addresses --data-interface --address-pool - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454015852636773&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WX8NJW9v1Yk8SYc0Dq4_j_KUWtPvsbysoorC31J9HsVSl16_k6snsdqmiSVlnAv51h5450skk9SS9wykdBpdis0WG5mONKCTyoTEhetWY7tVtOouN_n58f4yv4407NmYwEf42fQBkwL51NEYuTANKQUylGd9cnZoER-4FkMG5xrDuy6tFL0uuda61PGXi-2eL3zUUt0pqC1n5mw2My_7yzJO87JgcOTtekLgwggUT3xrKfTqHSMXrCrG-bxJQMZShEYy92T_jLpUfTzElXkW65UGnR9sQhlo0Lk2JGwID80oF3R6VMjcRgRhz1ww78nHZv2dV6wQTaZMW4fZDxN4KQ&h=y50sP6_m5kR4xr2hwq1DIP1L1k4BqrcwA9VGILizHuM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"1c62c5ca-5c3e-42a5-85b5-650398257db9*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Succeeded","startTime":"2024-03-07T09:46:24.5265551Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:50:47 GMT - etag: - - '"1c007beb-0000-0600-0000-65e98de80000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 6A1F867910E84EF98D6122A5D65E8FC1 Ref B: MAA201060516033 Ref C: 2024-03-07T09:50:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --dns-addresses --data-interface --address-pool - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","name":"dn000006","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes/attacheddatanetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:46:23.3104387Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:46:23.3104387Z"},"properties":{"provisioningState":"Succeeded","userPlaneDataInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"dnsAddresses":["1.1.1.1"],"userEquipmentAddressPoolPrefix":["2.2.0.0/16"]}}' - headers: - cache-control: - - no-cache - content-length: - - '864' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:50:48 GMT - etag: - - '"8e00d758-0000-0100-0000-65e98dda0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 2BC878E56C8641A5A7CB97DB89F422C5 Ref B: MAA201060516033 Ref C: 2024-03-07T09:50:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network update - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","name":"dn000006","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes/attacheddatanetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:46:23.3104387Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:46:23.3104387Z"},"properties":{"provisioningState":"Succeeded","userPlaneDataInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"dnsAddresses":["1.1.1.1"],"userEquipmentAddressPoolPrefix":["2.2.0.0/16"]}}' - headers: - cache-control: - - no-cache - content-length: - - '864' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:50:49 GMT - etag: - - '"8e00d758-0000-0100-0000-65e98dda0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 1D0D476E749D4FF38D5BF640DDBEE429 Ref B: MAA201060513035 Ref C: 2024-03-07T09:50:50Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"dnsAddresses": ["1.1.1.1"], "userEquipmentAddressPoolPrefix": - ["2.2.0.0/16"], "userPlaneDataInterface": {"ipv4Address": "10.28.128.2", "ipv4Gateway": - "10.28.128.1", "ipv4Subnet": "10.28.128.0/24", "name": "N2"}}, "tags": {"tag": - "test", "tag2": "test2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network update - Connection: - - keep-alive - Content-Length: - - '293' - Content-Type: - - application/json - ParameterSetName: - - -n -g --pccp-name --pcdp-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","name":"dn000006","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes/attacheddatanetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:46:23.3104387Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:50:51.2086295Z"},"properties":{"provisioningState":"Accepted","dnsAddresses":["1.1.1.1"],"userEquipmentAddressPoolPrefix":["2.2.0.0/16"],"userPlaneDataInterface":{"ipv4Address":"10.28.128.2","ipv4Gateway":"10.28.128.1","ipv4Subnet":"10.28.128.0/24","name":"N2"}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454018548649342&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=lP_SU3G5KN7L5jePdjZQoXegPONvGndyloR0Tfbnii4lpfx_qcQ1TFP85fh0hOLUvr33CcfWZJn9DlsXJfWBnc_wjmOGJd0Fx7fv784Xh6BBQAx4hVfIEQaw_KKe7LyziW_I0NHuO2Zu10J_eE-QDv59RniBW9sYPhWSwQlYBlTLV31f0e4qoy-tu6zWc1TUlT-2kYvzWzq6uqDlZAu06ZjyZgnwmVB2OhAv_NRPLp75dOe2VlauU1Wil3DjGSQEDet4_rVCEUgBh0tDDo4o-JtHI_-I1ckAGQnF6ZdPq-EROK6sfyVFkLlii6qT55FAbg93cQIpL_7FloRuSbsbEQ&h=olL4o6HkfpRYn00SHMNZ81S87BmfCX06H7Nb9KpXLWg - cache-control: - - no-cache - content-length: - - '900' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:50:54 GMT - etag: - - '"8e005059-0000-0100-0000-65e98dfc0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 29C92E14A1434D66BFA248B8665826A7 Ref B: MAA201060513035 Ref C: 2024-03-07T09:50:50Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network update - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454018548649342&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=lP_SU3G5KN7L5jePdjZQoXegPONvGndyloR0Tfbnii4lpfx_qcQ1TFP85fh0hOLUvr33CcfWZJn9DlsXJfWBnc_wjmOGJd0Fx7fv784Xh6BBQAx4hVfIEQaw_KKe7LyziW_I0NHuO2Zu10J_eE-QDv59RniBW9sYPhWSwQlYBlTLV31f0e4qoy-tu6zWc1TUlT-2kYvzWzq6uqDlZAu06ZjyZgnwmVB2OhAv_NRPLp75dOe2VlauU1Wil3DjGSQEDet4_rVCEUgBh0tDDo4o-JtHI_-I1ckAGQnF6ZdPq-EROK6sfyVFkLlii6qT55FAbg93cQIpL_7FloRuSbsbEQ&h=olL4o6HkfpRYn00SHMNZ81S87BmfCX06H7Nb9KpXLWg - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Accepted","startTime":"2024-03-07T09:50:51.9690431Z"}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:50:54 GMT - etag: - - '"d000c9cc-0000-0100-0000-65e98dfb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F99BDD5023D54DB98BC1203321AD73DF Ref B: MAA201060513035 Ref C: 2024-03-07T09:50:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network update - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454018548649342&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=lP_SU3G5KN7L5jePdjZQoXegPONvGndyloR0Tfbnii4lpfx_qcQ1TFP85fh0hOLUvr33CcfWZJn9DlsXJfWBnc_wjmOGJd0Fx7fv784Xh6BBQAx4hVfIEQaw_KKe7LyziW_I0NHuO2Zu10J_eE-QDv59RniBW9sYPhWSwQlYBlTLV31f0e4qoy-tu6zWc1TUlT-2kYvzWzq6uqDlZAu06ZjyZgnwmVB2OhAv_NRPLp75dOe2VlauU1Wil3DjGSQEDet4_rVCEUgBh0tDDo4o-JtHI_-I1ckAGQnF6ZdPq-EROK6sfyVFkLlii6qT55FAbg93cQIpL_7FloRuSbsbEQ&h=olL4o6HkfpRYn00SHMNZ81S87BmfCX06H7Nb9KpXLWg - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Accepted","startTime":"2024-03-07T09:50:51.9690431Z"}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:51:24 GMT - etag: - - '"d000c9cc-0000-0100-0000-65e98dfb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: FF1F3B98A8F843098CF9986ED0992E1E Ref B: MAA201060513035 Ref C: 2024-03-07T09:51:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network update - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454018548649342&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=lP_SU3G5KN7L5jePdjZQoXegPONvGndyloR0Tfbnii4lpfx_qcQ1TFP85fh0hOLUvr33CcfWZJn9DlsXJfWBnc_wjmOGJd0Fx7fv784Xh6BBQAx4hVfIEQaw_KKe7LyziW_I0NHuO2Zu10J_eE-QDv59RniBW9sYPhWSwQlYBlTLV31f0e4qoy-tu6zWc1TUlT-2kYvzWzq6uqDlZAu06ZjyZgnwmVB2OhAv_NRPLp75dOe2VlauU1Wil3DjGSQEDet4_rVCEUgBh0tDDo4o-JtHI_-I1ckAGQnF6ZdPq-EROK6sfyVFkLlii6qT55FAbg93cQIpL_7FloRuSbsbEQ&h=olL4o6HkfpRYn00SHMNZ81S87BmfCX06H7Nb9KpXLWg - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Accepted","startTime":"2024-03-07T09:50:51.9690431Z"}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:51:56 GMT - etag: - - '"d000c9cc-0000-0100-0000-65e98dfb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 22054E887F004342B0699AC5ABB65444 Ref B: MAA201060513035 Ref C: 2024-03-07T09:51:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network update - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454018548649342&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=lP_SU3G5KN7L5jePdjZQoXegPONvGndyloR0Tfbnii4lpfx_qcQ1TFP85fh0hOLUvr33CcfWZJn9DlsXJfWBnc_wjmOGJd0Fx7fv784Xh6BBQAx4hVfIEQaw_KKe7LyziW_I0NHuO2Zu10J_eE-QDv59RniBW9sYPhWSwQlYBlTLV31f0e4qoy-tu6zWc1TUlT-2kYvzWzq6uqDlZAu06ZjyZgnwmVB2OhAv_NRPLp75dOe2VlauU1Wil3DjGSQEDet4_rVCEUgBh0tDDo4o-JtHI_-I1ckAGQnF6ZdPq-EROK6sfyVFkLlii6qT55FAbg93cQIpL_7FloRuSbsbEQ&h=olL4o6HkfpRYn00SHMNZ81S87BmfCX06H7Nb9KpXLWg - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"3415ab64-9f05-4c87-91c1-195ea602a091*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Succeeded","startTime":"2024-03-07T09:50:51.9690431Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:52:48 GMT - etag: - - '"1c005bec-0000-0600-0000-65e98e3e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 284C10749D8B4D0885D84879B61326F5 Ref B: TYO201100116053 Ref C: 2024-03-07T09:52:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network update - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --pcdp-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","name":"dn000006","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes/attacheddatanetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:46:23.3104387Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:50:51.2086295Z"},"properties":{"provisioningState":"Succeeded","userPlaneDataInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"dnsAddresses":["1.1.1.1"],"userEquipmentAddressPoolPrefix":["2.2.0.0/16"]}}' - headers: - cache-control: - - no-cache - content-length: - - '901' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:52:50 GMT - etag: - - '"8e00a959-0000-0100-0000-65e98e140000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 9C4A40B8098D414699556B0A62911931 Ref B: TYO201100116053 Ref C: 2024-03-07T09:52:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network list - Connection: - - keep-alive - ParameterSetName: - - -g --pccp-name --pcdp-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","name":"dn000006","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes/attacheddatanetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:46:23.3104387Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:50:51.2086295Z"},"properties":{"provisioningState":"Succeeded","userPlaneDataInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"dnsAddresses":["1.1.1.1"],"userEquipmentAddressPoolPrefix":["2.2.0.0/16"]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '913' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:52:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 289A515498514C2D80735BFD316A038A Ref B: TYO201100114047 Ref C: 2024-03-07T09:52:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network show - Connection: - - keep-alive - ParameterSetName: - - -n --pccp-name --pcdp-name -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","name":"dn000006","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes/attacheddatanetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:46:23.3104387Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:50:51.2086295Z"},"properties":{"provisioningState":"Succeeded","userPlaneDataInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"dnsAddresses":["1.1.1.1"],"userEquipmentAddressPoolPrefix":["2.2.0.0/16"]}}' - headers: - cache-control: - - no-cache - content-length: - - '901' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:52:55 GMT - etag: - - '"8e00a959-0000-0100-0000-65e98e140000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 2ECB11511D9B41C492F442504031BE7D Ref B: TYO201100117025 Ref C: 2024-03-07T09:52:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n --pccp-name --pcdp-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454019804068050&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=MY70kNNNk0RZQmRPGzMxeTKdl06haGoZIqxP7KeU_Wrc8tA34ZMnfIUmcF9UIJNrp2jyO5dDw_Wj16340dvqH-tSsXGBKhFgUIKTiWo5SHVlSI_BOjbYKihQwDxKpb1u7oIkxv77tn8P1-yJnWKqecCecGA8ytvIsgitle_X0PHWMwtLUEul8tI41o8DA-RISQeEhgUxavGPNRxEND4VZU6dmtTJwvxEzUMRNYayCHP73LWP01yhi6_XnrEjHc-jlL7hBlXxN0zpJ1bSIho27HPBiCD7jhbfsEPPvag-GWOwLUZNSSH-a9RTgVok8AHNTBmvvOC_GjmxhBjuP12A-Q&h=lHV_4PQgGh9jdAQNcbAvwsUi_mtX9HdifLekxQj-iCc - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:52:59 GMT - etag: - - '"8e000f5b-0000-0100-0000-65e98e7c0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454019804224337&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=LgJw4G4H3e6p71bcsH2lzOViPoTm2A9xEKsuab7twryBuIuWAUUDWrkolVfh68wlhfMFF2y7JSWbo7Ir93KgHeITdJ2GXMWRfL_uox0THkEVXYIP9iiB7HzPfVV6YYLx0UMCtMGxKpYHgY9l1nCaTVs01bBYsjDbIXC4BqnxxaUP1MDucoEoY5sM3R3FlzNndWS4tMNKf98bkmuo9IKZSSTtHS4lTuk6gYJfWwRi3PI7zbf1mu4kRBuNn0WKsq0fne3oR1UnEAID6hzZzfyV_1IA_DyZllBunGTsCqlsYvibPs3A4J73G8YPBc-JcSGjg7EXqLs7qlMPi2BBCT3eJg&h=8JKdLFgqvw3ziEcH9euSheuJaToCCWDNpT1QNKaY91E - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 83603DBE2FAB40BF9BFE030F228CD006 Ref B: TYO201100114023 Ref C: 2024-03-07T09:52:58Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network delete - Connection: - - keep-alive - ParameterSetName: - - -n --pccp-name --pcdp-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454019804068050&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=MY70kNNNk0RZQmRPGzMxeTKdl06haGoZIqxP7KeU_Wrc8tA34ZMnfIUmcF9UIJNrp2jyO5dDw_Wj16340dvqH-tSsXGBKhFgUIKTiWo5SHVlSI_BOjbYKihQwDxKpb1u7oIkxv77tn8P1-yJnWKqecCecGA8ytvIsgitle_X0PHWMwtLUEul8tI41o8DA-RISQeEhgUxavGPNRxEND4VZU6dmtTJwvxEzUMRNYayCHP73LWP01yhi6_XnrEjHc-jlL7hBlXxN0zpJ1bSIho27HPBiCD7jhbfsEPPvag-GWOwLUZNSSH-a9RTgVok8AHNTBmvvOC_GjmxhBjuP12A-Q&h=lHV_4PQgGh9jdAQNcbAvwsUi_mtX9HdifLekxQj-iCc - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Deleting","startTime":"2024-03-07T09:53:00.0222274Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454019832973820&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=ePhzxK8DMBzxdUqjHDAa8zSpiuagIwDE_YBV79L9Ahq0hWXbknd5SIPj04WhN7MWdLZiz26ME3JZD2jMMdvoT9qa8dhWJdrwTnodTeVGr7iFNlpSQ1D11oAXD0YAMf88EwI7PiSeRS4Jl92kW8QuLdW2ovKNzE6Yd5JY7ZcVJTBuN10l9vpbjtYarPb9FCt-dBAPjEuK_osxtPsZTtFcP5OmC1DE05PYAaSWS5X55rLztBZ5CzTZ0FrrGLI7wNdG7L3U2X60HnREj_FGgltjZH-9IyVRB8r0Gv5dWOTwcM3TuwvTn3__THtlq5rE1CxCMj0w8-vSu0UfdSCM3MDOWQ&h=wKUzcjnBau8RuFv-m7aGzDfJmZnPTDr5kubf89s1E8g - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:53:02 GMT - etag: - - '"d0001dd0-0000-0100-0000-65e98e7c0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454019833130099&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=ON0tBmfd6m9Nv4XRuWQ0v6rBCscrXtOMq4I8v0rTRrG7e6MjDoOD65zsp7VNH-Tnz-Dtom90xORs8yrP2F0BowK6UsyfLK0e1rIkk9seOKBNzY_i45JxgNAAsCoEN_xKr8IasKvLE3uhMdzXdxpQnnd4E_6KckpFL56fRPCXTIV0tqvkuE_fZVQK-UFIBAuA8oMY6wl2u98TxeVWKY5JsZJi2ZVv1l0mDJrCPOcMr-4Ejqa1ila5xPv5uCEa0vMhOGuYrCCfQmtYvQpuf0iBMoMkSfeHFYu9UFiCt7trQZXcaU4PLJ-1m6ggKyC4xuV4d17tOkwpdfUJdrYrW53pPA&h=_OAHEs9OKoiGeOXFuWQLJQ00E76DoM7pRSwk89ppCnI - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 35D3EA69B40F433080F56B2492C1FA4B Ref B: TYO201100114023 Ref C: 2024-03-07T09:53:03Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network delete - Connection: - - keep-alive - ParameterSetName: - - -n --pccp-name --pcdp-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454019804068050&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=MY70kNNNk0RZQmRPGzMxeTKdl06haGoZIqxP7KeU_Wrc8tA34ZMnfIUmcF9UIJNrp2jyO5dDw_Wj16340dvqH-tSsXGBKhFgUIKTiWo5SHVlSI_BOjbYKihQwDxKpb1u7oIkxv77tn8P1-yJnWKqecCecGA8ytvIsgitle_X0PHWMwtLUEul8tI41o8DA-RISQeEhgUxavGPNRxEND4VZU6dmtTJwvxEzUMRNYayCHP73LWP01yhi6_XnrEjHc-jlL7hBlXxN0zpJ1bSIho27HPBiCD7jhbfsEPPvag-GWOwLUZNSSH-a9RTgVok8AHNTBmvvOC_GjmxhBjuP12A-Q&h=lHV_4PQgGh9jdAQNcbAvwsUi_mtX9HdifLekxQj-iCc - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Deleting","startTime":"2024-03-07T09:53:00.0222274Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454020168989566&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=GQ6VAUMyl3sEUyfCD4LVCX5YAnjOp0CLi8eBwjjaFYO-gL7I8mrcxcTxPbqvO31kL_75NdTLGh-i1p-8IXzK64XiYhXEK1PFA5gqD3tuxsUqMxTs21lsqqo_p_0SrRi-pLkNQG16cLMTyaZ1-WpUKkQiXiQHeZUWuj1j0UnD3HF4y5r5flDBLwpUfp7Nn3fMgpvsRKb0kVh_S24q18iJ6qE-c7BZRPNRLKMAKI-PNjtxsjbD9f_VV3Gy1SLds7V95ybdPp0v7QDNqV6RcTQi_4VdvtBBuQVwqcYEXsN9rTmMouRNdLBqM-o_nQheNc13nqlqlWtvil4lXj7XzNgXaQ&h=nkr1yiRhwK9jxNipjttLlaxuZ-X_lxyKS9O-c2HLxwo - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:53:36 GMT - etag: - - '"d0001dd0-0000-0100-0000-65e98e7c0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454020168989566&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=GQ6VAUMyl3sEUyfCD4LVCX5YAnjOp0CLi8eBwjjaFYO-gL7I8mrcxcTxPbqvO31kL_75NdTLGh-i1p-8IXzK64XiYhXEK1PFA5gqD3tuxsUqMxTs21lsqqo_p_0SrRi-pLkNQG16cLMTyaZ1-WpUKkQiXiQHeZUWuj1j0UnD3HF4y5r5flDBLwpUfp7Nn3fMgpvsRKb0kVh_S24q18iJ6qE-c7BZRPNRLKMAKI-PNjtxsjbD9f_VV3Gy1SLds7V95ybdPp0v7QDNqV6RcTQi_4VdvtBBuQVwqcYEXsN9rTmMouRNdLBqM-o_nQheNc13nqlqlWtvil4lXj7XzNgXaQ&h=nkr1yiRhwK9jxNipjttLlaxuZ-X_lxyKS9O-c2HLxwo - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 74994AC374AB4A6EB4D6599D49A9BCBD Ref B: TYO201100114023 Ref C: 2024-03-07T09:53:36Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network delete - Connection: - - keep-alive - ParameterSetName: - - -n --pccp-name --pcdp-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454019804068050&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=MY70kNNNk0RZQmRPGzMxeTKdl06haGoZIqxP7KeU_Wrc8tA34ZMnfIUmcF9UIJNrp2jyO5dDw_Wj16340dvqH-tSsXGBKhFgUIKTiWo5SHVlSI_BOjbYKihQwDxKpb1u7oIkxv77tn8P1-yJnWKqecCecGA8ytvIsgitle_X0PHWMwtLUEul8tI41o8DA-RISQeEhgUxavGPNRxEND4VZU6dmtTJwvxEzUMRNYayCHP73LWP01yhi6_XnrEjHc-jlL7hBlXxN0zpJ1bSIho27HPBiCD7jhbfsEPPvag-GWOwLUZNSSH-a9RTgVok8AHNTBmvvOC_GjmxhBjuP12A-Q&h=lHV_4PQgGh9jdAQNcbAvwsUi_mtX9HdifLekxQj-iCc - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Deleting","startTime":"2024-03-07T09:53:00.0222274Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454020493805483&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=O0GNKSrUq1DJVZnDoAwZwP9VXnSACXdztRalIrSVFKrJ7hFDLU_63HaEaLLLsWyCmF833hp5rHRgCpHmUlZb7DVLv4ztscwxEBFF0W23zGdwukoaXhu6Tgj3-m7TcrdZlqKQeHzKDWjYdQXJyZ-8wLNwonCzpoBsLWQoRcVuWSBYvt5z8nlZBhnprCM70cZrcHQyuExbHGyrkGEfzOk5LPEyFHZgiYzFunME_vA_Wozal2WvHvOq6-2D6KLRBSfoJ7DYglNwfaEvHPu2gXRXPyhdH-wTbd6cGLBGYgapfahAJPCPeUNzgUNnTxfSlmytM3DTRnEd1NqHILr4avQiNw&h=IYQN3WjqtfKAUnk28iMZhTyXtqgd2jYYgpBCLMITmDQ - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:54:08 GMT - etag: - - '"d0001dd0-0000-0100-0000-65e98e7c0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454020493961766&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=VW697vmGEvNaspEE1-qwxNflE3hxhnoiiGOSiMA2-Pjrkt_-BSPyloMe30RWhb68xkA0QV5lxxAvSnni9TQ-7TmtujYTyzrQCf6P0tC6NSv5pgIM1dna39O7KUdsuXUiYNZozEs-98aQLX2m9MfeeCEe7by2R4A3smf_KRO5NDRvh6SCYhZ0V8_D6EHWOh1Aqw9Ff-_PuOt5zUnIHyLZcupz0PIRSQ8dqu8Un8bC21rYgQ4UWwHpfBns1Z7hMSgOUtxb1W3mU546VqonI6ZxZbWEH5G7kIkC9Jsi_PjHom-aBNtDUucWncur6Bh5fcQE9veyD_TivOkJMBhsjIOwrw&h=g177YeNJ_vNBWN-hw3oiDUWYFhT-wnWzkIy4fv-JeXE - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 3A2E049756B6436796543AAC19E316A5 Ref B: TYO201100114023 Ref C: 2024-03-07T09:54:08Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network delete - Connection: - - keep-alive - ParameterSetName: - - -n --pccp-name --pcdp-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454019804068050&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=MY70kNNNk0RZQmRPGzMxeTKdl06haGoZIqxP7KeU_Wrc8tA34ZMnfIUmcF9UIJNrp2jyO5dDw_Wj16340dvqH-tSsXGBKhFgUIKTiWo5SHVlSI_BOjbYKihQwDxKpb1u7oIkxv77tn8P1-yJnWKqecCecGA8ytvIsgitle_X0PHWMwtLUEul8tI41o8DA-RISQeEhgUxavGPNRxEND4VZU6dmtTJwvxEzUMRNYayCHP73LWP01yhi6_XnrEjHc-jlL7hBlXxN0zpJ1bSIho27HPBiCD7jhbfsEPPvag-GWOwLUZNSSH-a9RTgVok8AHNTBmvvOC_GjmxhBjuP12A-Q&h=lHV_4PQgGh9jdAQNcbAvwsUi_mtX9HdifLekxQj-iCc - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Deleting","startTime":"2024-03-07T09:53:00.0222274Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454020801854530&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=qo2Tn4Zmy1i3rPlAbmia813CUutpca2Lc5EvLTAMRJh_XOfxrib6LBzb_rWXUpmdgu9iITsRPyFdl3IDv4FxQdxGln3nKq9dP3hIBfMJN_9bxDqtUJV8aWqYSV75ahCrH_vqye22ziP-mLa4M-pIEupgnOLSHVAUGafEk86p_zxbcbUj54MQDwnzzUibvmd0NuibSaew0CGatkEKV6HDrH4OVe3_rhZa8EVpopFG6tnstPP5YGWZhS8h3wYTe7lAAClQby5Wghb7JoynJJ2tQuIc1ZBLYkmAYdlhFiKsjQ-d5ySvAB3Z9OVUNmyoC9-nunIy3oT5eHhNq056BRngLg&h=FtHG2wIVOwG3aEy0lR8q_FqPOJ0HTgVFtH6IIGZhN8U - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:54:39 GMT - etag: - - '"d0001dd0-0000-0100-0000-65e98e7c0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454020801854530&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=qo2Tn4Zmy1i3rPlAbmia813CUutpca2Lc5EvLTAMRJh_XOfxrib6LBzb_rWXUpmdgu9iITsRPyFdl3IDv4FxQdxGln3nKq9dP3hIBfMJN_9bxDqtUJV8aWqYSV75ahCrH_vqye22ziP-mLa4M-pIEupgnOLSHVAUGafEk86p_zxbcbUj54MQDwnzzUibvmd0NuibSaew0CGatkEKV6HDrH4OVe3_rhZa8EVpopFG6tnstPP5YGWZhS8h3wYTe7lAAClQby5Wghb7JoynJJ2tQuIc1ZBLYkmAYdlhFiKsjQ-d5ySvAB3Z9OVUNmyoC9-nunIy3oT5eHhNq056BRngLg&h=FtHG2wIVOwG3aEy0lR8q_FqPOJ0HTgVFtH6IIGZhN8U - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: AFF8B76AC120478B8C8B2747AE017E7B Ref B: TYO201100114023 Ref C: 2024-03-07T09:54:39Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network delete - Connection: - - keep-alive - ParameterSetName: - - -n --pccp-name --pcdp-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454019804068050&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=MY70kNNNk0RZQmRPGzMxeTKdl06haGoZIqxP7KeU_Wrc8tA34ZMnfIUmcF9UIJNrp2jyO5dDw_Wj16340dvqH-tSsXGBKhFgUIKTiWo5SHVlSI_BOjbYKihQwDxKpb1u7oIkxv77tn8P1-yJnWKqecCecGA8ytvIsgitle_X0PHWMwtLUEul8tI41o8DA-RISQeEhgUxavGPNRxEND4VZU6dmtTJwvxEzUMRNYayCHP73LWP01yhi6_XnrEjHc-jlL7hBlXxN0zpJ1bSIho27HPBiCD7jhbfsEPPvag-GWOwLUZNSSH-a9RTgVok8AHNTBmvvOC_GjmxhBjuP12A-Q&h=lHV_4PQgGh9jdAQNcbAvwsUi_mtX9HdifLekxQj-iCc - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Succeeded","startTime":"2024-03-07T09:53:00.0222274Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:55:12 GMT - etag: - - '"1c00d5ed-0000-0600-0000-65e98efb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 753C90B6946747338D0EA3E21B281D47 Ref B: TYO201100114023 Ref C: 2024-03-07T09:55:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network attached-data-network delete - Connection: - - keep-alive - ParameterSetName: - - -n --pccp-name --pcdp-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233?api-version=2023-09-01&t=638454019804224337&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=LgJw4G4H3e6p71bcsH2lzOViPoTm2A9xEKsuab7twryBuIuWAUUDWrkolVfh68wlhfMFF2y7JSWbo7Ir93KgHeITdJ2GXMWRfL_uox0THkEVXYIP9iiB7HzPfVV6YYLx0UMCtMGxKpYHgY9l1nCaTVs01bBYsjDbIXC4BqnxxaUP1MDucoEoY5sM3R3FlzNndWS4tMNKf98bkmuo9IKZSSTtHS4lTuk6gYJfWwRi3PI7zbf1mu4kRBuNn0WKsq0fne3oR1UnEAID6hzZzfyV_1IA_DyZllBunGTsCqlsYvibPs3A4J73G8YPBc-JcSGjg7EXqLs7qlMPi2BBCT3eJg&h=8JKdLFgqvw3ziEcH9euSheuJaToCCWDNpT1QNKaY91E - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","name":"2347808d-31d1-4163-b80a-f9f7ea77a1ae*AA83F2D55CEB29BC6925F606D4F19970FE778CB5313431D56DFB390D8A79B233","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp000004/packetCoreDataPlanes/pcdp000005/attachedDataNetworks/dn000006","status":"Succeeded","startTime":"2024-03-07T09:53:00.0222274Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '616' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:55:12 GMT - etag: - - '"1c00d5ed-0000-0600-0000-65e98efb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D3C9F0ECD3B34358AC5F397938ED6A43 Ref B: TYO201100114023 Ref C: 2024-03-07T09:55:13Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_bulk_sim_upload.yaml b/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_bulk_sim_upload.yaml deleted file mode 100644 index 2623be7c5ec..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_bulk_sim_upload.yaml +++ /dev/null @@ -1,1329 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_bulk_sim_upload","date":"2024-03-07T09:38:24Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '414' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:38:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 489AB41144854372A7C1F48E301D9001 Ref B: MAA201060516047 Ref C: 2024-03-07T09:38:30Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "centraluseuap", "properties": {"publicLandMobileNetworkIdentifier": - {"mcc": "001", "mnc": "01"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - Content-Length: - - '111' - Content-Type: - - application/json - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"centraluseuap","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:38:32.0938019Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:38:32.0938019Z"},"properties":{"provisioningState":"Accepted","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"ca3dcd0c-5c48-4a0e-8236-e5375fd54987"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/ca8a1b5f-413c-4bf0-bd7e-ed61b3e660b9*F7FF89DE0D88334E331779D97C1A83C7EDE909F2A7EC938628C7A09678F54CF7?api-version=2023-09-01&t=638454011149375586&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=tlXxi9YjPoaeKvufDn34OuMQsMBDsJ6fWdLZvm5j-qV8mToruDM_CqcrOYCKQVwd3R5k-AjyQr7sNBpb1dZOyk500V-Jhw1K8yKtB_Gh_lhtC0JNSiErnoEsutL-gKFbTI5kI-92Au3PWUY29I5JpIG5uuVCTlMqBSWnsHjY7zfbnlxzKwQkQlE7qpC-W06tLP97nUf6I_GHVkKt7ux_QlylGa3B9d5zVx7HHWKNcat9NCkqeZT8_VySfw-chg9-9LKcQaSIu80veKD9H3e9nbvez2C15rkhFv7pCHotDG6-80ffxnuGoqGIWto2A-OVJj_tkUnJkb30_pBIPzDgXQ&h=MA3aibA_fonuWhKIkAZepvEmq29ivIUAl9CFXT5CnwY - cache-control: - - no-cache - content-length: - - '685' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:38:34 GMT - etag: - - '"04003adb-0000-3400-0000-65e98b1a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 07DD81107B9F486BB590558A2D17954D Ref B: MAA201060516053 Ref C: 2024-03-07T09:38:31Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/ca8a1b5f-413c-4bf0-bd7e-ed61b3e660b9*F7FF89DE0D88334E331779D97C1A83C7EDE909F2A7EC938628C7A09678F54CF7?api-version=2023-09-01&t=638454011149375586&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=tlXxi9YjPoaeKvufDn34OuMQsMBDsJ6fWdLZvm5j-qV8mToruDM_CqcrOYCKQVwd3R5k-AjyQr7sNBpb1dZOyk500V-Jhw1K8yKtB_Gh_lhtC0JNSiErnoEsutL-gKFbTI5kI-92Au3PWUY29I5JpIG5uuVCTlMqBSWnsHjY7zfbnlxzKwQkQlE7qpC-W06tLP97nUf6I_GHVkKt7ux_QlylGa3B9d5zVx7HHWKNcat9NCkqeZT8_VySfw-chg9-9LKcQaSIu80veKD9H3e9nbvez2C15rkhFv7pCHotDG6-80ffxnuGoqGIWto2A-OVJj_tkUnJkb30_pBIPzDgXQ&h=MA3aibA_fonuWhKIkAZepvEmq29ivIUAl9CFXT5CnwY - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/ca8a1b5f-413c-4bf0-bd7e-ed61b3e660b9*F7FF89DE0D88334E331779D97C1A83C7EDE909F2A7EC938628C7A09678F54CF7","name":"ca8a1b5f-413c-4bf0-bd7e-ed61b3e660b9*F7FF89DE0D88334E331779D97C1A83C7EDE909F2A7EC938628C7A09678F54CF7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T09:38:34.184949Z"}' - headers: - cache-control: - - no-cache - content-length: - - '543' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:38:35 GMT - etag: - - '"020050aa-0000-3400-0000-65e98b1a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D4A3A2E21303490097D257B1F14C47D3 Ref B: MAA201060516053 Ref C: 2024-03-07T09:38:35Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/ca8a1b5f-413c-4bf0-bd7e-ed61b3e660b9*F7FF89DE0D88334E331779D97C1A83C7EDE909F2A7EC938628C7A09678F54CF7?api-version=2023-09-01&t=638454011149375586&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=tlXxi9YjPoaeKvufDn34OuMQsMBDsJ6fWdLZvm5j-qV8mToruDM_CqcrOYCKQVwd3R5k-AjyQr7sNBpb1dZOyk500V-Jhw1K8yKtB_Gh_lhtC0JNSiErnoEsutL-gKFbTI5kI-92Au3PWUY29I5JpIG5uuVCTlMqBSWnsHjY7zfbnlxzKwQkQlE7qpC-W06tLP97nUf6I_GHVkKt7ux_QlylGa3B9d5zVx7HHWKNcat9NCkqeZT8_VySfw-chg9-9LKcQaSIu80veKD9H3e9nbvez2C15rkhFv7pCHotDG6-80ffxnuGoqGIWto2A-OVJj_tkUnJkb30_pBIPzDgXQ&h=MA3aibA_fonuWhKIkAZepvEmq29ivIUAl9CFXT5CnwY - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/ca8a1b5f-413c-4bf0-bd7e-ed61b3e660b9*F7FF89DE0D88334E331779D97C1A83C7EDE909F2A7EC938628C7A09678F54CF7","name":"ca8a1b5f-413c-4bf0-bd7e-ed61b3e660b9*F7FF89DE0D88334E331779D97C1A83C7EDE909F2A7EC938628C7A09678F54CF7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Succeeded","startTime":"2024-03-07T09:38:34.184949Z","endTime":"2024-03-07T09:38:45.790755Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '602' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:07 GMT - etag: - - '"020053aa-0000-3400-0000-65e98b250000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 65941344263B4178907DF764D5D6E469 Ref B: MAA201060516053 Ref C: 2024-03-07T09:39:06Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"centraluseuap","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:38:32.0938019Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:38:32.0938019Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"ca3dcd0c-5c48-4a0e-8236-e5375fd54987"}}' - headers: - cache-control: - - no-cache - content-length: - - '686' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:09 GMT - etag: - - '"04003ddb-0000-3400-0000-65e98b250000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: B35D4B298515476D9027E6A14AB4A50C Ref B: MAA201060516053 Ref C: 2024-03-07T09:39:08Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_bulk_sim_upload","date":"2024-03-07T09:38:24Z","module":"mobile-network","Creator":"v-jingszhang@microsoft.com","DateCreated":"2024-03-07T09:38:42Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '490' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: BACB466A8E674F9E8CE273FF19507607 Ref B: MAA201060516019 Ref C: 2024-03-07T09:39:11Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "centraluseuap", "properties": {"mobileNetwork": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - Content-Length: - - '241' - Content-Type: - - application/json - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","name":"simgroup000003","type":"microsoft.mobilenetwork/simgroups","location":"centraluseuap","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:39:13.4058068Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:39:13.4058068Z"},"properties":{"mobileNetwork":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"},"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454011573748804&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WHPmGM-vcPREZ4e2noX-8PHVGjnCK75oO0sbkNVdXvG0Xd1M9pZA4WTUrIqXDiJdQ0BhaBc5WBmksqjUBA2koPeum8T4-l_atACJRrDmBQg5ibCp9IiZgurzbgLyVhvw5sTWO7jyhYETv82YPbPKqmV2wDzdQzUaVIUIfKOVgKGZLSdO_Ol1ZDro6poEiXeOusruubD1Imn0MqLGlzcNZLkP3j2RhBhCTwQMT9v87HlJaqQSkzmlALdsqux8w42LJbFpBJ_ykMIzrJ3rTFhPvxyvbWSfcebDnkUxu3rGC_rd6Njx5mGhQHZEkEpNY9dyNQMqnqnbbub0r0TTwQHBRA&h=FM4iQEKcZV_0V5_QUNZWv2FhwBus0AiUoW7Gf2m1quM - cache-control: - - no-cache - content-length: - - '741' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:17 GMT - etag: - - '"00002c18-0000-3400-0000-65e98b450000"' - expires: - - '-1' - mise-correlation-id: - - 696a05fd-bd26-4cfc-a9e8-5d884db5a1a2 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 65FF05CBBF914778B7A0D79C12C902AE Ref B: MAA201060514037 Ref C: 2024-03-07T09:39:11Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454011573748804&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WHPmGM-vcPREZ4e2noX-8PHVGjnCK75oO0sbkNVdXvG0Xd1M9pZA4WTUrIqXDiJdQ0BhaBc5WBmksqjUBA2koPeum8T4-l_atACJRrDmBQg5ibCp9IiZgurzbgLyVhvw5sTWO7jyhYETv82YPbPKqmV2wDzdQzUaVIUIfKOVgKGZLSdO_Ol1ZDro6poEiXeOusruubD1Imn0MqLGlzcNZLkP3j2RhBhCTwQMT9v87HlJaqQSkzmlALdsqux8w42LJbFpBJ_ykMIzrJ3rTFhPvxyvbWSfcebDnkUxu3rGC_rd6Njx5mGhQHZEkEpNY9dyNQMqnqnbbub0r0TTwQHBRA&h=FM4iQEKcZV_0V5_QUNZWv2FhwBus0AiUoW7Gf2m1quM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T09:39:16.6713729Z"}' - headers: - cache-control: - - no-cache - content-length: - - '532' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:18 GMT - etag: - - '"02005caa-0000-3400-0000-65e98b440000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: CD88DD4764234BD78D6786593A6CCD8A Ref B: MAA201060514037 Ref C: 2024-03-07T09:39:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454011573748804&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WHPmGM-vcPREZ4e2noX-8PHVGjnCK75oO0sbkNVdXvG0Xd1M9pZA4WTUrIqXDiJdQ0BhaBc5WBmksqjUBA2koPeum8T4-l_atACJRrDmBQg5ibCp9IiZgurzbgLyVhvw5sTWO7jyhYETv82YPbPKqmV2wDzdQzUaVIUIfKOVgKGZLSdO_Ol1ZDro6poEiXeOusruubD1Imn0MqLGlzcNZLkP3j2RhBhCTwQMT9v87HlJaqQSkzmlALdsqux8w42LJbFpBJ_ykMIzrJ3rTFhPvxyvbWSfcebDnkUxu3rGC_rd6Njx5mGhQHZEkEpNY9dyNQMqnqnbbub0r0TTwQHBRA&h=FM4iQEKcZV_0V5_QUNZWv2FhwBus0AiUoW7Gf2m1quM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T09:39:16.6713729Z"}' - headers: - cache-control: - - no-cache - content-length: - - '532' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:39:50 GMT - etag: - - '"02005caa-0000-3400-0000-65e98b440000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: E6127578196E49228AEA21B3D905BA2F Ref B: MAA201060514037 Ref C: 2024-03-07T09:39:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454011573748804&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WHPmGM-vcPREZ4e2noX-8PHVGjnCK75oO0sbkNVdXvG0Xd1M9pZA4WTUrIqXDiJdQ0BhaBc5WBmksqjUBA2koPeum8T4-l_atACJRrDmBQg5ibCp9IiZgurzbgLyVhvw5sTWO7jyhYETv82YPbPKqmV2wDzdQzUaVIUIfKOVgKGZLSdO_Ol1ZDro6poEiXeOusruubD1Imn0MqLGlzcNZLkP3j2RhBhCTwQMT9v87HlJaqQSkzmlALdsqux8w42LJbFpBJ_ykMIzrJ3rTFhPvxyvbWSfcebDnkUxu3rGC_rd6Njx5mGhQHZEkEpNY9dyNQMqnqnbbub0r0TTwQHBRA&h=FM4iQEKcZV_0V5_QUNZWv2FhwBus0AiUoW7Gf2m1quM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T09:39:16.6713729Z"}' - headers: - cache-control: - - no-cache - content-length: - - '532' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:40:20 GMT - etag: - - '"02005caa-0000-3400-0000-65e98b440000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 8BF654488CA243739AD539ADE75E120E Ref B: MAA201060514037 Ref C: 2024-03-07T09:40:20Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454011573748804&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=WHPmGM-vcPREZ4e2noX-8PHVGjnCK75oO0sbkNVdXvG0Xd1M9pZA4WTUrIqXDiJdQ0BhaBc5WBmksqjUBA2koPeum8T4-l_atACJRrDmBQg5ibCp9IiZgurzbgLyVhvw5sTWO7jyhYETv82YPbPKqmV2wDzdQzUaVIUIfKOVgKGZLSdO_Ol1ZDro6poEiXeOusruubD1Imn0MqLGlzcNZLkP3j2RhBhCTwQMT9v87HlJaqQSkzmlALdsqux8w42LJbFpBJ_ykMIzrJ3rTFhPvxyvbWSfcebDnkUxu3rGC_rd6Njx5mGhQHZEkEpNY9dyNQMqnqnbbub0r0TTwQHBRA&h=FM4iQEKcZV_0V5_QUNZWv2FhwBus0AiUoW7Gf2m1quM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"9c6695c9-e4fe-4f06-9bee-8527d3ccabac*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T09:39:16.6713729Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '551' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:40:51 GMT - etag: - - '"02006daa-0000-3400-0000-65e98b8a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 06993D8513A140B3A744F09A1585B71D Ref B: MAA201060514037 Ref C: 2024-03-07T09:40:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","name":"simgroup000003","type":"microsoft.mobilenetwork/simgroups","location":"centraluseuap","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T09:39:13.4058068Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T09:39:13.4058068Z"},"properties":{"provisioningState":"Succeeded","mobileNetwork":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"}}}' - headers: - cache-control: - - no-cache - content-length: - - '742' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:40:52 GMT - etag: - - '"00002f18-0000-3400-0000-65e98b760000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F6DD4D58C8ED47759321BE0AFD881E65 Ref B: MAA201060514037 Ref C: 2024-03-07T09:40:51Z' - status: - code: 200 - message: OK -- request: - body: '{"sims": [{"name": "bulk-upload-sim-01", "properties": {"authenticationKey": - "00000000000000000000000000000000", "internationalMobileSubscriberIdentity": - "0000000000", "operatorKeyCode": "00000000000000000000000000000000"}}, {"name": - "bulk-upload-sim-02", "properties": {"authenticationKey": "00000000000000000000000000000001", - "internationalMobileSubscriberIdentity": "0000000001", "operatorKeyCode": "00000000000000000000000000000001"}}]}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group bulk-upload-sims - Connection: - - keep-alive - Content-Length: - - '440' - Content-Type: - - application/json - ParameterSetName: - - -g --sim-group-name --sims - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/uploadSims?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012578978243&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=tBzbOJRBJqbv-vSudmiyUB0GAyI6GRAhhARon6X7eB7ElqHHzuyCO8pBHD4YRUv_Krz05RwjUeNU3SsY14QVjXmOtn2-2Sq-wSlD0Wj4J4exo763Ke82VcTZ3bAyyOyn0VqrfXE0B0cNyNXP6oxo2wOCTNcS5W5IfyzgIzDctNxB97yXfXqad_gKqbGqOe2ti0iq_0hrigvVCLeKowWT--F-G0FP-lvFb4Y3ae0EibTdMuLO5L9SU6G2zT5cvaUtRiL9Y3DXMEa9GRIUq6krg4DaoWaGgnfSWv45y8pP1r3t6RNmQHs3lHQmDnOSpX1ebac2aT9hWSachyJ27DOmdw&h=2TeZXrvrNC5751_2DxcVpcrtKXxbGnY3imQ8N7K4FsY - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:40:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012578978243&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=tBzbOJRBJqbv-vSudmiyUB0GAyI6GRAhhARon6X7eB7ElqHHzuyCO8pBHD4YRUv_Krz05RwjUeNU3SsY14QVjXmOtn2-2Sq-wSlD0Wj4J4exo763Ke82VcTZ3bAyyOyn0VqrfXE0B0cNyNXP6oxo2wOCTNcS5W5IfyzgIzDctNxB97yXfXqad_gKqbGqOe2ti0iq_0hrigvVCLeKowWT--F-G0FP-lvFb4Y3ae0EibTdMuLO5L9SU6G2zT5cvaUtRiL9Y3DXMEa9GRIUq6krg4DaoWaGgnfSWv45y8pP1r3t6RNmQHs3lHQmDnOSpX1ebac2aT9hWSachyJ27DOmdw&h=2TeZXrvrNC5751_2DxcVpcrtKXxbGnY3imQ8N7K4FsY - mise-correlation-id: - - bc5330bf-40d2-478b-925b-d01edadb1ae3 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: E4731FBA68114F06B11E9A5BCD34DF98 Ref B: MAA201060515025 Ref C: 2024-03-07T09:40:54Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group bulk-upload-sims - Connection: - - keep-alive - ParameterSetName: - - -g --sim-group-name --sims - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012578978243&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=tBzbOJRBJqbv-vSudmiyUB0GAyI6GRAhhARon6X7eB7ElqHHzuyCO8pBHD4YRUv_Krz05RwjUeNU3SsY14QVjXmOtn2-2Sq-wSlD0Wj4J4exo763Ke82VcTZ3bAyyOyn0VqrfXE0B0cNyNXP6oxo2wOCTNcS5W5IfyzgIzDctNxB97yXfXqad_gKqbGqOe2ti0iq_0hrigvVCLeKowWT--F-G0FP-lvFb4Y3ae0EibTdMuLO5L9SU6G2zT5cvaUtRiL9Y3DXMEa9GRIUq6krg4DaoWaGgnfSWv45y8pP1r3t6RNmQHs3lHQmDnOSpX1ebac2aT9hWSachyJ27DOmdw&h=2TeZXrvrNC5751_2DxcVpcrtKXxbGnY3imQ8N7K4FsY - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T09:40:55.5809958Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/centraluseuap/operationStatuses/2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012583511687&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=cpdFmak-B8no8PqNPutEH8AcWDu7E3EOw2w7VF-ZR_JRTsbHhl-7YTx26OZvD0s8YTtKH8SHTwourh3WmbRKjw7HvBI9irn4E4zbUsYjA4F2YPApGerFPe1XEujvApDWFHGBhZwUmZYV5gT5lHyKa98HtNXZWnoZIit5MhlnEmd6-ET-CEywuht1TNggdPDLdJv9_FYBDmcO9Ontwijov9MttPqgs_-tLIzFt7x8xZoFcw0h_glingle9mIZC_JJCehFtT5_n9SP48bQsjjgbounMgTuqH3HtR9yJU93dPKEDGTRtk_GdGasjpGedob591ZGOTc7y4KkKt6tKYDI4A&h=P22UC-pJYSiQLFobwDQjr1CpD_UqEYsioLI4IrJKscE - cache-control: - - no-cache - content-length: - - '532' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:40:58 GMT - etag: - - '"020076aa-0000-3400-0000-65e98ba70000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/centraluseuap/operationStatuses/2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012583511687&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=cpdFmak-B8no8PqNPutEH8AcWDu7E3EOw2w7VF-ZR_JRTsbHhl-7YTx26OZvD0s8YTtKH8SHTwourh3WmbRKjw7HvBI9irn4E4zbUsYjA4F2YPApGerFPe1XEujvApDWFHGBhZwUmZYV5gT5lHyKa98HtNXZWnoZIit5MhlnEmd6-ET-CEywuht1TNggdPDLdJv9_FYBDmcO9Ontwijov9MttPqgs_-tLIzFt7x8xZoFcw0h_glingle9mIZC_JJCehFtT5_n9SP48bQsjjgbounMgTuqH3HtR9yJU93dPKEDGTRtk_GdGasjpGedob591ZGOTc7y4KkKt6tKYDI4A&h=P22UC-pJYSiQLFobwDQjr1CpD_UqEYsioLI4IrJKscE - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 6547E531402444CC8EBC5B1AB7421680 Ref B: MAA201060515025 Ref C: 2024-03-07T09:40:58Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group bulk-upload-sims - Connection: - - keep-alive - ParameterSetName: - - -g --sim-group-name --sims - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012578978243&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=tBzbOJRBJqbv-vSudmiyUB0GAyI6GRAhhARon6X7eB7ElqHHzuyCO8pBHD4YRUv_Krz05RwjUeNU3SsY14QVjXmOtn2-2Sq-wSlD0Wj4J4exo763Ke82VcTZ3bAyyOyn0VqrfXE0B0cNyNXP6oxo2wOCTNcS5W5IfyzgIzDctNxB97yXfXqad_gKqbGqOe2ti0iq_0hrigvVCLeKowWT--F-G0FP-lvFb4Y3ae0EibTdMuLO5L9SU6G2zT5cvaUtRiL9Y3DXMEa9GRIUq6krg4DaoWaGgnfSWv45y8pP1r3t6RNmQHs3lHQmDnOSpX1ebac2aT9hWSachyJ27DOmdw&h=2TeZXrvrNC5751_2DxcVpcrtKXxbGnY3imQ8N7K4FsY - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T09:40:55.5809958Z","endTime":"2024-03-07T09:41:02.3454092Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '592' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:41:29 GMT - etag: - - '"02007baa-0000-3400-0000-65e98bae0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: DC4AABA82B1042BAA1966E8E074EBEB7 Ref B: MAA201060515025 Ref C: 2024-03-07T09:41:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group bulk-upload-sims - Connection: - - keep-alive - ParameterSetName: - - -g --sim-group-name --sims - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012578978243&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=tBzbOJRBJqbv-vSudmiyUB0GAyI6GRAhhARon6X7eB7ElqHHzuyCO8pBHD4YRUv_Krz05RwjUeNU3SsY14QVjXmOtn2-2Sq-wSlD0Wj4J4exo763Ke82VcTZ3bAyyOyn0VqrfXE0B0cNyNXP6oxo2wOCTNcS5W5IfyzgIzDctNxB97yXfXqad_gKqbGqOe2ti0iq_0hrigvVCLeKowWT--F-G0FP-lvFb4Y3ae0EibTdMuLO5L9SU6G2zT5cvaUtRiL9Y3DXMEa9GRIUq6krg4DaoWaGgnfSWv45y8pP1r3t6RNmQHs3lHQmDnOSpX1ebac2aT9hWSachyJ27DOmdw&h=2TeZXrvrNC5751_2DxcVpcrtKXxbGnY3imQ8N7K4FsY - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"2a01ae5c-72c0-49bb-9bce-fcbc101d9404*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T09:40:55.5809958Z","endTime":"2024-03-07T09:41:02.3454092Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '592' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:41:29 GMT - etag: - - '"02007baa-0000-3400-0000-65e98bae0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: A59AF590077C4B2F9056459DC7EA1A27 Ref B: MAA201060515025 Ref C: 2024-03-07T09:41:29Z' - status: - code: 200 - message: OK -- request: - body: '{"sims": ["bulk-upload-sim-01", "bulk-upload-sim-02"]}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group bulk-delete-sims - Connection: - - keep-alive - Content-Length: - - '54' - Content-Type: - - application/json - ParameterSetName: - - -g --sim-group-name --sims - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/deleteSims?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012930733642&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=ZVGkHrNf4HBHO8bPpykcJjiYfvzxMbRLZA2crvV-zOLEyl0enfbaj-_fVMtd5WUU8pOiLQQh1-7MPaMA6Nld2wG93KZbWqSkUVPCZGwU4smDGmoSd7JuSBoFqy-UXzRf8-gCt3lvXxKzI91ATt-mzcRwB4J1yx1GA15eusJ1FYtC0qC0l_-nqfFo5Fjs6k4X7Ka7_Ol-VPPjzC7X-T-pTkfY1TxKiRtoC2AFrvDU50pys8AFfqXXdUSozq0itFKFuil7dPLwkUDRJTKO5WRMIPeGpY5V5ZeSrSBo6l8RqGC-NBF4ZHBJv1r5w9dv1Aum57sv77dEx2cNXFk8j9AQ3g&h=OVxpqlITzFZW5VxgIUEzcbD6lbpcZzDn63inPOhQQoE - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:41:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012930889816&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=dxlty1mIdP8AlAe-0ggvYbQwftorJ2MDW-hl6K4kZ3r2ZPmsO0hC5nJxmPsC3exGOfN-VfYhJLPf7rJCAa313gnGWug8DHB0YcdlBg7KnMhArwdraXasGlNMBIwvvoi_E0PCc7RKcXuKFVBwDgq811DoTxVMjGPdtJC-caEHzpZyuiiGX4CTGxPKH05jlPSfjwjIXTedhCOqMWqHTAGUFFbzzUWCYVFsLspF9Vl_DubC8dXsbrApxwL2bX8XSxFClphJdgKRE9jfpYMXsVfCTiE8IBltaGDVBPTpMdy1QPiHzsLhPIwwtdndYcJv4rw7OQWfrf4hdxDs5A0Lg2nYFA&h=fiKS_OPs-_bcaluHNX8Kjl2ZDEddx6MDFPWh30bMDbk - mise-correlation-id: - - e380d79b-3d7a-402f-b3aa-8b28a1d081a9 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: EEE8D73602194BDC95F52D5F7D7BB6A6 Ref B: MAA201060516047 Ref C: 2024-03-07T09:41:31Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group bulk-delete-sims - Connection: - - keep-alive - ParameterSetName: - - -g --sim-group-name --sims - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012930733642&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=ZVGkHrNf4HBHO8bPpykcJjiYfvzxMbRLZA2crvV-zOLEyl0enfbaj-_fVMtd5WUU8pOiLQQh1-7MPaMA6Nld2wG93KZbWqSkUVPCZGwU4smDGmoSd7JuSBoFqy-UXzRf8-gCt3lvXxKzI91ATt-mzcRwB4J1yx1GA15eusJ1FYtC0qC0l_-nqfFo5Fjs6k4X7Ka7_Ol-VPPjzC7X-T-pTkfY1TxKiRtoC2AFrvDU50pys8AFfqXXdUSozq0itFKFuil7dPLwkUDRJTKO5WRMIPeGpY5V5ZeSrSBo6l8RqGC-NBF4ZHBJv1r5w9dv1Aum57sv77dEx2cNXFk8j9AQ3g&h=OVxpqlITzFZW5VxgIUEzcbD6lbpcZzDn63inPOhQQoE - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T09:41:32.7835695Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/centraluseuap/operationStatuses/b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012951268578&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=uPfM_XpiFK-ToMcR6iocgOSX99t2-4lJ2QE4eLqANApXoB8-4AiNiNIQtXEoOfpSivoVtKGskFsMHIGFP3vlv1yDGGuKjB73DdPjYO1DLqlHNUVAxr0vQa9zaZ5ZzX7W0yQh_kCSd-LA56bpSUeU9waH0LZ2TEi90D4qobEtUB985mB5dCHtXEgD5SFifMSQYSLRsQokv1ocCEeqpWBn7YKY7lbw4adN7NzTYOto2_oThnc1evHyA7Cad5c2rIOYaZfWc6_MmeW1tcA7D-2664bpvUrg_0uSeXU8PIdd7Sqb-CEs7J2wY3W2kPyIWF_El-HkTTRULkhEbIPdnSsvTQ&h=YsHjlVUS1T2ciKy9aVFfkf4qkBwE_2MbYsqwWYMpI2U - cache-control: - - no-cache - content-length: - - '532' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:41:34 GMT - etag: - - '"020085aa-0000-3400-0000-65e98bcc0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/centraluseuap/operationStatuses/b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012951268578&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=uPfM_XpiFK-ToMcR6iocgOSX99t2-4lJ2QE4eLqANApXoB8-4AiNiNIQtXEoOfpSivoVtKGskFsMHIGFP3vlv1yDGGuKjB73DdPjYO1DLqlHNUVAxr0vQa9zaZ5ZzX7W0yQh_kCSd-LA56bpSUeU9waH0LZ2TEi90D4qobEtUB985mB5dCHtXEgD5SFifMSQYSLRsQokv1ocCEeqpWBn7YKY7lbw4adN7NzTYOto2_oThnc1evHyA7Cad5c2rIOYaZfWc6_MmeW1tcA7D-2664bpvUrg_0uSeXU8PIdd7Sqb-CEs7J2wY3W2kPyIWF_El-HkTTRULkhEbIPdnSsvTQ&h=YsHjlVUS1T2ciKy9aVFfkf4qkBwE_2MbYsqwWYMpI2U - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 78820AAE774840DE9D62B0F9F5F68E13 Ref B: MAA201060516047 Ref C: 2024-03-07T09:41:33Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group bulk-delete-sims - Connection: - - keep-alive - ParameterSetName: - - -g --sim-group-name --sims - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012930733642&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=ZVGkHrNf4HBHO8bPpykcJjiYfvzxMbRLZA2crvV-zOLEyl0enfbaj-_fVMtd5WUU8pOiLQQh1-7MPaMA6Nld2wG93KZbWqSkUVPCZGwU4smDGmoSd7JuSBoFqy-UXzRf8-gCt3lvXxKzI91ATt-mzcRwB4J1yx1GA15eusJ1FYtC0qC0l_-nqfFo5Fjs6k4X7Ka7_Ol-VPPjzC7X-T-pTkfY1TxKiRtoC2AFrvDU50pys8AFfqXXdUSozq0itFKFuil7dPLwkUDRJTKO5WRMIPeGpY5V5ZeSrSBo6l8RqGC-NBF4ZHBJv1r5w9dv1Aum57sv77dEx2cNXFk8j9AQ3g&h=OVxpqlITzFZW5VxgIUEzcbD6lbpcZzDn63inPOhQQoE - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T09:41:32.7835695Z","endTime":"2024-03-07T09:41:35.8446449Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '592' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:05 GMT - etag: - - '"020086aa-0000-3400-0000-65e98bcf0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: B4F2EE59663F43CABA8BB7CD7B5BDB2A Ref B: MAA201060516047 Ref C: 2024-03-07T09:42:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group bulk-delete-sims - Connection: - - keep-alive - ParameterSetName: - - -g --sim-group-name --sims - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454012930889816&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=dxlty1mIdP8AlAe-0ggvYbQwftorJ2MDW-hl6K4kZ3r2ZPmsO0hC5nJxmPsC3exGOfN-VfYhJLPf7rJCAa313gnGWug8DHB0YcdlBg7KnMhArwdraXasGlNMBIwvvoi_E0PCc7RKcXuKFVBwDgq811DoTxVMjGPdtJC-caEHzpZyuiiGX4CTGxPKH05jlPSfjwjIXTedhCOqMWqHTAGUFFbzzUWCYVFsLspF9Vl_DubC8dXsbrApxwL2bX8XSxFClphJdgKRE9jfpYMXsVfCTiE8IBltaGDVBPTpMdy1QPiHzsLhPIwwtdndYcJv4rw7OQWfrf4hdxDs5A0Lg2nYFA&h=fiKS_OPs-_bcaluHNX8Kjl2ZDEddx6MDFPWh30bMDbk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"b8e7d13e-6fd3-437b-9752-77f2659f3067*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T09:41:32.7835695Z","endTime":"2024-03-07T09:41:35.8446449Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '592' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:06 GMT - etag: - - '"020086aa-0000-3400-0000-65e98bcf0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: E12EF689E3F946CEA90F73FF198BFA1A Ref B: MAA201060516047 Ref C: 2024-03-07T09:42:06Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013306513474&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=u90us723z5qHbIiN0XJlKbEeR-B_TZ6xvQeEfQ3rLAVRcP8ccle5bMllhjv8W7hCy9RgZ-TZVQMJnyHPPS_XeH0KPetmz0_vGHJt2jlSLXg6CsErQa4SAz_Fqo4oXiNpgZsOtNUhqSimas1A1F-BSAN1Llm5RuHRgNyAtKZ3sN6aFOrima72GBtggaSwbwxjhJhnhxcVB0XK07rVfsV8-yajWSA7hVLwsqY_7r1mxccR_b3Rf_ZZxhS3CbBx20W_Aq1JrrznbWRBaRV7l431V7I5f4RPFkVyCN1zLnOQ3otIUVZz7PEtFcbntznEpKQ058zEe7Y99DHMVrwKMVxCoQ&h=Dzs02md3NrxXs6rVti-nQyIhb83SKRSJhUdzIF93SCk - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:10 GMT - etag: - - '"00003018-0000-3400-0000-65e98bf20000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013306669718&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=dd60raEW943ukxG1PDsqa_ALZMPdoL4dHQiY7M4G9rM3-zrwEo9BiILRRifN4tc1kWlXUwBbyimYhMWdVQw1EJhtNf1rVkdx_n8EJfm822FzOtwrzZGGeZgjXFezanAuILa46YdPr46F401bddqhpsG-KZpGwUlGUV6j1SYSXoWH1uZiPLwdLIgoepYAM2Avs7qRCwxfIbywjr6wyCG8nPId01DuKMoP-SdyTYqCBzrFi_ZQV2dn59JKA7n-3OZA6sDjYLvbS3Du7wuWVUeMSh9QslRGXqvkLxeITubcyOuRwdmSFMgDKRtUx-nJwOrSgBHNeWnDNTRUDXzaf2Uwew&h=rzN_LggPQdEP3js4FLiaL-K6TAsjbWmTOPw1TbfWqDs - mise-correlation-id: - - 25376a6c-24f0-4128-b373-30295a5dda6c - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: EE282DAAA77E4CEE898096FA7C2F6FD4 Ref B: MAA201060516053 Ref C: 2024-03-07T09:42:08Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013306513474&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=u90us723z5qHbIiN0XJlKbEeR-B_TZ6xvQeEfQ3rLAVRcP8ccle5bMllhjv8W7hCy9RgZ-TZVQMJnyHPPS_XeH0KPetmz0_vGHJt2jlSLXg6CsErQa4SAz_Fqo4oXiNpgZsOtNUhqSimas1A1F-BSAN1Llm5RuHRgNyAtKZ3sN6aFOrima72GBtggaSwbwxjhJhnhxcVB0XK07rVfsV8-yajWSA7hVLwsqY_7r1mxccR_b3Rf_ZZxhS3CbBx20W_Aq1JrrznbWRBaRV7l431V7I5f4RPFkVyCN1zLnOQ3otIUVZz7PEtFcbntznEpKQ058zEe7Y99DHMVrwKMVxCoQ&h=Dzs02md3NrxXs6rVti-nQyIhb83SKRSJhUdzIF93SCk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Deleting","startTime":"2024-03-07T09:42:10.4544908Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/centraluseuap/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013318789448&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=HghM9QMCxgqUx3axN2U6XPbDpCKP6JfKqtnCn79RpW2gQSp7roa5OKXXUCnac9Uutlv31ANjyi3p7W1TDytrxCjVGyUAFdu0KRMN8JEBwAmAONzrjREIWoU7B4tWFR8GER96XrI1ke3vlHdqxGEJJRtrfcQ6Hh_MRB3GOz0qm6uo3R5ZceaWcMDjeraYPIFNZONSiAAUsN8jeuCZK0sd3O8b15mPsdj6ww4wKqcGcbq1Xo6gx-yhV2cYKiLsQd0nKqNdgh9aVbf5y6FUmwN5f02TZMIVI3r_VLnRbDaMSQtz3_tKReqsqjXavXxI1EsA9sX7KztKniwUua2LM-K0uw&h=X9BfosMC6I-gVxXsvyqaoGeXTbASmCsR-Ilk4dKVeqc - cache-control: - - no-cache - content-length: - - '532' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:11 GMT - etag: - - '"02008daa-0000-3400-0000-65e98bf20000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/centraluseuap/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013318789448&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=HghM9QMCxgqUx3axN2U6XPbDpCKP6JfKqtnCn79RpW2gQSp7roa5OKXXUCnac9Uutlv31ANjyi3p7W1TDytrxCjVGyUAFdu0KRMN8JEBwAmAONzrjREIWoU7B4tWFR8GER96XrI1ke3vlHdqxGEJJRtrfcQ6Hh_MRB3GOz0qm6uo3R5ZceaWcMDjeraYPIFNZONSiAAUsN8jeuCZK0sd3O8b15mPsdj6ww4wKqcGcbq1Xo6gx-yhV2cYKiLsQd0nKqNdgh9aVbf5y6FUmwN5f02TZMIVI3r_VLnRbDaMSQtz3_tKReqsqjXavXxI1EsA9sX7KztKniwUua2LM-K0uw&h=X9BfosMC6I-gVxXsvyqaoGeXTbASmCsR-Ilk4dKVeqc - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 47C4554270CD47039C07614BAAB5713D Ref B: MAA201060516053 Ref C: 2024-03-07T09:42:10Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013306513474&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=u90us723z5qHbIiN0XJlKbEeR-B_TZ6xvQeEfQ3rLAVRcP8ccle5bMllhjv8W7hCy9RgZ-TZVQMJnyHPPS_XeH0KPetmz0_vGHJt2jlSLXg6CsErQa4SAz_Fqo4oXiNpgZsOtNUhqSimas1A1F-BSAN1Llm5RuHRgNyAtKZ3sN6aFOrima72GBtggaSwbwxjhJhnhxcVB0XK07rVfsV8-yajWSA7hVLwsqY_7r1mxccR_b3Rf_ZZxhS3CbBx20W_Aq1JrrznbWRBaRV7l431V7I5f4RPFkVyCN1zLnOQ3otIUVZz7PEtFcbntznEpKQ058zEe7Y99DHMVrwKMVxCoQ&h=Dzs02md3NrxXs6rVti-nQyIhb83SKRSJhUdzIF93SCk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Deleting","startTime":"2024-03-07T09:42:10.4544908Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/centraluseuap/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013630003867&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=c7EZZY70la3K4sGkd0UBcSX7_ZLXxnDr4scLPoXUgzKX8RsQboYWqjTFimj-0hwo3um2sldZeObi2kqtbxo3Rt-fzzR9PUmLxLJWlfNM0J133ismxc-ENuZwpBT8N-u3-nM9yBtnoSf5FGkEwAwUyfI1pzKqqY1U6VxB7wragGckNyCka4Kn88KpE_1Dkz6yCnLPS6nnQFczwHRhO2BKrk0bMZJRaP_1G1EFrDWN2h7Si-ivmxGgdLHx5QvT5mx5ADNBmuytCy_AOB1paakdqFBGrYSLDvddQg5wI2elrcXtbKPcgysvDsol4YPjf_n74Y3Q6Rtq0RqQpc0fH0y_0g&h=V6TAK0b1CLA7T-0A2f_9pAGwVVwPNa6Qyv1E5XAQhGw - cache-control: - - no-cache - content-length: - - '532' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:42:42 GMT - etag: - - '"02008daa-0000-3400-0000-65e98bf20000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/centraluseuap/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013630003867&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=c7EZZY70la3K4sGkd0UBcSX7_ZLXxnDr4scLPoXUgzKX8RsQboYWqjTFimj-0hwo3um2sldZeObi2kqtbxo3Rt-fzzR9PUmLxLJWlfNM0J133ismxc-ENuZwpBT8N-u3-nM9yBtnoSf5FGkEwAwUyfI1pzKqqY1U6VxB7wragGckNyCka4Kn88KpE_1Dkz6yCnLPS6nnQFczwHRhO2BKrk0bMZJRaP_1G1EFrDWN2h7Si-ivmxGgdLHx5QvT5mx5ADNBmuytCy_AOB1paakdqFBGrYSLDvddQg5wI2elrcXtbKPcgysvDsol4YPjf_n74Y3Q6Rtq0RqQpc0fH0y_0g&h=V6TAK0b1CLA7T-0A2f_9pAGwVVwPNa6Qyv1E5XAQhGw - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 6293286221B842F4972D1804A233D983 Ref B: MAA201060516053 Ref C: 2024-03-07T09:42:42Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013306513474&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=u90us723z5qHbIiN0XJlKbEeR-B_TZ6xvQeEfQ3rLAVRcP8ccle5bMllhjv8W7hCy9RgZ-TZVQMJnyHPPS_XeH0KPetmz0_vGHJt2jlSLXg6CsErQa4SAz_Fqo4oXiNpgZsOtNUhqSimas1A1F-BSAN1Llm5RuHRgNyAtKZ3sN6aFOrima72GBtggaSwbwxjhJhnhxcVB0XK07rVfsV8-yajWSA7hVLwsqY_7r1mxccR_b3Rf_ZZxhS3CbBx20W_Aq1JrrznbWRBaRV7l431V7I5f4RPFkVyCN1zLnOQ3otIUVZz7PEtFcbntznEpKQ058zEe7Y99DHMVrwKMVxCoQ&h=Dzs02md3NrxXs6rVti-nQyIhb83SKRSJhUdzIF93SCk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Deleting","startTime":"2024-03-07T09:42:10.4544908Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/centraluseuap/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013939731642&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=kneLBg6qDPp5toRYrvbs9iy2u_wziutoYnd98yv_oDAIhqMHJnMxKO6WdELyLu4AgWsKB4ZsUB2HskgyQFk_d3hoZBSACRfy8crnMvNwSp94tf1ay94PlP4LneF2UaHBkplJ_1djnPBJjDSG_WltdkS0R0AOIh__x8f0Gs3W7RExIqe2dx-PTIxNTFXZ8QyyQgBRj8Zlxvn8qZCs0uPtyGIpr0i0-iSbfgB76H-aShG6NKR4W7CoRSog6FUCkvcHukIfK0W8CG2RIfz8oRQuoTQIlZloLud18tBZIqo6Tpbvdmj2BzWa6GtBfEau0XJKDFTbwbhsgNLAnJ-muPueNw&h=IDYEBNECivvIwhe2Mb4VdNlEVAcB2ey6aYcChnWrFZA - cache-control: - - no-cache - content-length: - - '532' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:43:13 GMT - etag: - - '"02008daa-0000-3400-0000-65e98bf20000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/centraluseuap/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013939731642&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=kneLBg6qDPp5toRYrvbs9iy2u_wziutoYnd98yv_oDAIhqMHJnMxKO6WdELyLu4AgWsKB4ZsUB2HskgyQFk_d3hoZBSACRfy8crnMvNwSp94tf1ay94PlP4LneF2UaHBkplJ_1djnPBJjDSG_WltdkS0R0AOIh__x8f0Gs3W7RExIqe2dx-PTIxNTFXZ8QyyQgBRj8Zlxvn8qZCs0uPtyGIpr0i0-iSbfgB76H-aShG6NKR4W7CoRSog6FUCkvcHukIfK0W8CG2RIfz8oRQuoTQIlZloLud18tBZIqo6Tpbvdmj2BzWa6GtBfEau0XJKDFTbwbhsgNLAnJ-muPueNw&h=IDYEBNECivvIwhe2Mb4VdNlEVAcB2ey6aYcChnWrFZA - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: A13C466F0A5D4E5EA45088663E64BB4F Ref B: MAA201060516053 Ref C: 2024-03-07T09:43:13Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013306513474&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=u90us723z5qHbIiN0XJlKbEeR-B_TZ6xvQeEfQ3rLAVRcP8ccle5bMllhjv8W7hCy9RgZ-TZVQMJnyHPPS_XeH0KPetmz0_vGHJt2jlSLXg6CsErQa4SAz_Fqo4oXiNpgZsOtNUhqSimas1A1F-BSAN1Llm5RuHRgNyAtKZ3sN6aFOrima72GBtggaSwbwxjhJhnhxcVB0XK07rVfsV8-yajWSA7hVLwsqY_7r1mxccR_b3Rf_ZZxhS3CbBx20W_Aq1JrrznbWRBaRV7l431V7I5f4RPFkVyCN1zLnOQ3otIUVZz7PEtFcbntznEpKQ058zEe7Y99DHMVrwKMVxCoQ&h=Dzs02md3NrxXs6rVti-nQyIhb83SKRSJhUdzIF93SCk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T09:42:10.4544908Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '551' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:43:46 GMT - etag: - - '"0200dbaa-0000-3400-0000-65e98c340000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: CDB9505C91774E7DA953FE8207E4C74F Ref B: MAA201060516053 Ref C: 2024-03-07T09:43:45Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542?api-version=2023-09-01&t=638454013306669718&c=MIIHADCCBeigAwIBAgITHgPr-Oynpc11nukqPwAAA-v47DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAxMTUzMzMzWhcNMjUwMTI2MTUzMzMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL0fVpJv9HfZ9lDyFsKVf2PJgsZDMFA6khnm_67kUV0KDb8vTd3bmnw1UYl75g2Cp9GDvvaCqKVn-aux3TWe11D61vAtFcTPbNvezESM6bHR-RV1e4LhXUIl6PZRcIE65rk0bYF8P1O_zZ4mpWHx99Mc9gSe6E2sqh_sWRIuE4mSXNxVzzmndknLOkcDnqNl9Kt1VpXt5orBSwAV74sCBJuvzSE7MEW2kHUJtqzGWoXvf5pm-rYfwqhQa3HLjUMj7xbwzsBDtEn2ZYJLlqJqIps5iVHixHPn8k6opx-9FVP2u009BccFRDwiVl1b6xWXhwzq58hYtdYc3SoMCcWMtf0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBR1fq2N8kAQnlwHFZuqRYZ3nIu5LjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABwCQ0hRgTzuMiiq8PUrVdDBN8_c3HcEZsxdazvy4RNcw_7WjYA3QdRzVtaOAEfPq6GrfCF7n8qlpXjMSOq5Oc-mL6EwulQAybtx4RxY0zI5tDTHfITDo2FVSa6thj9WVlgOF2UxNbopXBAYpN-fbgUTanBsphWY2F_Kz_VKFv-4UXHwyNiDa3wpaQrmQ2urunWos3lEhx0aRKdNTZwjJtK78rfIazNccJHT1LHpWU7i8XEBYP_RzftkGhoEhofdnth4t99G4Clw9RBOC8Km1SZ7zJTtaYcCU-NXSzWQgWTQeGMwo5CnvADN5uPXz3aUMxAukDY-ed4wPldjzzJFmzk&s=dd60raEW943ukxG1PDsqa_ALZMPdoL4dHQiY7M4G9rM3-zrwEo9BiILRRifN4tc1kWlXUwBbyimYhMWdVQw1EJhtNf1rVkdx_n8EJfm822FzOtwrzZGGeZgjXFezanAuILa46YdPr46F401bddqhpsG-KZpGwUlGUV6j1SYSXoWH1uZiPLwdLIgoepYAM2Avs7qRCwxfIbywjr6wyCG8nPId01DuKMoP-SdyTYqCBzrFi_ZQV2dn59JKA7n-3OZA6sDjYLvbS3Du7wuWVUeMSh9QslRGXqvkLxeITubcyOuRwdmSFMgDKRtUx-nJwOrSgBHNeWnDNTRUDXzaf2Uwew&h=rzN_LggPQdEP3js4FLiaL-K6TAsjbWmTOPw1TbfWqDs - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/CENTRALUSEUAP/operationStatuses/196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","name":"196576b4-e7a0-42a1-85e2-c9f339cde79d*606ECBA6B0DCB512C67D14CE341C65DABC737EBCBA77AF14BD5267F76F276542","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T09:42:10.4544908Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '551' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 09:43:47 GMT - etag: - - '"0200dbaa-0000-3400-0000-65e98c340000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 8590866A15904ECD9906DD73A999E040 Ref B: MAA201060516053 Ref C: 2024-03-07T09:43:47Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_data_network.yaml b/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_data_network.yaml deleted file mode 100644 index 5277201fe74..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_data_network.yaml +++ /dev/null @@ -1,1058 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_data_network","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '404' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 66248DBC98D0493499DAB5B385EE8189 Ref B: MAA201060516033 Ref C: 2024-03-07T08:46:56Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"publicLandMobileNetworkIdentifier": - {"mcc": "001", "mnc": "01"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:58.7687526Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:58.7687526Z"},"properties":{"provisioningState":"Accepted","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"fe8d244f-8ae7-4ba5-a065-bb4f40977968"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/590fbe5a-53da-4d65-99f2-997a87ccab42*FF83BF812429BC6D4349BD7D53FC2A33B3B4FC0E4A4571C861AD5BD349A8BCC3?api-version=2023-09-01&t=638453980203626182&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=FigixrX-9imocX0DUOHPGVkGQOWX1nLLm3-3CjCMPog3PPk1jOyfEaS7UNdWGsjkrEQEFkSGQlAIa2D6QCzAXAr_WAyG_X6d-gYDrzb0sr_y5C2qFzgSMIMT_jOPVrKqngufIrvgJFF80vRbZy5q6PoISNyUFSD2qiLHEg2Z3dCGZY4zD3xrDsNv7wTzOhdPaR7uyk83R6xr-9ONRlqiSyXzJeEtTS3aKuYAWpzUp71pBP_4a6nv3yBDu3jjYq3tQG1kBSdwrA9DbtAuSxPz1A57hjLDOCopJ3ShS6cv3SRlAb7guQPqWBqXzb937q2-1bKCOoFN6CO-G6xMCyX91Q&h=Km-WM8IIuhOjDQ8dhdiaW1leHsXqXmynIaiJ4Q-fqOk - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:00 GMT - etag: - - '"5701ad00-0000-0100-0000-65e97f030000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: C5BA92CEC40945558882435724A09D73 Ref B: MAA201060515037 Ref C: 2024-03-07T08:46:57Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/590fbe5a-53da-4d65-99f2-997a87ccab42*FF83BF812429BC6D4349BD7D53FC2A33B3B4FC0E4A4571C861AD5BD349A8BCC3?api-version=2023-09-01&t=638453980203626182&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=FigixrX-9imocX0DUOHPGVkGQOWX1nLLm3-3CjCMPog3PPk1jOyfEaS7UNdWGsjkrEQEFkSGQlAIa2D6QCzAXAr_WAyG_X6d-gYDrzb0sr_y5C2qFzgSMIMT_jOPVrKqngufIrvgJFF80vRbZy5q6PoISNyUFSD2qiLHEg2Z3dCGZY4zD3xrDsNv7wTzOhdPaR7uyk83R6xr-9ONRlqiSyXzJeEtTS3aKuYAWpzUp71pBP_4a6nv3yBDu3jjYq3tQG1kBSdwrA9DbtAuSxPz1A57hjLDOCopJ3ShS6cv3SRlAb7guQPqWBqXzb937q2-1bKCOoFN6CO-G6xMCyX91Q&h=Km-WM8IIuhOjDQ8dhdiaW1leHsXqXmynIaiJ4Q-fqOk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/590fbe5a-53da-4d65-99f2-997a87ccab42*FF83BF812429BC6D4349BD7D53FC2A33B3B4FC0E4A4571C861AD5BD349A8BCC3","name":"590fbe5a-53da-4d65-99f2-997a87ccab42*FF83BF812429BC6D4349BD7D53FC2A33B3B4FC0E4A4571C861AD5BD349A8BCC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:59.6736983Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:00 GMT - etag: - - '"d0006349-0000-0100-0000-65e97f030000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 191F219ACDEA4299886788AFC8E6576C Ref B: MAA201060515037 Ref C: 2024-03-07T08:47:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/590fbe5a-53da-4d65-99f2-997a87ccab42*FF83BF812429BC6D4349BD7D53FC2A33B3B4FC0E4A4571C861AD5BD349A8BCC3?api-version=2023-09-01&t=638453980203626182&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=FigixrX-9imocX0DUOHPGVkGQOWX1nLLm3-3CjCMPog3PPk1jOyfEaS7UNdWGsjkrEQEFkSGQlAIa2D6QCzAXAr_WAyG_X6d-gYDrzb0sr_y5C2qFzgSMIMT_jOPVrKqngufIrvgJFF80vRbZy5q6PoISNyUFSD2qiLHEg2Z3dCGZY4zD3xrDsNv7wTzOhdPaR7uyk83R6xr-9ONRlqiSyXzJeEtTS3aKuYAWpzUp71pBP_4a6nv3yBDu3jjYq3tQG1kBSdwrA9DbtAuSxPz1A57hjLDOCopJ3ShS6cv3SRlAb7guQPqWBqXzb937q2-1bKCOoFN6CO-G6xMCyX91Q&h=Km-WM8IIuhOjDQ8dhdiaW1leHsXqXmynIaiJ4Q-fqOk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/590fbe5a-53da-4d65-99f2-997a87ccab42*FF83BF812429BC6D4349BD7D53FC2A33B3B4FC0E4A4571C861AD5BD349A8BCC3","name":"590fbe5a-53da-4d65-99f2-997a87ccab42*FF83BF812429BC6D4349BD7D53FC2A33B3B4FC0E4A4571C861AD5BD349A8BCC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Succeeded","startTime":"2024-03-07T08:46:59.6736983Z","endTime":"2024-03-07T08:47:01.3095541Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:30 GMT - etag: - - '"d0007349-0000-0100-0000-65e97f050000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 1B81A6A3B7C74F23A569FA89606D926A Ref B: MAA201060515037 Ref C: 2024-03-07T08:47:30Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:58.7687526Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:58.7687526Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"fe8d244f-8ae7-4ba5-a065-bb4f40977968"}}' - headers: - cache-control: - - no-cache - content-length: - - '679' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:32 GMT - etag: - - '"5701f300-0000-0100-0000-65e97f050000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 216C5A9C01084D9FA1E47CFA0A63C32C Ref B: MAA201060515037 Ref C: 2024-03-07T08:47:31Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_data_network","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '404' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: DB31FE4239364559BC303ABA7CA8A67F Ref B: MAA201060514025 Ref C: 2024-03-07T08:47:33Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network create - Connection: - - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json - ParameterSetName: - - -n -g --mobile-network-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","name":"dn000003","type":"microsoft.mobilenetwork/mobilenetworks/datanetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:35.7952147Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:35.7952147Z"},"properties":{"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a79675ae-4b93-47be-b379-edf880c1cb9c*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453980578266192&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=e_56dmRCTUruU3sQhB0JHTFl75t1E8NuSsyCRM6YDzyWSGQSrMMmhe_FQ-gyP2uWyXeiLy0RxAog4kexPMeGAW0W3dIOA2atbxCgTfF6GEa3ih4i3nrw1VHpXiYWJTS7Hm16ngzXComqk0O3khVDlK3RPd_Efpsex_QhjDZ-fE2Qjbk1tZwh5Wms0hHg6Uacbx_U04mS8OcD8wW_BlYUy1XKxD3l1rnYopfwGEivRXV1PupWrXe2QPu3SXjQA_5OhjgQ94EJnfF9lepAD-X5p91tsXuiBxSiL5s8qK7vkPZLuBJ4b0h2j6r8Vs09MIPe7bu00Jq-6p87niGr0SGt-g&h=IGGLUL9s1VCRliv6rQ_LB7Vawy6A8xytHKeMuX87Ngg - cache-control: - - no-cache - content-length: - - '587' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:37 GMT - etag: - - '"52033b93-0000-0100-0000-65e97f290000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 1173082B830B4847B9D653BA0FAABA73 Ref B: MAA201060513031 Ref C: 2024-03-07T08:47:34Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a79675ae-4b93-47be-b379-edf880c1cb9c*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453980578266192&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=e_56dmRCTUruU3sQhB0JHTFl75t1E8NuSsyCRM6YDzyWSGQSrMMmhe_FQ-gyP2uWyXeiLy0RxAog4kexPMeGAW0W3dIOA2atbxCgTfF6GEa3ih4i3nrw1VHpXiYWJTS7Hm16ngzXComqk0O3khVDlK3RPd_Efpsex_QhjDZ-fE2Qjbk1tZwh5Wms0hHg6Uacbx_U04mS8OcD8wW_BlYUy1XKxD3l1rnYopfwGEivRXV1PupWrXe2QPu3SXjQA_5OhjgQ94EJnfF9lepAD-X5p91tsXuiBxSiL5s8qK7vkPZLuBJ4b0h2j6r8Vs09MIPe7bu00Jq-6p87niGr0SGt-g&h=IGGLUL9s1VCRliv6rQ_LB7Vawy6A8xytHKeMuX87Ngg - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a79675ae-4b93-47be-b379-edf880c1cb9c*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","name":"a79675ae-4b93-47be-b379-edf880c1cb9c*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","status":"Accepted","startTime":"2024-03-07T08:47:37.0003669Z"}' - headers: - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:38 GMT - etag: - - '"d0007d4a-0000-0100-0000-65e97f280000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: F28F87957EC74724B3E0091D9022E55C Ref B: MAA201060513031 Ref C: 2024-03-07T08:47:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a79675ae-4b93-47be-b379-edf880c1cb9c*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453980578266192&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=e_56dmRCTUruU3sQhB0JHTFl75t1E8NuSsyCRM6YDzyWSGQSrMMmhe_FQ-gyP2uWyXeiLy0RxAog4kexPMeGAW0W3dIOA2atbxCgTfF6GEa3ih4i3nrw1VHpXiYWJTS7Hm16ngzXComqk0O3khVDlK3RPd_Efpsex_QhjDZ-fE2Qjbk1tZwh5Wms0hHg6Uacbx_U04mS8OcD8wW_BlYUy1XKxD3l1rnYopfwGEivRXV1PupWrXe2QPu3SXjQA_5OhjgQ94EJnfF9lepAD-X5p91tsXuiBxSiL5s8qK7vkPZLuBJ4b0h2j6r8Vs09MIPe7bu00Jq-6p87niGr0SGt-g&h=IGGLUL9s1VCRliv6rQ_LB7Vawy6A8xytHKeMuX87Ngg - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a79675ae-4b93-47be-b379-edf880c1cb9c*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","name":"a79675ae-4b93-47be-b379-edf880c1cb9c*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","status":"Succeeded","startTime":"2024-03-07T08:47:37.0003669Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '578' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:09 GMT - etag: - - '"1c001ac0-0000-0600-0000-65e97f300000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 15349A8C50EF4BABB8FC6154785FF629 Ref B: MAA201060513031 Ref C: 2024-03-07T08:48:08Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","name":"dn000003","type":"microsoft.mobilenetwork/mobilenetworks/datanetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:35.7952147Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:35.7952147Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '588' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:10 GMT - etag: - - '"120090ad-0000-0600-0000-65e97f2f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F04BB4FD607A43B8A00A67F7487014F9 Ref B: MAA201060513031 Ref C: 2024-03-07T08:48:09Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network update - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","name":"dn000003","type":"microsoft.mobilenetwork/mobilenetworks/datanetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:35.7952147Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:35.7952147Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '588' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:11 GMT - etag: - - '"120090ad-0000-0600-0000-65e97f2f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 54B22416E3014AE1B42D3C6672F1F708 Ref B: MAA201060515009 Ref C: 2024-03-07T08:48:11Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {}, "tags": {"tag": "test", "tag2": - "test2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network update - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - -n -g --mobile-network-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","name":"dn000003","type":"microsoft.mobilenetwork/mobilenetworks/datanetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:35.7952147Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:13.2993378Z"},"properties":{"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/9f9dcfb4-43a3-4f8c-8839-66bb80f0f747*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453980965805350&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Z2Es597pXgomgSmWGzINN-OO84zvn5HIc7zvGBUgrLZjp-fhdyvShsjxGbimRO2-NhMPzJ38HA0HwWi7LBf0F2b9celN9K8yBVgUrxPjqk-97m1To8FOPMhVcjrq8fh9kaiUFv6xD4Moa3dei4KbuEOBotiXs1YvzZbkcGi00Sgkpb1zdeBu14Km6XUWAYK7fEP5_1PqvCJI3rLGJfynCsiiAY1pH-UBYlygpNXuvSpfGY5nM8EDlpG9wAJ9P1LvK6E-fnp1nwGLJ7RvbZ_5QSvj0Z6xfGR22zho3fSVSWVd_R4UlkpABeyf3Snj8b6gT8h9y8TjWg1C3BJPwyuiow&h=Me0xI85eYzLLn8zHgyTKLzrg9m7zr-5yQp6kE8WXgls - cache-control: - - no-cache - content-length: - - '624' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:15 GMT - etag: - - '"5203099d-0000-0100-0000-65e97f4e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 5A0D09F87B0F414585F3A58745D4F920 Ref B: MAA201060515009 Ref C: 2024-03-07T08:48:12Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network update - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/9f9dcfb4-43a3-4f8c-8839-66bb80f0f747*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453980965805350&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Z2Es597pXgomgSmWGzINN-OO84zvn5HIc7zvGBUgrLZjp-fhdyvShsjxGbimRO2-NhMPzJ38HA0HwWi7LBf0F2b9celN9K8yBVgUrxPjqk-97m1To8FOPMhVcjrq8fh9kaiUFv6xD4Moa3dei4KbuEOBotiXs1YvzZbkcGi00Sgkpb1zdeBu14Km6XUWAYK7fEP5_1PqvCJI3rLGJfynCsiiAY1pH-UBYlygpNXuvSpfGY5nM8EDlpG9wAJ9P1LvK6E-fnp1nwGLJ7RvbZ_5QSvj0Z6xfGR22zho3fSVSWVd_R4UlkpABeyf3Snj8b6gT8h9y8TjWg1C3BJPwyuiow&h=Me0xI85eYzLLn8zHgyTKLzrg9m7zr-5yQp6kE8WXgls - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/9f9dcfb4-43a3-4f8c-8839-66bb80f0f747*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","name":"9f9dcfb4-43a3-4f8c-8839-66bb80f0f747*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","status":"Accepted","startTime":"2024-03-07T08:48:14.2093242Z"}' - headers: - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:16 GMT - etag: - - '"d000984b-0000-0100-0000-65e97f4e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9996' - x-msedge-ref: - - 'Ref A: EE096B8B13C342A0A9837A1C17AFFE6E Ref B: MAA201060515009 Ref C: 2024-03-07T08:48:16Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network update - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/9f9dcfb4-43a3-4f8c-8839-66bb80f0f747*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453980965805350&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Z2Es597pXgomgSmWGzINN-OO84zvn5HIc7zvGBUgrLZjp-fhdyvShsjxGbimRO2-NhMPzJ38HA0HwWi7LBf0F2b9celN9K8yBVgUrxPjqk-97m1To8FOPMhVcjrq8fh9kaiUFv6xD4Moa3dei4KbuEOBotiXs1YvzZbkcGi00Sgkpb1zdeBu14Km6XUWAYK7fEP5_1PqvCJI3rLGJfynCsiiAY1pH-UBYlygpNXuvSpfGY5nM8EDlpG9wAJ9P1LvK6E-fnp1nwGLJ7RvbZ_5QSvj0Z6xfGR22zho3fSVSWVd_R4UlkpABeyf3Snj8b6gT8h9y8TjWg1C3BJPwyuiow&h=Me0xI85eYzLLn8zHgyTKLzrg9m7zr-5yQp6kE8WXgls - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/9f9dcfb4-43a3-4f8c-8839-66bb80f0f747*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","name":"9f9dcfb4-43a3-4f8c-8839-66bb80f0f747*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","status":"Succeeded","startTime":"2024-03-07T08:48:14.2093242Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '578' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:46 GMT - etag: - - '"1c008dc0-0000-0600-0000-65e97f550000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: BE8E4758F4BD40F9AD2D5832D0F047DA Ref B: MAA201060515009 Ref C: 2024-03-07T08:48:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network update - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","name":"dn000003","type":"microsoft.mobilenetwork/mobilenetworks/datanetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:35.7952147Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:13.2993378Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '625' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:47 GMT - etag: - - '"1200cbad-0000-0600-0000-65e97f550000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D37126845AE847D2B37F8256EA84D259 Ref B: MAA201060515009 Ref C: 2024-03-07T08:48:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network list - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","name":"dn000003","type":"microsoft.mobilenetwork/mobilenetworks/datanetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:35.7952147Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:13.2993378Z"},"properties":{"provisioningState":"Succeeded"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 1E3CBD12BC444814BCBD71EC81A14F75 Ref B: MAA201060515051 Ref C: 2024-03-07T08:48:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network show - Connection: - - keep-alive - ParameterSetName: - - -n --mobile-network-name -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","name":"dn000003","type":"microsoft.mobilenetwork/mobilenetworks/datanetworks","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:35.7952147Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:13.2993378Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '625' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:52 GMT - etag: - - '"1200cbad-0000-0600-0000-65e97f550000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F23CF22000C3426CB9C594A558C47F4F Ref B: MAA201060513047 Ref C: 2024-03-07T08:48:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n --mobile-network-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453981350126582&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=CZhkGeBgPr00gCwGxjeaneRgz-jqmAyW1x4BOV5dyj1s5i15frgPna9h8eBJxLJhRUD18XqIJPMW19AZSfC8FKN6VFEM3Ke-Z6dQ2DLd18MwjJB761xjCzLx3c5_Zy7hGlg06Ylfpk0cuEW1FHbAX4DlTvpEDCOT1HvmBtdAwoZ5Ue25LGU6v9sokZhlPbXNB_DanjJxcKRKsbq7zd4BkshebpsFrDVqH7qB4e1xS4kjU-CLgglXzsKfHvGBVN2YoLyiKCwoUnrAh1JBRTx6_xYqbWJOzSQkQs4vw3qeXxYnNw1Z4h8ENCLrKCBgy2i-n05wSQwTaGlINSkrjnyBHw&h=y3dWoKfAHIkoGd8eiohTqnTTDSF7-Ah4xx4wMgJekCM - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:55 GMT - etag: - - '"520309a8-0000-0100-0000-65e97f760000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453981350126582&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=CZhkGeBgPr00gCwGxjeaneRgz-jqmAyW1x4BOV5dyj1s5i15frgPna9h8eBJxLJhRUD18XqIJPMW19AZSfC8FKN6VFEM3Ke-Z6dQ2DLd18MwjJB761xjCzLx3c5_Zy7hGlg06Ylfpk0cuEW1FHbAX4DlTvpEDCOT1HvmBtdAwoZ5Ue25LGU6v9sokZhlPbXNB_DanjJxcKRKsbq7zd4BkshebpsFrDVqH7qB4e1xS4kjU-CLgglXzsKfHvGBVN2YoLyiKCwoUnrAh1JBRTx6_xYqbWJOzSQkQs4vw3qeXxYnNw1Z4h8ENCLrKCBgy2i-n05wSQwTaGlINSkrjnyBHw&h=y3dWoKfAHIkoGd8eiohTqnTTDSF7-Ah4xx4wMgJekCM - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 5981A1E9303F4B0197871DC3ABDEA3B6 Ref B: MAA201060513009 Ref C: 2024-03-07T08:48:53Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network delete - Connection: - - keep-alive - ParameterSetName: - - -n --mobile-network-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453981350126582&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=CZhkGeBgPr00gCwGxjeaneRgz-jqmAyW1x4BOV5dyj1s5i15frgPna9h8eBJxLJhRUD18XqIJPMW19AZSfC8FKN6VFEM3Ke-Z6dQ2DLd18MwjJB761xjCzLx3c5_Zy7hGlg06Ylfpk0cuEW1FHbAX4DlTvpEDCOT1HvmBtdAwoZ5Ue25LGU6v9sokZhlPbXNB_DanjJxcKRKsbq7zd4BkshebpsFrDVqH7qB4e1xS4kjU-CLgglXzsKfHvGBVN2YoLyiKCwoUnrAh1JBRTx6_xYqbWJOzSQkQs4vw3qeXxYnNw1Z4h8ENCLrKCBgy2i-n05wSQwTaGlINSkrjnyBHw&h=y3dWoKfAHIkoGd8eiohTqnTTDSF7-Ah4xx4wMgJekCM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","name":"f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","status":"Deleting","startTime":"2024-03-07T08:48:54.5060078Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453981359926583&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Iwmua-IoLx02dkQJmCL8IOh6ayAXGAYf-L1XFxOo5JwYA38Rbd2JcLl882MlRnifF59VSZD8aU3lMhGmIr_qYcZ-BmUBruymW87AnrWbQK5t9Xsz0-EMP5-yUQpzdCwwSSL9XcTEPT7poDrsOkzJil8IC9soC4nO7C4bFipDDaA7xz3z-DM1JSUpzQJ0zWO3atzbO3b1Pg7ykNSi2Acxg-LnoZP2fdSq7whNEgGd1-6Mmc0_OFm1ro2FBViNnplM_6YQ51ScvWFAWRnBkgzsP_5irgNMDbcnflSDXKcuGqOL7iNcZa9XscOd6P1zSKe8zQLCfIRVA_IC_ngsH_htWQ&h=OnY2zNlKhRy-_eFLZk_D0zJ_4a7Z71Q05B3lDZF2nxE - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:56 GMT - etag: - - '"d000c24c-0000-0100-0000-65e97f760000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453981360083368&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=iguSBfbhLI_dhbKmS0Efbqnam1oGq0zvhzqjr-53rejGzSBohM3Sw8S0oPE-wZkHroDcU40AjERhXEdkNkk6dCeTwmVNCMAIxK6Ab4j0092ZdLfIUyjIVgX8lzi_gskkkWZoW9R7SnoEAQp64SDq4lm0kLUhXJSHos2UgR2NNPvrtEn_XVCseAzkIn598JQyQwBHQXxUEQYBBrS7F4C2bL6tMbq0CcioS8OThpSjqoxRxBiGabKctSoCJ1ROFsTNonUX_t9iKwYM6QoX8WxR1cZfNX00YaIQTFYV9Q088p1rojzlp_nkVX_CQhsCUCQ5l7h5q1RHgqCMN-pbq2jCGw&h=eygdn4_wlbE6dCUPhYMcqouC5u1G6sFKaQ0_WGJtULA - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: A73DC89EABEE4169BE976931CF8DD744 Ref B: MAA201060513009 Ref C: 2024-03-07T08:48:55Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network delete - Connection: - - keep-alive - ParameterSetName: - - -n --mobile-network-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453981350126582&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=CZhkGeBgPr00gCwGxjeaneRgz-jqmAyW1x4BOV5dyj1s5i15frgPna9h8eBJxLJhRUD18XqIJPMW19AZSfC8FKN6VFEM3Ke-Z6dQ2DLd18MwjJB761xjCzLx3c5_Zy7hGlg06Ylfpk0cuEW1FHbAX4DlTvpEDCOT1HvmBtdAwoZ5Ue25LGU6v9sokZhlPbXNB_DanjJxcKRKsbq7zd4BkshebpsFrDVqH7qB4e1xS4kjU-CLgglXzsKfHvGBVN2YoLyiKCwoUnrAh1JBRTx6_xYqbWJOzSQkQs4vw3qeXxYnNw1Z4h8ENCLrKCBgy2i-n05wSQwTaGlINSkrjnyBHw&h=y3dWoKfAHIkoGd8eiohTqnTTDSF7-Ah4xx4wMgJekCM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","name":"f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","status":"Succeeded","startTime":"2024-03-07T08:48:54.5060078Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '578' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:26 GMT - etag: - - '"1c004ec1-0000-0600-0000-65e97f7c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 5110F8A32FB7477AAF1C94913AD0F788 Ref B: MAA201060513009 Ref C: 2024-03-07T08:49:26Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network data-network delete - Connection: - - keep-alive - ParameterSetName: - - -n --mobile-network-name -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35?api-version=2023-09-01&t=638453981350126582&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=CZhkGeBgPr00gCwGxjeaneRgz-jqmAyW1x4BOV5dyj1s5i15frgPna9h8eBJxLJhRUD18XqIJPMW19AZSfC8FKN6VFEM3Ke-Z6dQ2DLd18MwjJB761xjCzLx3c5_Zy7hGlg06Ylfpk0cuEW1FHbAX4DlTvpEDCOT1HvmBtdAwoZ5Ue25LGU6v9sokZhlPbXNB_DanjJxcKRKsbq7zd4BkshebpsFrDVqH7qB4e1xS4kjU-CLgglXzsKfHvGBVN2YoLyiKCwoUnrAh1JBRTx6_xYqbWJOzSQkQs4vw3qeXxYnNw1Z4h8ENCLrKCBgy2i-n05wSQwTaGlINSkrjnyBHw&h=y3dWoKfAHIkoGd8eiohTqnTTDSF7-Ah4xx4wMgJekCM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","name":"f1716d08-c801-41b6-92d8-cd3ae7bf7602*44FF34230AB98B0096501959E401C27FB8384A5E66963A07A576A034BE1DFF35","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/dataNetworks/dn000003","status":"Succeeded","startTime":"2024-03-07T08:48:54.5060078Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '578' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:27 GMT - etag: - - '"1c004ec1-0000-0600-0000-65e97f7c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: EF77EFB8E0114E7E933F117676D490C3 Ref B: MAA201060513009 Ref C: 2024-03-07T08:49:27Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_pccp.yaml b/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_pccp.yaml deleted file mode 100644 index e5f0eaba4d8..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_pccp.yaml +++ /dev/null @@ -1,1669 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_pccp","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '396' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1252A310F7B8492C8D0C7E69511DAEC1 Ref B: MAA201060516033 Ref C: 2024-03-07T08:46:54Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"publicLandMobileNetworkIdentifier": - {"mcc": "001", "mnc": "01"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:56.8111334Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:56.8111334Z"},"properties":{"provisioningState":"Accepted","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"c02c56ad-7e75-4643-a71a-19079341919e"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D?api-version=2023-09-01&t=638453980186705289&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=LFgqiX7N2p52zizj6KbQI9Ebuus41kSMnk-Vdn52f0Jv4r_5TlB9McqhpJ7TA9h71nlleYzj8ld0DP3NJAD1bh5OKFQsWb-hknbbkL82GxbMNDdmcBaCsJuZ8SrfyPM6IYuAAQj4d2JJ5lIIld6KVWq9KSrkxCjImM7U5AoV28OadJzEM1ylyGeQtdpXlov2B9YA7Z3dHB8w1rFJ1CtY3NTxI19XmQdDrs8b0TBvL50IDVchdCTL1lA2iItWdb24w5bWVwvFcAY1ojzY_4U0TDImY9fIhhSG-sGWXRaAHhWq8431KJMg5c3ujEiq_jHWNbcgtVrrqJKsCLlgGXVjrA&h=0Aq480S08hXo9jhMr8JQd567eGrYvVlP5l0Y7IhQApA - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:58 GMT - etag: - - '"57016400-0000-0100-0000-65e97f020000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: CB277605959F4FA08CA997F8F267F597 Ref B: MAA201060514025 Ref C: 2024-03-07T08:46:55Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D?api-version=2023-09-01&t=638453980186705289&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=LFgqiX7N2p52zizj6KbQI9Ebuus41kSMnk-Vdn52f0Jv4r_5TlB9McqhpJ7TA9h71nlleYzj8ld0DP3NJAD1bh5OKFQsWb-hknbbkL82GxbMNDdmcBaCsJuZ8SrfyPM6IYuAAQj4d2JJ5lIIld6KVWq9KSrkxCjImM7U5AoV28OadJzEM1ylyGeQtdpXlov2B9YA7Z3dHB8w1rFJ1CtY3NTxI19XmQdDrs8b0TBvL50IDVchdCTL1lA2iItWdb24w5bWVwvFcAY1ojzY_4U0TDImY9fIhhSG-sGWXRaAHhWq8431KJMg5c3ujEiq_jHWNbcgtVrrqJKsCLlgGXVjrA&h=0Aq480S08hXo9jhMr8JQd567eGrYvVlP5l0Y7IhQApA - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D","name":"f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:57.9454219Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:59 GMT - etag: - - '"d0005649-0000-0100-0000-65e97f010000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 599B6197242E4616B57391C4FDC63E4D Ref B: MAA201060514025 Ref C: 2024-03-07T08:46:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D?api-version=2023-09-01&t=638453980186705289&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=LFgqiX7N2p52zizj6KbQI9Ebuus41kSMnk-Vdn52f0Jv4r_5TlB9McqhpJ7TA9h71nlleYzj8ld0DP3NJAD1bh5OKFQsWb-hknbbkL82GxbMNDdmcBaCsJuZ8SrfyPM6IYuAAQj4d2JJ5lIIld6KVWq9KSrkxCjImM7U5AoV28OadJzEM1ylyGeQtdpXlov2B9YA7Z3dHB8w1rFJ1CtY3NTxI19XmQdDrs8b0TBvL50IDVchdCTL1lA2iItWdb24w5bWVwvFcAY1ojzY_4U0TDImY9fIhhSG-sGWXRaAHhWq8431KJMg5c3ujEiq_jHWNbcgtVrrqJKsCLlgGXVjrA&h=0Aq480S08hXo9jhMr8JQd567eGrYvVlP5l0Y7IhQApA - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D","name":"f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:57.9454219Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:29 GMT - etag: - - '"d0005649-0000-0100-0000-65e97f010000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 047F9BFB850E43309F494FD56415D179 Ref B: MAA201060514025 Ref C: 2024-03-07T08:47:29Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D?api-version=2023-09-01&t=638453980186705289&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=LFgqiX7N2p52zizj6KbQI9Ebuus41kSMnk-Vdn52f0Jv4r_5TlB9McqhpJ7TA9h71nlleYzj8ld0DP3NJAD1bh5OKFQsWb-hknbbkL82GxbMNDdmcBaCsJuZ8SrfyPM6IYuAAQj4d2JJ5lIIld6KVWq9KSrkxCjImM7U5AoV28OadJzEM1ylyGeQtdpXlov2B9YA7Z3dHB8w1rFJ1CtY3NTxI19XmQdDrs8b0TBvL50IDVchdCTL1lA2iItWdb24w5bWVwvFcAY1ojzY_4U0TDImY9fIhhSG-sGWXRaAHhWq8431KJMg5c3ujEiq_jHWNbcgtVrrqJKsCLlgGXVjrA&h=0Aq480S08hXo9jhMr8JQd567eGrYvVlP5l0Y7IhQApA - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D","name":"f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:57.9454219Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:00 GMT - etag: - - '"d0005649-0000-0100-0000-65e97f010000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 044F0768B5E54769A1A07F8E150584D2 Ref B: MAA201060514025 Ref C: 2024-03-07T08:48:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D?api-version=2023-09-01&t=638453980186705289&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=LFgqiX7N2p52zizj6KbQI9Ebuus41kSMnk-Vdn52f0Jv4r_5TlB9McqhpJ7TA9h71nlleYzj8ld0DP3NJAD1bh5OKFQsWb-hknbbkL82GxbMNDdmcBaCsJuZ8SrfyPM6IYuAAQj4d2JJ5lIIld6KVWq9KSrkxCjImM7U5AoV28OadJzEM1ylyGeQtdpXlov2B9YA7Z3dHB8w1rFJ1CtY3NTxI19XmQdDrs8b0TBvL50IDVchdCTL1lA2iItWdb24w5bWVwvFcAY1ojzY_4U0TDImY9fIhhSG-sGWXRaAHhWq8431KJMg5c3ujEiq_jHWNbcgtVrrqJKsCLlgGXVjrA&h=0Aq480S08hXo9jhMr8JQd567eGrYvVlP5l0Y7IhQApA - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D","name":"f77a3baa-50d6-4ca4-bdb0-5633d10d03b5*71B12A61113376E19A7D15ECDEA385CA63052A609CBB6D29BF433A21060D698D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Succeeded","startTime":"2024-03-07T08:46:57.9454219Z","endTime":"2024-03-07T08:48:04.822852Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '596' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:31 GMT - etag: - - '"d000424b-0000-0100-0000-65e97f440000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 9A9567E61EC243D7A05E1207097603A2 Ref B: MAA201060514025 Ref C: 2024-03-07T08:48:31Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:56.8111334Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:56.8111334Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"c02c56ad-7e75-4643-a71a-19079341919e"}}' - headers: - cache-control: - - no-cache - content-length: - - '679' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:32 GMT - etag: - - '"5701d30a-0000-0100-0000-65e97f440000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 9065A90114BE40CCBBE20BC32946D044 Ref B: MAA201060514025 Ref C: 2024-03-07T08:48:32Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site create - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_pccp","date":"2024-03-07T08:46:52Z","module":"mobile-network","DateCreated":"2024-03-07T08:47:21Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '472' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: A3D84A10899141FC860E3AB8E64532CE Ref B: MAA201060515029 Ref C: 2024-03-07T08:48:34Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site create - Connection: - - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","name":"site_000003","type":"microsoft.mobilenetwork/mobilenetworks/sites","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:36.7377737Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:36.7377737Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '580' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:37 GMT - etag: - - '"1c0099f0-0000-0100-0000-65e97f650000"' - expires: - - '-1' - mise-correlation-id: - - abc148b1-348e-4525-96c1-23f975340644 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 42344320B24E4F8AA14EC03381DBD809 Ref B: MAA201060515017 Ref C: 2024-03-07T08:48:35Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_pccp","date":"2024-03-07T08:46:52Z","module":"mobile-network","DateCreated":"2024-03-07T08:47:21Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '472' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 4A0F24B2B9ED4A8082BC71F194B426C1 Ref B: MAA201060513011 Ref C: 2024-03-07T08:48:39Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"controlPlaneAccessInterface": {"ipv4Address": - "10.28.128.2", "ipv4Gateway": "10.28.128.1", "ipv4Subnet": "10.28.128.0/24", - "name": "N2"}, "coreNetworkTechnology": "5GC", "localDiagnosticsAccess": {"authenticationType": - "AAD"}, "platform": {"type": "AKS-HCI"}, "sites": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}], - "sku": "G0", "ueMtu": 1440}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - Content-Length: - - '535' - Content-Type: - - application/json - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","name":"pccp_000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:40.8788727Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:40.8788727Z"},"properties":{"controlPlaneAccessInterface":{"ipv4Address":"10.28.128.2","ipv4Gateway":"10.28.128.1","ipv4Subnet":"10.28.128.0/24","name":"N2"},"coreNetworkTechnology":"5GC","localDiagnosticsAccess":{"authenticationType":"AAD"},"platform":{"type":"AKS-HCI"},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"sku":"G0","ueMtu":1440,"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453981220663825&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=WeH9NWiQ_gSOt7SaXSs3yW6g9sEmGilh9kDfFX_ouszIzEqsZhtogk7DF8JrpOB3lQEQIw7YMGVG3YVrBvvZ_LCELNrSrCyoyQQ3hin4LkIBlDgC1L_xgLZAHn5uoRA3Clw8fVGKun7yy9qMDh4zOwZPBi8cxsX9EsT9hsG4qcyL9qTQ8qFm559v-qVTZtoub0N7Nv8n9oXrC0LeWdkNgffvurgkr4ERmPk_wDWFOUAxqNKNJOQYcJcVQZPU26oKU8ZYA0MXq1wPhZ3NBpuEgquhhULAbOE0yaqmD5mSQb0Y9g6uKdSZVZz35r91Olr6wEA0ATFMmyeDOaN_7ifLbw&h=y7d9qDuFgu1kCDUtC_CykTjdkXWTgjUsq4uKWbMgMok - cache-control: - - no-cache - content-length: - - '1036' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:41 GMT - etag: - - '"ed00e699-0000-0100-0000-65e97f690000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-msedge-ref: - - 'Ref A: DEAC0058BF5844CAAF0E53BAD47E3472 Ref B: MAA201060515037 Ref C: 2024-03-07T08:48:39Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453981220663825&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=WeH9NWiQ_gSOt7SaXSs3yW6g9sEmGilh9kDfFX_ouszIzEqsZhtogk7DF8JrpOB3lQEQIw7YMGVG3YVrBvvZ_LCELNrSrCyoyQQ3hin4LkIBlDgC1L_xgLZAHn5uoRA3Clw8fVGKun7yy9qMDh4zOwZPBi8cxsX9EsT9hsG4qcyL9qTQ8qFm559v-qVTZtoub0N7Nv8n9oXrC0LeWdkNgffvurgkr4ERmPk_wDWFOUAxqNKNJOQYcJcVQZPU26oKU8ZYA0MXq1wPhZ3NBpuEgquhhULAbOE0yaqmD5mSQb0Y9g6uKdSZVZz35r91Olr6wEA0ATFMmyeDOaN_7ifLbw&h=y7d9qDuFgu1kCDUtC_CykTjdkXWTgjUsq4uKWbMgMok - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:48:41.3962937Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:42 GMT - etag: - - '"d000794c-0000-0100-0000-65e97f690000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9994' - x-msedge-ref: - - 'Ref A: BA853E8375424BA7B52241167E0ACB0B Ref B: MAA201060515037 Ref C: 2024-03-07T08:48:42Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453981220663825&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=WeH9NWiQ_gSOt7SaXSs3yW6g9sEmGilh9kDfFX_ouszIzEqsZhtogk7DF8JrpOB3lQEQIw7YMGVG3YVrBvvZ_LCELNrSrCyoyQQ3hin4LkIBlDgC1L_xgLZAHn5uoRA3Clw8fVGKun7yy9qMDh4zOwZPBi8cxsX9EsT9hsG4qcyL9qTQ8qFm559v-qVTZtoub0N7Nv8n9oXrC0LeWdkNgffvurgkr4ERmPk_wDWFOUAxqNKNJOQYcJcVQZPU26oKU8ZYA0MXq1wPhZ3NBpuEgquhhULAbOE0yaqmD5mSQb0Y9g6uKdSZVZz35r91Olr6wEA0ATFMmyeDOaN_7ifLbw&h=y7d9qDuFgu1kCDUtC_CykTjdkXWTgjUsq4uKWbMgMok - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:48:41.3962937Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:12 GMT - etag: - - '"d000794c-0000-0100-0000-65e97f690000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 1214B558216B4950803308DEC9CB2CEC Ref B: MAA201060515037 Ref C: 2024-03-07T08:49:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453981220663825&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=WeH9NWiQ_gSOt7SaXSs3yW6g9sEmGilh9kDfFX_ouszIzEqsZhtogk7DF8JrpOB3lQEQIw7YMGVG3YVrBvvZ_LCELNrSrCyoyQQ3hin4LkIBlDgC1L_xgLZAHn5uoRA3Clw8fVGKun7yy9qMDh4zOwZPBi8cxsX9EsT9hsG4qcyL9qTQ8qFm559v-qVTZtoub0N7Nv8n9oXrC0LeWdkNgffvurgkr4ERmPk_wDWFOUAxqNKNJOQYcJcVQZPU26oKU8ZYA0MXq1wPhZ3NBpuEgquhhULAbOE0yaqmD5mSQb0Y9g6uKdSZVZz35r91Olr6wEA0ATFMmyeDOaN_7ifLbw&h=y7d9qDuFgu1kCDUtC_CykTjdkXWTgjUsq4uKWbMgMok - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:48:41.3962937Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:43 GMT - etag: - - '"d000794c-0000-0100-0000-65e97f690000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 162137B6C57049F49EA9F799372E0143 Ref B: MAA201060515037 Ref C: 2024-03-07T08:49:43Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453981220663825&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=WeH9NWiQ_gSOt7SaXSs3yW6g9sEmGilh9kDfFX_ouszIzEqsZhtogk7DF8JrpOB3lQEQIw7YMGVG3YVrBvvZ_LCELNrSrCyoyQQ3hin4LkIBlDgC1L_xgLZAHn5uoRA3Clw8fVGKun7yy9qMDh4zOwZPBi8cxsX9EsT9hsG4qcyL9qTQ8qFm559v-qVTZtoub0N7Nv8n9oXrC0LeWdkNgffvurgkr4ERmPk_wDWFOUAxqNKNJOQYcJcVQZPU26oKU8ZYA0MXq1wPhZ3NBpuEgquhhULAbOE0yaqmD5mSQb0Y9g6uKdSZVZz35r91Olr6wEA0ATFMmyeDOaN_7ifLbw&h=y7d9qDuFgu1kCDUtC_CykTjdkXWTgjUsq4uKWbMgMok - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"5540d8ff-ffbb-4e85-95a2-ba5074da1c81*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Succeeded","startTime":"2024-03-07T08:48:41.3962937Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '555' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:14 GMT - etag: - - '"1c0014c2-0000-0600-0000-65e97fac0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9997' - x-msedge-ref: - - 'Ref A: DF86217581144761BB91E8C5F739C34C Ref B: MAA201060515037 Ref C: 2024-03-07T08:50:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","name":"pccp_000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:40.8788727Z","lastModifiedBy":"54b9b9be-c365-4548-95c6-d2f2011f48f4","lastModifiedByType":"Application","lastModifiedAt":"2024-03-07T08:49:53.8864163Z"},"properties":{"provisioningState":"Succeeded","installation":{"state":"Uninstalled","reinstallRequired":"NotRequired","reasons":["NoPacketCoreDataPlane"]},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"platform":{"type":"AKS-HCI"},"coreNetworkTechnology":"5GC","controlPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"sku":"G0","ueMtu":1440,"localDiagnosticsAccess":{"authenticationType":"AAD"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:15 GMT - etag: - - '"ed00809b-0000-0100-0000-65e97fb10000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F1AA40E515A942D49510B4C5F25395F3 Ref B: MAA201060515037 Ref C: 2024-03-07T08:50:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp update - Connection: - - keep-alive - ParameterSetName: - - -n -g --ue-mtu --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","name":"pccp_000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:40.8788727Z","lastModifiedBy":"54b9b9be-c365-4548-95c6-d2f2011f48f4","lastModifiedByType":"Application","lastModifiedAt":"2024-03-07T08:49:53.8864163Z"},"properties":{"provisioningState":"Succeeded","installation":{"state":"Uninstalled","reinstallRequired":"NotRequired","reasons":["NoPacketCoreDataPlane"]},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"platform":{"type":"AKS-HCI"},"coreNetworkTechnology":"5GC","controlPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"sku":"G0","ueMtu":1440,"localDiagnosticsAccess":{"authenticationType":"AAD"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1163' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:18 GMT - etag: - - '"ed00809b-0000-0100-0000-65e97fb10000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: B32B591855D2462B9AB37014A0D3CFF8 Ref B: MAA201060513045 Ref C: 2024-03-07T08:50:17Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"controlPlaneAccessInterface": {"ipv4Address": - "10.28.128.2", "ipv4Gateway": "10.28.128.1", "ipv4Subnet": "10.28.128.0/24", - "name": "N2"}, "coreNetworkTechnology": "5GC", "installation": {"reinstallRequired": - "NotRequired", "state": "Uninstalled"}, "localDiagnosticsAccess": {"authenticationType": - "AAD"}, "platform": {"type": "AKS-HCI"}, "sites": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}], - "sku": "G0", "ueMtu": 1500}, "tags": {"tag": "test", "tag2": "test2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp update - Connection: - - keep-alive - Content-Length: - - '655' - Content-Type: - - application/json - ParameterSetName: - - -n -g --ue-mtu --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","name":"pccp_000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:40.8788727Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:50:18.7944512Z"},"properties":{"provisioningState":"Accepted","installation":{"reasons":["NoPacketCoreDataPlane"],"reinstallRequired":"NotRequired","state":"Uninstalled"},"controlPlaneAccessInterface":{"ipv4Address":"10.28.128.2","ipv4Gateway":"10.28.128.1","ipv4Subnet":"10.28.128.0/24","name":"N2"},"coreNetworkTechnology":"5GC","localDiagnosticsAccess":{"authenticationType":"AAD"},"platform":{"type":"AKS-HCI"},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"sku":"G0","ueMtu":1500}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453982224194274&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=pVHhIQKpB1mC9jPjbJFWrECJT8ytfG_mDSTNri7R2tdKTZnayaAb7JYKgHphZOTbswEYU_Qx7_DmI0pdf_w2vR_xgMWViL8cqtcEoq_yE0mRD7-5dqvYSf9RPWi_nCTxA18CgBfw_vebtZ0x5xTsKbKsAY0Rbj8BZspqFsHb5V6Va-NAnv-AWzHz2GrK6qCou6rj7bxPFjl2fkpeAGivwI1hYoJn22Fuvst8WnoeDCecdZFxqAcBsE7IEpGpPvS2BQIsRfwuzOFssn3T_3pw86xlu9a8ql3yH1AeQPlS8ccfmBZhB_nKSvPssGSot2IFk3rk8N6wlEdizsCmfp-rgg&h=CXp2oghDQ_JDYQAIfMbjiGcThxgE6eRLGcTjVhtXK58 - cache-control: - - no-cache - content-length: - - '1182' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:22 GMT - etag: - - '"ed00229c-0000-0100-0000-65e97fcb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: ED38FF5642DE4F7EB032BBB924F65257 Ref B: MAA201060513045 Ref C: 2024-03-07T08:50:18Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp update - Connection: - - keep-alive - ParameterSetName: - - -n -g --ue-mtu --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453982224194274&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=pVHhIQKpB1mC9jPjbJFWrECJT8ytfG_mDSTNri7R2tdKTZnayaAb7JYKgHphZOTbswEYU_Qx7_DmI0pdf_w2vR_xgMWViL8cqtcEoq_yE0mRD7-5dqvYSf9RPWi_nCTxA18CgBfw_vebtZ0x5xTsKbKsAY0Rbj8BZspqFsHb5V6Va-NAnv-AWzHz2GrK6qCou6rj7bxPFjl2fkpeAGivwI1hYoJn22Fuvst8WnoeDCecdZFxqAcBsE7IEpGpPvS2BQIsRfwuzOFssn3T_3pw86xlu9a8ql3yH1AeQPlS8ccfmBZhB_nKSvPssGSot2IFk3rk8N6wlEdizsCmfp-rgg&h=CXp2oghDQ_JDYQAIfMbjiGcThxgE6eRLGcTjVhtXK58 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:50:19.2604586Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:22 GMT - etag: - - '"d000254f-0000-0100-0000-65e97fcb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: BA8F581355F3489BAF8429AB82489F00 Ref B: MAA201060513045 Ref C: 2024-03-07T08:50:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp update - Connection: - - keep-alive - ParameterSetName: - - -n -g --ue-mtu --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453982224194274&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=pVHhIQKpB1mC9jPjbJFWrECJT8ytfG_mDSTNri7R2tdKTZnayaAb7JYKgHphZOTbswEYU_Qx7_DmI0pdf_w2vR_xgMWViL8cqtcEoq_yE0mRD7-5dqvYSf9RPWi_nCTxA18CgBfw_vebtZ0x5xTsKbKsAY0Rbj8BZspqFsHb5V6Va-NAnv-AWzHz2GrK6qCou6rj7bxPFjl2fkpeAGivwI1hYoJn22Fuvst8WnoeDCecdZFxqAcBsE7IEpGpPvS2BQIsRfwuzOFssn3T_3pw86xlu9a8ql3yH1AeQPlS8ccfmBZhB_nKSvPssGSot2IFk3rk8N6wlEdizsCmfp-rgg&h=CXp2oghDQ_JDYQAIfMbjiGcThxgE6eRLGcTjVhtXK58 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:50:19.2604586Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:53 GMT - etag: - - '"d000254f-0000-0100-0000-65e97fcb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 07A5D2777E884BEC9F0D7EBA01C69A6B Ref B: MAA201060513045 Ref C: 2024-03-07T08:50:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp update - Connection: - - keep-alive - ParameterSetName: - - -n -g --ue-mtu --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453982224194274&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=pVHhIQKpB1mC9jPjbJFWrECJT8ytfG_mDSTNri7R2tdKTZnayaAb7JYKgHphZOTbswEYU_Qx7_DmI0pdf_w2vR_xgMWViL8cqtcEoq_yE0mRD7-5dqvYSf9RPWi_nCTxA18CgBfw_vebtZ0x5xTsKbKsAY0Rbj8BZspqFsHb5V6Va-NAnv-AWzHz2GrK6qCou6rj7bxPFjl2fkpeAGivwI1hYoJn22Fuvst8WnoeDCecdZFxqAcBsE7IEpGpPvS2BQIsRfwuzOFssn3T_3pw86xlu9a8ql3yH1AeQPlS8ccfmBZhB_nKSvPssGSot2IFk3rk8N6wlEdizsCmfp-rgg&h=CXp2oghDQ_JDYQAIfMbjiGcThxgE6eRLGcTjVhtXK58 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:50:19.2604586Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:51:24 GMT - etag: - - '"d000254f-0000-0100-0000-65e97fcb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: E63D746CF2C5458C8D45266F0CCF92E8 Ref B: MAA201060513045 Ref C: 2024-03-07T08:51:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp update - Connection: - - keep-alive - ParameterSetName: - - -n -g --ue-mtu --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453982224194274&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=pVHhIQKpB1mC9jPjbJFWrECJT8ytfG_mDSTNri7R2tdKTZnayaAb7JYKgHphZOTbswEYU_Qx7_DmI0pdf_w2vR_xgMWViL8cqtcEoq_yE0mRD7-5dqvYSf9RPWi_nCTxA18CgBfw_vebtZ0x5xTsKbKsAY0Rbj8BZspqFsHb5V6Va-NAnv-AWzHz2GrK6qCou6rj7bxPFjl2fkpeAGivwI1hYoJn22Fuvst8WnoeDCecdZFxqAcBsE7IEpGpPvS2BQIsRfwuzOFssn3T_3pw86xlu9a8ql3yH1AeQPlS8ccfmBZhB_nKSvPssGSot2IFk3rk8N6wlEdizsCmfp-rgg&h=CXp2oghDQ_JDYQAIfMbjiGcThxgE6eRLGcTjVhtXK58 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"6cf117a0-e871-4c56-8c06-cbbbdf1c3479*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Succeeded","startTime":"2024-03-07T08:50:19.2604586Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '555' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:36 GMT - etag: - - '"1c00dfc3-0000-0600-0000-65e9800d0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 606B6D7214E9439B842A045E5D56B4F8 Ref B: TYO01EDGE0717 Ref C: 2024-03-07T08:57:36Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp update - Connection: - - keep-alive - ParameterSetName: - - -n -g --ue-mtu --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","name":"pccp_000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:40.8788727Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:50:18.7944512Z"},"properties":{"provisioningState":"Succeeded","installation":{"state":"Uninstalled","reinstallRequired":"NotRequired","reasons":["NoPacketCoreDataPlane"]},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"platform":{"type":"AKS-HCI"},"coreNetworkTechnology":"5GC","controlPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"sku":"G0","ueMtu":1500,"localDiagnosticsAccess":{"authenticationType":"AAD"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1183' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:37 GMT - etag: - - '"ed00a29d-0000-0100-0000-65e9800b0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 2EBCD1B43E424FD7B3ADC641FDBE5537 Ref B: TYO01EDGE0717 Ref C: 2024-03-07T08:57:37Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","name":"pccp_000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:40.8788727Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:50:18.7944512Z"},"properties":{"provisioningState":"Succeeded","installation":{"state":"Uninstalled","reinstallRequired":"NotRequired","reasons":["NoPacketCoreDataPlane"]},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"platform":{"type":"AKS-HCI"},"coreNetworkTechnology":"5GC","controlPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"sku":"G0","ueMtu":1500,"localDiagnosticsAccess":{"authenticationType":"AAD"}}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1195' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - 364ad5b3-ff29-473c-9d02-04a7b4d0d5f2 - - 9e564b63-2204-431e-b2e8-8a892ab848eb - - 2d074afc-fa94-438f-a00f-d45c09c0ff30 - - 38c4ca79-d5d7-457b-80bb-cb70c74a9f71 - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: DA63A4EC05AC46E4811CA6A8F442BF1B Ref B: TYO01EDGE1918 Ref C: 2024-03-07T08:57:39Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","name":"pccp_000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:40.8788727Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:50:18.7944512Z"},"properties":{"provisioningState":"Succeeded","installation":{"state":"Uninstalled","reinstallRequired":"NotRequired","reasons":["NoPacketCoreDataPlane"]},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"platform":{"type":"AKS-HCI"},"coreNetworkTechnology":"5GC","controlPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"sku":"G0","ueMtu":1500,"localDiagnosticsAccess":{"authenticationType":"AAD"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1183' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:43 GMT - etag: - - '"ed00a29d-0000-0100-0000-65e9800b0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 59A86FE0722149DA874C49B16E555A00 Ref B: TYO01EDGE2922 Ref C: 2024-03-07T08:57:43Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp version list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-4-18-0-rc3","name":"pmn-4-18-0-rc3","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2209","maximumPlatformSoftwareVersion":"2212","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-4-18-0","name":"pmn-4-18-0","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2209","maximumPlatformSoftwareVersion":"2212","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2211-0-2","name":"pmn-2211-0-2","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2210","maximumPlatformSoftwareVersion":"2212","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2211-0-3","name":"pmn-2211-0-3","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2210","maximumPlatformSoftwareVersion":"2303","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2301-0-4","name":"pmn-2301-0-4","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2210","maximumPlatformSoftwareVersion":"2304","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2301-0-5","name":"pmn-2301-0-5","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2210","maximumPlatformSoftwareVersion":"2304","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2302-0-2","name":"pmn-2302-0-2","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2301","maximumPlatformSoftwareVersion":"2306","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2303-0-4","name":"pmn-2303-0-4","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2301","maximumPlatformSoftwareVersion":"2306","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2305-0-5","name":"pmn-2305-0-5","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2303","maximumPlatformSoftwareVersion":"2308","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2306-0-5","name":"pmn-2306-0-5","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2303","maximumPlatformSoftwareVersion":"2309","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2307-0-1","name":"pmn-2307-0-1","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Deprecated","minimumPlatformSoftwareVersion":"2303","maximumPlatformSoftwareVersion":"2309","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/2308.0-4","name":"2308.0-4","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Active","minimumPlatformSoftwareVersion":"2303","maximumPlatformSoftwareVersion":"2311","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/2308.0-7","name":"2308.0-7","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Active","minimumPlatformSoftwareVersion":"2303","maximumPlatformSoftwareVersion":"2311","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/2310.0-4","name":"2310.0-4","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Active","minimumPlatformSoftwareVersion":"2309","maximumPlatformSoftwareVersion":"2401","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/2308.0-9","name":"2308.0-9","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Active","minimumPlatformSoftwareVersion":"2303","maximumPlatformSoftwareVersion":"2311","recommendedVersion":"NotRecommended","obsoleteVersion":"Obsolete"}]}},{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/2310.0-8","name":"2310.0-8","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Active","minimumPlatformSoftwareVersion":"2309","maximumPlatformSoftwareVersion":"2401","recommendedVersion":"Recommended","obsoleteVersion":"NotObsolete"}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '6431' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 9177421BFB7B4798A9AFD0AC8D5964D3 Ref B: TYO01EDGE1510 Ref C: 2024-03-07T08:57:44Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp version show - Connection: - - keep-alive - ParameterSetName: - - --version-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2211-0-80?api-version=2023-09-01 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/pmn-2211-0-80","name":"pmn-2211-0-80","type":"Microsoft.MobileNetwork/packetCoreControlPlaneVersions","properties":{"platforms":[{"platformType":"AKS-HCI","versionState":"Preview","minimumPlatformSoftwareVersion":"2210","maximumPlatformSoftwareVersion":"2303","recommendedVersion":"NotRecommended","obsoleteVersion":"NotObsolete"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '406' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D198AA5B54294BC2BB3C1FEB5113A8D3 Ref B: TYO01EDGE3710 Ref C: 2024-03-07T08:57:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453986709314761&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=EKfwxLPjNPINS9JVz7DTWj4HcR7CTzTvgsHMiItT37ptGNbpcnEv9tG9AI_jfUyq-VzvYWOYky4GH0P8VLEz6LKkeutTRwtX9dSno5HUkcBA_UMT3wsFQaFpS0S1udcnqTFJsFAEu8Rc0JU57nDvYcZ_xVMppE6vTWIIfJmIUbhn8B4XWKHWyO9bc41bY_YV7aQ3oemHZ7HJV9_cehiJaXmWy30R13MWSZh2uKXeOZn5LrhmW3w3RwtCbply_dew3ZPurmSI1E89szPPI6xO3Y_ITltc0Q46x_ZZxNHogDGPZYolQocFcImfLmdsOEqzM3-9xjvkEbXJ4P3ODI-Tkw&h=pb9-_xwV7fkI1x4d4WSp-knqjyDmouf-cYwkJ3QRnhI - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:50 GMT - etag: - - '"ed00e4a4-0000-0100-0000-65e9818e0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453986709471022&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=Ugv7Tt1x6arS7Nt54gyvVuYpwFV9Pg_oh9KWOL7xQGJ1gpGfu7i0tGYwSVhvivVyGam6KoyyPXLwwSm_2NixWbNNGPcVICjxPdUohC1ykNHSj3UmZofaSVDl7nq_Hy7bB_8oHtgbJv6KneyUfOzN9E_dWMrUb64ST4tzbPD7T_hrb9GDEqnbcCuhnzGfHrKxI3nLlouNYUi8FsLNi0fBePkaSCqojswJ5N1mqV9ABrlOOt9NbRHTC2PbhgFMhNBRc0J9DODftyp-jcNQV_NzgoxsglxXvY5nAPd0NDAS3hEA6Q1J4Lm-8TcBnNaNjRGZ2P10BhZ68AacE7IZo4or-w&h=7dleRvmGO0dIaQF5Qoa3TqoOToZyTSGqVAxYrIfBsI0 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 531E8DAB1BE84791A91EC21C5E1581D0 Ref B: TYO01EDGE1112 Ref C: 2024-03-07T08:57:49Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453986709314761&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=EKfwxLPjNPINS9JVz7DTWj4HcR7CTzTvgsHMiItT37ptGNbpcnEv9tG9AI_jfUyq-VzvYWOYky4GH0P8VLEz6LKkeutTRwtX9dSno5HUkcBA_UMT3wsFQaFpS0S1udcnqTFJsFAEu8Rc0JU57nDvYcZ_xVMppE6vTWIIfJmIUbhn8B4XWKHWyO9bc41bY_YV7aQ3oemHZ7HJV9_cehiJaXmWy30R13MWSZh2uKXeOZn5LrhmW3w3RwtCbply_dew3ZPurmSI1E89szPPI6xO3Y_ITltc0Q46x_ZZxNHogDGPZYolQocFcImfLmdsOEqzM3-9xjvkEbXJ4P3ODI-Tkw&h=pb9-_xwV7fkI1x4d4WSp-knqjyDmouf-cYwkJ3QRnhI - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Deleting","startTime":"2024-03-07T08:57:50.5605028Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453986715858483&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=SuJ9eaJKPLxcvn7S9SW9y-L6ybLj7zfvIXbA1_pY3BkepT8tFQ6WjOhnSknHGpdv-O56oZ0342RHGetYFfKEqY5YCT6MwKBEeYqphsI63mljOz_h-I_xB-pKefzFI5Q1hZbDJq5jWKjtdZ4jAwjQbe6zAXm9FvUZgrdWBf-iDw88xuDEs13Wi0NDixTpGaAn6nEPJn_Rv_mHxBBJBR8btrRfLGFa147FYDlwdFU8Qg0T2j6DuSmekw4-W9KsgS-Bkrrm8UOtZ7dsmc5q-V_1qRVdzC44iXTkWOdlvrTMsIiykfAZJXE8D93ewlHvvG5KXTZlepfMaUWbZxC_6sKOeg&h=igsKxy3k1Sz5JQJnQbrFhkLpSrJEmbNf_Mu1-a_DJwI - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:51 GMT - etag: - - '"d000635b-0000-0100-0000-65e9818e0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453986716170978&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=n-1LjkMQl_OgTkLGTLJgeBDsRBgMVaWQpv2LYjWPMDzdP2o3xzkG2eoy8sXnzAQi0Hmk2nqINzB23OA-28-zJOzoTbPQ-Nl722napaFxxTsn656FhyeSbVdO-dB0P5Wti2KcH0LGOkLcWP4Lu6K_LitoWomL_zfzN_Tis4T3f8c3bV7m5npZ1SE927acvO5hmb7DS5bKzTTcJzdGzUi-oFC3iEPvUpFl_9QZA2q_GKvdl9yGWltPgrjQNPE9GKB6zb5A5rpNyWhtttTtwdKiiOIG34bG6sHrQrbEEPuGDswu5Leono_J9O77O9jMZ8G7rNHzcfhJTIHlQO-2RvhArQ&h=GEZuJx2fdfqpI-tComTPqHmR0jizXEWqEnlOkki3TK8 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 8F2E542EEBD748BF8DE19F9F578CB5F6 Ref B: TYO01EDGE1112 Ref C: 2024-03-07T08:57:51Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453986709314761&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=EKfwxLPjNPINS9JVz7DTWj4HcR7CTzTvgsHMiItT37ptGNbpcnEv9tG9AI_jfUyq-VzvYWOYky4GH0P8VLEz6LKkeutTRwtX9dSno5HUkcBA_UMT3wsFQaFpS0S1udcnqTFJsFAEu8Rc0JU57nDvYcZ_xVMppE6vTWIIfJmIUbhn8B4XWKHWyO9bc41bY_YV7aQ3oemHZ7HJV9_cehiJaXmWy30R13MWSZh2uKXeOZn5LrhmW3w3RwtCbply_dew3ZPurmSI1E89szPPI6xO3Y_ITltc0Q46x_ZZxNHogDGPZYolQocFcImfLmdsOEqzM3-9xjvkEbXJ4P3ODI-Tkw&h=pb9-_xwV7fkI1x4d4WSp-knqjyDmouf-cYwkJ3QRnhI - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Deleting","startTime":"2024-03-07T08:57:50.5605028Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453987019430009&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=HvniY_6FR8LLCzoGgUbMW_wiuk0l3H7YGLB5GBYTzo-64gHisZ5dNLfA8Xedw42QykSJ-0Mu5HxEn-2rsY_nCPZAWBYchvsKUXKmq0KGeg6D3R40TJ8webmd0tSB741oYTDE2PXBwVWEHd0Qv3_97LR3J0Jnhl2HpMj4mlxDy_XKCYp8c1gfVtnCXgE6jEa1KQGD_RMRrnpF4U62FkTppHS7TB0hzh76uVK2dAIz_C4fyIJtInxC7iVGmRiJHRiFIOMK9dhrFwm2aDgXQNbRBmJLgF8jswhyzXmRPJ_bvUO5R4Q1HEIf48iExP6g4GSH55nTIL_kcAvPSkZZaFtVLQ&h=0A-9ihM-dIvNZRRNobYYGQ6lvUSbnpLEMMSk9v01RdA - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:58:21 GMT - etag: - - '"d000635b-0000-0100-0000-65e9818e0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453987019430009&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=HvniY_6FR8LLCzoGgUbMW_wiuk0l3H7YGLB5GBYTzo-64gHisZ5dNLfA8Xedw42QykSJ-0Mu5HxEn-2rsY_nCPZAWBYchvsKUXKmq0KGeg6D3R40TJ8webmd0tSB741oYTDE2PXBwVWEHd0Qv3_97LR3J0Jnhl2HpMj4mlxDy_XKCYp8c1gfVtnCXgE6jEa1KQGD_RMRrnpF4U62FkTppHS7TB0hzh76uVK2dAIz_C4fyIJtInxC7iVGmRiJHRiFIOMK9dhrFwm2aDgXQNbRBmJLgF8jswhyzXmRPJ_bvUO5R4Q1HEIf48iExP6g4GSH55nTIL_kcAvPSkZZaFtVLQ&h=0A-9ihM-dIvNZRRNobYYGQ6lvUSbnpLEMMSk9v01RdA - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: E54337EE9F284C22A3380DD1B37E967C Ref B: TYO01EDGE1112 Ref C: 2024-03-07T08:58:21Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453986709314761&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=EKfwxLPjNPINS9JVz7DTWj4HcR7CTzTvgsHMiItT37ptGNbpcnEv9tG9AI_jfUyq-VzvYWOYky4GH0P8VLEz6LKkeutTRwtX9dSno5HUkcBA_UMT3wsFQaFpS0S1udcnqTFJsFAEu8Rc0JU57nDvYcZ_xVMppE6vTWIIfJmIUbhn8B4XWKHWyO9bc41bY_YV7aQ3oemHZ7HJV9_cehiJaXmWy30R13MWSZh2uKXeOZn5LrhmW3w3RwtCbply_dew3ZPurmSI1E89szPPI6xO3Y_ITltc0Q46x_ZZxNHogDGPZYolQocFcImfLmdsOEqzM3-9xjvkEbXJ4P3ODI-Tkw&h=pb9-_xwV7fkI1x4d4WSp-knqjyDmouf-cYwkJ3QRnhI - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Deleting","startTime":"2024-03-07T08:57:50.5605028Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453987326201806&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=ikYrlncyxkyJBc613xrhW-jdJP9EmllsBNVg1WeHDrkr8gvjdznp4Ydd73UmyeqBhtOxmoWoN0nICSrCCTctVltbnLM1hzgZovTdmUmNl9jGPIEUz9x4Y_mOO8JixBpu91a_smOosk7kHzmCTKvLMk-lrSCV5g8awmjtOZ9F8hLGmaBJrhJWNUbN9fFG5w6CXLtYjPQ3o9SuXf_NkkyKxNhUiBnic8Q8LA4_Ms05Kd1jQYjl9TOOkSk5zMGqC5FI0uGZ1Y7C3T3Y5hYn1PuZpV16CPbhDq_A5dDZEcVt00bmUubSTJrk8sk_9ysVuqL6MOT3UqfUcWbkf-7L2HV00Q&h=mgUZS7I5AZoVIVENpqfZMoq6CmxmooE3HHZfmX_HLhg - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:58:52 GMT - etag: - - '"d000635b-0000-0100-0000-65e9818e0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453987326201806&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=ikYrlncyxkyJBc613xrhW-jdJP9EmllsBNVg1WeHDrkr8gvjdznp4Ydd73UmyeqBhtOxmoWoN0nICSrCCTctVltbnLM1hzgZovTdmUmNl9jGPIEUz9x4Y_mOO8JixBpu91a_smOosk7kHzmCTKvLMk-lrSCV5g8awmjtOZ9F8hLGmaBJrhJWNUbN9fFG5w6CXLtYjPQ3o9SuXf_NkkyKxNhUiBnic8Q8LA4_Ms05Kd1jQYjl9TOOkSk5zMGqC5FI0uGZ1Y7C3T3Y5hYn1PuZpV16CPbhDq_A5dDZEcVt00bmUubSTJrk8sk_9ysVuqL6MOT3UqfUcWbkf-7L2HV00Q&h=mgUZS7I5AZoVIVENpqfZMoq6CmxmooE3HHZfmX_HLhg - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 1DC3A2E7A279479F860410048C50E435 Ref B: TYO01EDGE1112 Ref C: 2024-03-07T08:58:52Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453986709314761&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=EKfwxLPjNPINS9JVz7DTWj4HcR7CTzTvgsHMiItT37ptGNbpcnEv9tG9AI_jfUyq-VzvYWOYky4GH0P8VLEz6LKkeutTRwtX9dSno5HUkcBA_UMT3wsFQaFpS0S1udcnqTFJsFAEu8Rc0JU57nDvYcZ_xVMppE6vTWIIfJmIUbhn8B4XWKHWyO9bc41bY_YV7aQ3oemHZ7HJV9_cehiJaXmWy30R13MWSZh2uKXeOZn5LrhmW3w3RwtCbply_dew3ZPurmSI1E89szPPI6xO3Y_ITltc0Q46x_ZZxNHogDGPZYolQocFcImfLmdsOEqzM3-9xjvkEbXJ4P3ODI-Tkw&h=pb9-_xwV7fkI1x4d4WSp-knqjyDmouf-cYwkJ3QRnhI - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Succeeded","startTime":"2024-03-07T08:57:50.5605028Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '555' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:59:22 GMT - etag: - - '"1c007dc8-0000-0600-0000-65e981d00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 05F3A13489694D0D98A206237EA30B57 Ref B: TYO01EDGE1112 Ref C: 2024-03-07T08:59:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074?api-version=2023-09-01&t=638453986709471022&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=Ugv7Tt1x6arS7Nt54gyvVuYpwFV9Pg_oh9KWOL7xQGJ1gpGfu7i0tGYwSVhvivVyGam6KoyyPXLwwSm_2NixWbNNGPcVICjxPdUohC1ykNHSj3UmZofaSVDl7nq_Hy7bB_8oHtgbJv6KneyUfOzN9E_dWMrUb64ST4tzbPD7T_hrb9GDEqnbcCuhnzGfHrKxI3nLlouNYUi8FsLNi0fBePkaSCqojswJ5N1mqV9ABrlOOt9NbRHTC2PbhgFMhNBRc0J9DODftyp-jcNQV_NzgoxsglxXvY5nAPd0NDAS3hEA6Q1J4Lm-8TcBnNaNjRGZ2P10BhZ68AacE7IZo4or-w&h=7dleRvmGO0dIaQF5Qoa3TqoOToZyTSGqVAxYrIfBsI0 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","name":"5b78bfa1-8bb6-4560-8c7e-5d5169061ec5*34CC0BAFC78F4B4711FDF127998D0248B4E5CFA58C2496EBF357AD5D6241E074","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Succeeded","startTime":"2024-03-07T08:57:50.5605028Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '555' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:59:23 GMT - etag: - - '"1c007dc8-0000-0600-0000-65e981d00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 0980E5ACE63D4C6BBBB6F46FB1343692 Ref B: TYO01EDGE1112 Ref C: 2024-03-07T08:59:23Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_pcdp.yaml b/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_pcdp.yaml deleted file mode 100644 index 1911c98d0e2..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_pcdp.yaml +++ /dev/null @@ -1,1507 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_pcdp","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '396' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 29951FB0D77348F29C70D30AC5FE7821 Ref B: MAA201060516053 Ref C: 2024-03-07T08:46:55Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"publicLandMobileNetworkIdentifier": - {"mcc": "001", "mnc": "01"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:57.6999963Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:57.6999963Z"},"properties":{"provisioningState":"Accepted","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"187436d3-1b2f-4378-9042-2246242b4919"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/dab94f86-7a84-4a2a-b816-9fa003313fd8*374946908FC5C486EE0B9DC112B5ACAB428EEFFFBAE3A0E9C2BE49BD5035F210?api-version=2023-09-01&t=638453980202468656&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=DCZhJL7-2Mqh8qwsp1xs8xt-GTJhuNwcVcWnBY9kp8PXvGO0ZcVyxUIrVl1VMRJFzijC0t3hoiImqUl1ZryBFoemQMR1lnAur-aa8JGD-__JQFWA-Epqz2qVwV9UNWtkdZf0i4SL2IBfidOUPzAXfs49-F_Te81ZHEoeb4iVkd53tgA7D5v039ADGAkPMe8pQLQcLO4U1Dgc-wwfxpswTopTvnwE6M3KndTGXHJ4L8TH7Cct0XxcgBwL88wIHlZWZleoUYfk33YtFW80YF4ZaRiDgoB-ZkByp_YS5WEiu1CdGky15epzqqngZL8GSkK2hO39BKWRdQntyQFIangucQ&h=zkS76STDr5rY_x7zqZpJgT_2_ad8_H32xntaTL5HWUY - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:00 GMT - etag: - - '"57018e00-0000-0100-0000-65e97f020000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 6B79F61A67F547EBA6195E3F8EC44805 Ref B: MAA201060513037 Ref C: 2024-03-07T08:46:56Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/dab94f86-7a84-4a2a-b816-9fa003313fd8*374946908FC5C486EE0B9DC112B5ACAB428EEFFFBAE3A0E9C2BE49BD5035F210?api-version=2023-09-01&t=638453980202468656&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=DCZhJL7-2Mqh8qwsp1xs8xt-GTJhuNwcVcWnBY9kp8PXvGO0ZcVyxUIrVl1VMRJFzijC0t3hoiImqUl1ZryBFoemQMR1lnAur-aa8JGD-__JQFWA-Epqz2qVwV9UNWtkdZf0i4SL2IBfidOUPzAXfs49-F_Te81ZHEoeb4iVkd53tgA7D5v039ADGAkPMe8pQLQcLO4U1Dgc-wwfxpswTopTvnwE6M3KndTGXHJ4L8TH7Cct0XxcgBwL88wIHlZWZleoUYfk33YtFW80YF4ZaRiDgoB-ZkByp_YS5WEiu1CdGky15epzqqngZL8GSkK2hO39BKWRdQntyQFIangucQ&h=zkS76STDr5rY_x7zqZpJgT_2_ad8_H32xntaTL5HWUY - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/dab94f86-7a84-4a2a-b816-9fa003313fd8*374946908FC5C486EE0B9DC112B5ACAB428EEFFFBAE3A0E9C2BE49BD5035F210","name":"dab94f86-7a84-4a2a-b816-9fa003313fd8*374946908FC5C486EE0B9DC112B5ACAB428EEFFFBAE3A0E9C2BE49BD5035F210","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Succeeded","startTime":"2024-03-07T08:46:58.6643807Z","endTime":"2024-03-07T08:46:59.8095515Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:00 GMT - etag: - - '"d0006449-0000-0100-0000-65e97f030000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 984D37A914B9494DA303C0854D53A178 Ref B: MAA201060513037 Ref C: 2024-03-07T08:47:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:57.6999963Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:57.6999963Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"187436d3-1b2f-4378-9042-2246242b4919"}}' - headers: - cache-control: - - no-cache - content-length: - - '679' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:01 GMT - etag: - - '"5701b100-0000-0100-0000-65e97f030000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 26CE1CD7CE8C465695DB84276E193311 Ref B: MAA201060513037 Ref C: 2024-03-07T08:47:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site create - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_pcdp","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '396' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 36578DF5D95E4925ACEBEE4FD9C57AA5 Ref B: MAA201060514031 Ref C: 2024-03-07T08:47:02Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site create - Connection: - - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","name":"site_000003","type":"microsoft.mobilenetwork/mobilenetworks/sites","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:05.4036374Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:05.4036374Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '580' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:05 GMT - etag: - - '"1c0087ef-0000-0100-0000-65e97f090000"' - expires: - - '-1' - mise-correlation-id: - - 220650cf-e72a-4311-901c-b48ad004ee36 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: F1FBBEB2BCAD4CA9B00F1EAC06101F0E Ref B: MAA201060514051 Ref C: 2024-03-07T08:47:03Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_pcdp","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '396' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E22A08D0053D4490BB5F181E841958E0 Ref B: MAA201060516047 Ref C: 2024-03-07T08:47:07Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"controlPlaneAccessInterface": {"ipv4Address": - "10.28.128.2", "ipv4Gateway": "10.28.128.1", "ipv4Subnet": "10.28.128.0/24", - "name": "N2"}, "coreNetworkTechnology": "5GC", "localDiagnosticsAccess": {"authenticationType": - "AAD"}, "platform": {"type": "AKS-HCI"}, "sites": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}], - "sku": "G0", "ueMtu": 1440}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - Content-Length: - - '535' - Content-Type: - - application/json - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","name":"pccp_000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:09.4086727Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:09.4086727Z"},"properties":{"controlPlaneAccessInterface":{"ipv4Address":"10.28.128.2","ipv4Gateway":"10.28.128.1","ipv4Subnet":"10.28.128.0/24","name":"N2"},"coreNetworkTechnology":"5GC","localDiagnosticsAccess":{"authenticationType":"AAD"},"platform":{"type":"AKS-HCI"},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"sku":"G0","ueMtu":1440,"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250?api-version=2023-09-01&t=638453980313774704&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=SmdemdaXo8OFe1v_m6AV0F2JijFnoeZTqxYOCghs35eiH6-zx4Ny3YXxNNg93HJzbN4Ifn5bT9PyXa712QoqjadwUZU8kM9n6K-mMISArC4xoznAtnqm2In3Isr3CL-q9mRF5fnU-WzcpNHNP0gVhgMljr1xY4K22ZzujTQriOsBRTzvTJKywYFU7JXr-rX8agb329CtFX8cAHqqm7ikraipBRMmWsIkPqZ5F7Rxbsxwdx42seM6aGYB-R_NiaeitASujEhcOQyztJ9xIPiipNgN5LAtMWLlq4I6XuWrs-gYUMNYY_TtAkZc9sh9-kTCOyx91bsQVpBQklpCIsIVQQ&h=Igs_kSmsdqA3Gu259943jiBnDSrDYNPG7gE3fwu9Sdk - cache-control: - - no-cache - content-length: - - '1036' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:10 GMT - etag: - - '"ed00d197-0000-0100-0000-65e97f0e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-msedge-ref: - - 'Ref A: 772783B807254CCD83DD0B93DA6F0067 Ref B: MAA201060514009 Ref C: 2024-03-07T08:47:08Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250?api-version=2023-09-01&t=638453980313774704&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=SmdemdaXo8OFe1v_m6AV0F2JijFnoeZTqxYOCghs35eiH6-zx4Ny3YXxNNg93HJzbN4Ifn5bT9PyXa712QoqjadwUZU8kM9n6K-mMISArC4xoznAtnqm2In3Isr3CL-q9mRF5fnU-WzcpNHNP0gVhgMljr1xY4K22ZzujTQriOsBRTzvTJKywYFU7JXr-rX8agb329CtFX8cAHqqm7ikraipBRMmWsIkPqZ5F7Rxbsxwdx42seM6aGYB-R_NiaeitASujEhcOQyztJ9xIPiipNgN5LAtMWLlq4I6XuWrs-gYUMNYY_TtAkZc9sh9-kTCOyx91bsQVpBQklpCIsIVQQ&h=Igs_kSmsdqA3Gu259943jiBnDSrDYNPG7gE3fwu9Sdk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","name":"81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:47:10.6924503Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:11 GMT - etag: - - '"d000c349-0000-0100-0000-65e97f0e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 8E2FE50DB64D47BA8019FFA80E56CC89 Ref B: MAA201060514009 Ref C: 2024-03-07T08:47:11Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250?api-version=2023-09-01&t=638453980313774704&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=SmdemdaXo8OFe1v_m6AV0F2JijFnoeZTqxYOCghs35eiH6-zx4Ny3YXxNNg93HJzbN4Ifn5bT9PyXa712QoqjadwUZU8kM9n6K-mMISArC4xoznAtnqm2In3Isr3CL-q9mRF5fnU-WzcpNHNP0gVhgMljr1xY4K22ZzujTQriOsBRTzvTJKywYFU7JXr-rX8agb329CtFX8cAHqqm7ikraipBRMmWsIkPqZ5F7Rxbsxwdx42seM6aGYB-R_NiaeitASujEhcOQyztJ9xIPiipNgN5LAtMWLlq4I6XuWrs-gYUMNYY_TtAkZc9sh9-kTCOyx91bsQVpBQklpCIsIVQQ&h=Igs_kSmsdqA3Gu259943jiBnDSrDYNPG7gE3fwu9Sdk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","name":"81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:47:10.6924503Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:41 GMT - etag: - - '"d000c349-0000-0100-0000-65e97f0e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: B8EC4DA5297141DCA1A60154CED00F8C Ref B: MAA201060514009 Ref C: 2024-03-07T08:47:42Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250?api-version=2023-09-01&t=638453980313774704&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=SmdemdaXo8OFe1v_m6AV0F2JijFnoeZTqxYOCghs35eiH6-zx4Ny3YXxNNg93HJzbN4Ifn5bT9PyXa712QoqjadwUZU8kM9n6K-mMISArC4xoznAtnqm2In3Isr3CL-q9mRF5fnU-WzcpNHNP0gVhgMljr1xY4K22ZzujTQriOsBRTzvTJKywYFU7JXr-rX8agb329CtFX8cAHqqm7ikraipBRMmWsIkPqZ5F7Rxbsxwdx42seM6aGYB-R_NiaeitASujEhcOQyztJ9xIPiipNgN5LAtMWLlq4I6XuWrs-gYUMNYY_TtAkZc9sh9-kTCOyx91bsQVpBQklpCIsIVQQ&h=Igs_kSmsdqA3Gu259943jiBnDSrDYNPG7gE3fwu9Sdk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","name":"81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:47:10.6924503Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:13 GMT - etag: - - '"d000c349-0000-0100-0000-65e97f0e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9997' - x-msedge-ref: - - 'Ref A: 55BB1A852B4F42DEBD43C281AFE5A657 Ref B: MAA201060514009 Ref C: 2024-03-07T08:48:12Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250?api-version=2023-09-01&t=638453980313774704&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=SmdemdaXo8OFe1v_m6AV0F2JijFnoeZTqxYOCghs35eiH6-zx4Ny3YXxNNg93HJzbN4Ifn5bT9PyXa712QoqjadwUZU8kM9n6K-mMISArC4xoznAtnqm2In3Isr3CL-q9mRF5fnU-WzcpNHNP0gVhgMljr1xY4K22ZzujTQriOsBRTzvTJKywYFU7JXr-rX8agb329CtFX8cAHqqm7ikraipBRMmWsIkPqZ5F7Rxbsxwdx42seM6aGYB-R_NiaeitASujEhcOQyztJ9xIPiipNgN5LAtMWLlq4I6XuWrs-gYUMNYY_TtAkZc9sh9-kTCOyx91bsQVpBQklpCIsIVQQ&h=Igs_kSmsdqA3Gu259943jiBnDSrDYNPG7gE3fwu9Sdk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","name":"81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:47:10.6924503Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:43 GMT - etag: - - '"d000c349-0000-0100-0000-65e97f0e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 27996A7CE17449F18BF1F140AE4A5A73 Ref B: MAA201060514009 Ref C: 2024-03-07T08:48:44Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250?api-version=2023-09-01&t=638453980313774704&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=SmdemdaXo8OFe1v_m6AV0F2JijFnoeZTqxYOCghs35eiH6-zx4Ny3YXxNNg93HJzbN4Ifn5bT9PyXa712QoqjadwUZU8kM9n6K-mMISArC4xoznAtnqm2In3Isr3CL-q9mRF5fnU-WzcpNHNP0gVhgMljr1xY4K22ZzujTQriOsBRTzvTJKywYFU7JXr-rX8agb329CtFX8cAHqqm7ikraipBRMmWsIkPqZ5F7Rxbsxwdx42seM6aGYB-R_NiaeitASujEhcOQyztJ9xIPiipNgN5LAtMWLlq4I6XuWrs-gYUMNYY_TtAkZc9sh9-kTCOyx91bsQVpBQklpCIsIVQQ&h=Igs_kSmsdqA3Gu259943jiBnDSrDYNPG7gE3fwu9Sdk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","name":"81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Accepted","startTime":"2024-03-07T08:47:10.6924503Z"}' - headers: - cache-control: - - no-cache - content-length: - - '536' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:15 GMT - etag: - - '"d000c349-0000-0100-0000-65e97f0e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 9F60BF7F0E8F42BDB9084A1EA39F7F52 Ref B: MAA201060514009 Ref C: 2024-03-07T08:49:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250?api-version=2023-09-01&t=638453980313774704&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=SmdemdaXo8OFe1v_m6AV0F2JijFnoeZTqxYOCghs35eiH6-zx4Ny3YXxNNg93HJzbN4Ifn5bT9PyXa712QoqjadwUZU8kM9n6K-mMISArC4xoznAtnqm2In3Isr3CL-q9mRF5fnU-WzcpNHNP0gVhgMljr1xY4K22ZzujTQriOsBRTzvTJKywYFU7JXr-rX8agb329CtFX8cAHqqm7ikraipBRMmWsIkPqZ5F7Rxbsxwdx42seM6aGYB-R_NiaeitASujEhcOQyztJ9xIPiipNgN5LAtMWLlq4I6XuWrs-gYUMNYY_TtAkZc9sh9-kTCOyx91bsQVpBQklpCIsIVQQ&h=Igs_kSmsdqA3Gu259943jiBnDSrDYNPG7gE3fwu9Sdk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","name":"81d8aa40-dff1-49f2-aa0e-586776ae47ed*00643A8249E5E2574F65A08DA5D22639EC3F851899635F086E7E7D7A5737B250","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","status":"Succeeded","startTime":"2024-03-07T08:47:10.6924503Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '555' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:46 GMT - etag: - - '"1c0091c1-0000-0600-0000-65e97f8d0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 0CE7458BB09F4688BC8E18AE9E49233E Ref B: MAA201060514009 Ref C: 2024-03-07T08:49:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pccp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --access-interface --local-diagnostics --platform --sites --sku - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004","name":"pccp_000004","type":"microsoft.mobilenetwork/packetcorecontrolplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:09.4086727Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:09.4086727Z"},"properties":{"provisioningState":"Succeeded","installation":{"state":"Uninstalled","reinstallRequired":"NotRequired","reasons":["NoPacketCoreDataPlane"]},"sites":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003"}],"platform":{"type":"AKS-HCI"},"coreNetworkTechnology":"5GC","controlPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"},"sku":"G0","ueMtu":1440,"localDiagnosticsAccess":{"authenticationType":"AAD"}}}' - headers: - cache-control: - - no-cache - content-length: - - '1146' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:47 GMT - etag: - - '"ed005f9a-0000-0100-0000-65e97f7c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F51929301825481191322DF9D94B4B95 Ref B: MAA201060514009 Ref C: 2024-03-07T08:49:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_pcdp","date":"2024-03-07T08:46:52Z","module":"mobile-network","DateCreated":"2024-03-07T08:47:25Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '472' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 21AD9C2D9A8249FEA9F0F1AF852020F6 Ref B: MAA201060513017 Ref C: 2024-03-07T08:49:49Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"userPlaneAccessInterface": {"ipv4Address": - "10.28.128.2", "ipv4Gateway": "10.28.128.1", "ipv4Subnet": "10.28.128.0/24", - "name": "N2"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - Content-Length: - - '174' - Content-Type: - - application/json - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","name":"pcdp_000005","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:49:51.4360235Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:49:51.4360235Z"},"properties":{"userPlaneAccessInterface":{"ipv4Address":"10.28.128.2","ipv4Gateway":"10.28.128.1","ipv4Subnet":"10.28.128.0/24","name":"N2"},"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453981933735672&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=fOXxshN7pi28YfVqqalLEgTsZ7HzVIsrMaHkXV5j_IIuuWleEYGl5m4X6Q3GmQjIsyCcSWnTzQ4XYrKIwWUDEMofwGp7D7ZzPXIXQV1LlrXmuLF_0UsqixrXHkh_P3Dij6q1fwXWqTS_Xalg4q7tsl5d7hEby3r7NUJTzT7P-n4-1G35uH2ix001j7Spr6PT5fcBACJE8qzSFDm9QqyUOl6CqddyPRsbE0uHYuf9yylmjszk4xC22lWLT-0c-U1y56p9MjJ5bdYEM3Rvwt47_Nc8R07higKhElk3CjpWnKj-sP0h0RVoTD3F7fx0GbBZyvMrBqPq2aFtaK1wMbj2Yw&h=iq9BeDPUwqMKZ2rsxZobvKLlZyaTkSr3RTYsZ9XHXQw - cache-control: - - no-cache - content-length: - - '744' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:52 GMT - etag: - - '"21002eba-0000-0100-0000-65e97fb00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: F2D5ADD9E0D44A9299E5DE66283DD812 Ref B: MAA201060514019 Ref C: 2024-03-07T08:49:49Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453981933735672&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=fOXxshN7pi28YfVqqalLEgTsZ7HzVIsrMaHkXV5j_IIuuWleEYGl5m4X6Q3GmQjIsyCcSWnTzQ4XYrKIwWUDEMofwGp7D7ZzPXIXQV1LlrXmuLF_0UsqixrXHkh_P3Dij6q1fwXWqTS_Xalg4q7tsl5d7hEby3r7NUJTzT7P-n4-1G35uH2ix001j7Spr6PT5fcBACJE8qzSFDm9QqyUOl6CqddyPRsbE0uHYuf9yylmjszk4xC22lWLT-0c-U1y56p9MjJ5bdYEM3Rvwt47_Nc8R07higKhElk3CjpWnKj-sP0h0RVoTD3F7fx0GbBZyvMrBqPq2aFtaK1wMbj2Yw&h=iq9BeDPUwqMKZ2rsxZobvKLlZyaTkSr3RTYsZ9XHXQw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","name":"7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","status":"Accepted","startTime":"2024-03-07T08:49:52.6447237Z"}' - headers: - cache-control: - - no-cache - content-length: - - '569' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:53 GMT - etag: - - '"d000674e-0000-0100-0000-65e97fb00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: A959DC7DC09645EEBA0796C44CB3A058 Ref B: MAA201060514019 Ref C: 2024-03-07T08:49:53Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453981933735672&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=fOXxshN7pi28YfVqqalLEgTsZ7HzVIsrMaHkXV5j_IIuuWleEYGl5m4X6Q3GmQjIsyCcSWnTzQ4XYrKIwWUDEMofwGp7D7ZzPXIXQV1LlrXmuLF_0UsqixrXHkh_P3Dij6q1fwXWqTS_Xalg4q7tsl5d7hEby3r7NUJTzT7P-n4-1G35uH2ix001j7Spr6PT5fcBACJE8qzSFDm9QqyUOl6CqddyPRsbE0uHYuf9yylmjszk4xC22lWLT-0c-U1y56p9MjJ5bdYEM3Rvwt47_Nc8R07higKhElk3CjpWnKj-sP0h0RVoTD3F7fx0GbBZyvMrBqPq2aFtaK1wMbj2Yw&h=iq9BeDPUwqMKZ2rsxZobvKLlZyaTkSr3RTYsZ9XHXQw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","name":"7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","status":"Accepted","startTime":"2024-03-07T08:49:52.6447237Z"}' - headers: - cache-control: - - no-cache - content-length: - - '569' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:24 GMT - etag: - - '"d000674e-0000-0100-0000-65e97fb00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 043F97309C224495B7C2A9EFADEDF667 Ref B: MAA201060514019 Ref C: 2024-03-07T08:50:24Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453981933735672&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=fOXxshN7pi28YfVqqalLEgTsZ7HzVIsrMaHkXV5j_IIuuWleEYGl5m4X6Q3GmQjIsyCcSWnTzQ4XYrKIwWUDEMofwGp7D7ZzPXIXQV1LlrXmuLF_0UsqixrXHkh_P3Dij6q1fwXWqTS_Xalg4q7tsl5d7hEby3r7NUJTzT7P-n4-1G35uH2ix001j7Spr6PT5fcBACJE8qzSFDm9QqyUOl6CqddyPRsbE0uHYuf9yylmjszk4xC22lWLT-0c-U1y56p9MjJ5bdYEM3Rvwt47_Nc8R07higKhElk3CjpWnKj-sP0h0RVoTD3F7fx0GbBZyvMrBqPq2aFtaK1wMbj2Yw&h=iq9BeDPUwqMKZ2rsxZobvKLlZyaTkSr3RTYsZ9XHXQw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","name":"7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","status":"Accepted","startTime":"2024-03-07T08:49:52.6447237Z"}' - headers: - cache-control: - - no-cache - content-length: - - '569' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:55 GMT - etag: - - '"d000674e-0000-0100-0000-65e97fb00000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9996' - x-msedge-ref: - - 'Ref A: 379065B67A764C1CA5E2FC5BCA90123B Ref B: MAA201060514019 Ref C: 2024-03-07T08:50:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453981933735672&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=fOXxshN7pi28YfVqqalLEgTsZ7HzVIsrMaHkXV5j_IIuuWleEYGl5m4X6Q3GmQjIsyCcSWnTzQ4XYrKIwWUDEMofwGp7D7ZzPXIXQV1LlrXmuLF_0UsqixrXHkh_P3Dij6q1fwXWqTS_Xalg4q7tsl5d7hEby3r7NUJTzT7P-n4-1G35uH2ix001j7Spr6PT5fcBACJE8qzSFDm9QqyUOl6CqddyPRsbE0uHYuf9yylmjszk4xC22lWLT-0c-U1y56p9MjJ5bdYEM3Rvwt47_Nc8R07higKhElk3CjpWnKj-sP0h0RVoTD3F7fx0GbBZyvMrBqPq2aFtaK1wMbj2Yw&h=iq9BeDPUwqMKZ2rsxZobvKLlZyaTkSr3RTYsZ9XHXQw - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","name":"7ed22e51-86e8-49b0-ba01-acbbf641ae74*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","status":"Succeeded","startTime":"2024-03-07T08:49:52.6447237Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '588' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:51:26 GMT - etag: - - '"1c009bc3-0000-0600-0000-65e97ff30000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 51025CBC74904A04ACD0D8ACC06BA744 Ref B: MAA201060514019 Ref C: 2024-03-07T08:51:25Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp create - Connection: - - keep-alive - ParameterSetName: - - -n -g --pccp-name --access-interface - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","name":"pcdp_000005","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:49:51.4360235Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:49:51.4360235Z"},"properties":{"provisioningState":"Succeeded","userPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"}}}' - headers: - cache-control: - - no-cache - content-length: - - '745' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:56:49 GMT - etag: - - '"21008eba-0000-0100-0000-65e97fe30000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: A04E8838AE1445DB9543CA4660C6F781 Ref B: MAA201060516031 Ref C: 2024-03-07T08:56:49Z' - status: - code: 200 - message: OK -- request: - body: '{"tags": {"tag": "test", "tag2": "test2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp update - Connection: - - keep-alive - Content-Length: - - '42' - Content-Type: - - application/json - ParameterSetName: - - -n -g --pccp-name --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","name":"pcdp_000005","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:49:51.4360235Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:56:51.6598507Z"},"properties":{"provisioningState":"Succeeded","userPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"}}}' - headers: - cache-control: - - no-cache - content-length: - - '782' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:56:55 GMT - etag: - - '"2100efbc-0000-0100-0000-65e981540000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: F511D8E96B364700BBC49976577F9F56 Ref B: MAA201060516011 Ref C: 2024-03-07T08:56:51Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp list - Connection: - - keep-alive - ParameterSetName: - - -g --pccp-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","name":"pcdp_000005","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:49:51.4360235Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:56:51.6598507Z"},"properties":{"provisioningState":"Succeeded","userPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"}}}]}' - headers: - cache-control: - - no-cache - content-length: - - '794' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:56:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 8232CCF59BB74C969F54A6FCEE439B5F Ref B: MAA201060513039 Ref C: 2024-03-07T08:56:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp show - Connection: - - keep-alive - ParameterSetName: - - -g -n --pccp-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","name":"pcdp_000005","type":"microsoft.mobilenetwork/packetcorecontrolplanes/packetcoredataplanes","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:49:51.4360235Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:56:51.6598507Z"},"properties":{"provisioningState":"Succeeded","userPlaneAccessInterface":{"name":"N2","ipv4Address":"10.28.128.2","ipv4Subnet":"10.28.128.0/24","ipv4Gateway":"10.28.128.1"}}}' - headers: - cache-control: - - no-cache - content-length: - - '782' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:56:59 GMT - etag: - - '"2100efbc-0000-0100-0000-65e981540000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: BB80DA892CE74483B2629655BE8DA5EA Ref B: MAA201060516047 Ref C: 2024-03-07T08:56:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --pccp-name -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453986221668373&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gKoLxieLCO8yvX3gOrTHmplyBiutRr0NIGVt48jtNuHecrGeQFYSi87CD82sV6pjYFJ713oPzXLIvgX1JGRjFTsQYuUZS_Ft66-HRvjdenWCf5qrdGvP6LmP1qT6Ggk-OpYdu39XyZ60crz45VAExM5gHE2a9ROUa0XYj61S4LQsnKZCrbsVxu_cztJtFesNoBshtCJqYYkCxTjw-JdHutDu-I2utbbjpyYVia0KbG1DyoSPitkMuA5cNkXiSaBCxMjoByo2pGC6zd_MczCLXF5daynm0JrrqCnUpeXLNdYqiWCpRvDoeCWyoVDi0NOQlnU9LQyXDIzJoX1GaezKXA&h=Ba1cInldTCzNhz4MxyUiZvEsqz5tX6lbs8TDWPCvWes - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:02 GMT - etag: - - '"210001bd-0000-0100-0000-65e9815e0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453986221668373&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gKoLxieLCO8yvX3gOrTHmplyBiutRr0NIGVt48jtNuHecrGeQFYSi87CD82sV6pjYFJ713oPzXLIvgX1JGRjFTsQYuUZS_Ft66-HRvjdenWCf5qrdGvP6LmP1qT6Ggk-OpYdu39XyZ60crz45VAExM5gHE2a9ROUa0XYj61S4LQsnKZCrbsVxu_cztJtFesNoBshtCJqYYkCxTjw-JdHutDu-I2utbbjpyYVia0KbG1DyoSPitkMuA5cNkXiSaBCxMjoByo2pGC6zd_MczCLXF5daynm0JrrqCnUpeXLNdYqiWCpRvDoeCWyoVDi0NOQlnU9LQyXDIzJoX1GaezKXA&h=Ba1cInldTCzNhz4MxyUiZvEsqz5tX6lbs8TDWPCvWes - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 7843A7A4321A49EAB35B4FABA831898D Ref B: MAA201060513019 Ref C: 2024-03-07T08:57:00Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --pccp-name -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453986221668373&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gKoLxieLCO8yvX3gOrTHmplyBiutRr0NIGVt48jtNuHecrGeQFYSi87CD82sV6pjYFJ713oPzXLIvgX1JGRjFTsQYuUZS_Ft66-HRvjdenWCf5qrdGvP6LmP1qT6Ggk-OpYdu39XyZ60crz45VAExM5gHE2a9ROUa0XYj61S4LQsnKZCrbsVxu_cztJtFesNoBshtCJqYYkCxTjw-JdHutDu-I2utbbjpyYVia0KbG1DyoSPitkMuA5cNkXiSaBCxMjoByo2pGC6zd_MczCLXF5daynm0JrrqCnUpeXLNdYqiWCpRvDoeCWyoVDi0NOQlnU9LQyXDIzJoX1GaezKXA&h=Ba1cInldTCzNhz4MxyUiZvEsqz5tX6lbs8TDWPCvWes - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","name":"1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","status":"Deleting","startTime":"2024-03-07T08:57:01.756412Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453986231406286&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=ZrEo7c1uMgKyTcq6ZLb-4CSEOUGKXPWGepDa1uLr8VMTdxPZBmAyfvFw9mOgZPYPavPzhk_nZkflOI1370Ibn7xZGiv-8n6ixhz1EJ7rHC3Mi5MaWJPVujfDJc33rlIhyiLqW_DmGvbGmdcuJ2TbWd3vf5qpmYoduWLLF_mbGVPQI137PZ30QfwOhxU-6NjXZjoEnJHv5XZGY6egnhDvScsAo6w6L6eB7AYyAdEICObZWIKtCaMsYJeGodP0rQlw0WI0KztCkMZ7LHlOGN0j1z8IJBls830w5ajaSyUzJaK0ndJ9vNExPNXWiBGTWoeHczXVyu86k_GD4qGhXKPdVA&h=du5yFNsQTSKWxcC1LPIOlChvCJVjmDvdNXW-lYTwX3I - cache-control: - - no-cache - content-length: - - '568' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:03 GMT - etag: - - '"d000a859-0000-0100-0000-65e9815d0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453986231406286&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=ZrEo7c1uMgKyTcq6ZLb-4CSEOUGKXPWGepDa1uLr8VMTdxPZBmAyfvFw9mOgZPYPavPzhk_nZkflOI1370Ibn7xZGiv-8n6ixhz1EJ7rHC3Mi5MaWJPVujfDJc33rlIhyiLqW_DmGvbGmdcuJ2TbWd3vf5qpmYoduWLLF_mbGVPQI137PZ30QfwOhxU-6NjXZjoEnJHv5XZGY6egnhDvScsAo6w6L6eB7AYyAdEICObZWIKtCaMsYJeGodP0rQlw0WI0KztCkMZ7LHlOGN0j1z8IJBls830w5ajaSyUzJaK0ndJ9vNExPNXWiBGTWoeHczXVyu86k_GD4qGhXKPdVA&h=du5yFNsQTSKWxcC1LPIOlChvCJVjmDvdNXW-lYTwX3I - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 6AB564FD652649279618E3C5F3323DCE Ref B: MAA201060513019 Ref C: 2024-03-07T08:57:02Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --pccp-name -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453986221668373&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gKoLxieLCO8yvX3gOrTHmplyBiutRr0NIGVt48jtNuHecrGeQFYSi87CD82sV6pjYFJ713oPzXLIvgX1JGRjFTsQYuUZS_Ft66-HRvjdenWCf5qrdGvP6LmP1qT6Ggk-OpYdu39XyZ60crz45VAExM5gHE2a9ROUa0XYj61S4LQsnKZCrbsVxu_cztJtFesNoBshtCJqYYkCxTjw-JdHutDu-I2utbbjpyYVia0KbG1DyoSPitkMuA5cNkXiSaBCxMjoByo2pGC6zd_MczCLXF5daynm0JrrqCnUpeXLNdYqiWCpRvDoeCWyoVDi0NOQlnU9LQyXDIzJoX1GaezKXA&h=Ba1cInldTCzNhz4MxyUiZvEsqz5tX6lbs8TDWPCvWes - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","name":"1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","status":"Deleting","startTime":"2024-03-07T08:57:01.756412Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453986735828408&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=U286q0__MG1FJKWRrtDHQ6g5uLvDm2GePz_57wyCbf2YohVP3QmyaqcdMUDtWige6NoSVo2kWYPAAjOX1SRgFj8fEqtmhUktCrLycbahAUx1LwISapBpuVPpnejDoVNICW5Ad2blhupi0ghzmcFKth4x__kwpQU6kZo6O1SY1VJAjdPbLt_kjaGO8BbrtyFbfnZGCIPYpU6-UK4E0mxkhydB68A2-7Oy5jpIHK5s8qa2UgG9Bo4Sodyoz2ekb_xyYAloaTtQg3P1oSWMzNyLnq2GdkZ_bXn__-3za83Ph67A_gXa5ROwNBxYY0z4t4aVzWYnwrdAVQYNkVP_lCFGGg&h=7GTinLRwpb7NM_W9QbsOg8d9Pl5eYGb2dUUSCMjBt68 - cache-control: - - no-cache - content-length: - - '568' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:53 GMT - etag: - - '"d000a859-0000-0100-0000-65e9815d0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453986735985325&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=KCLw2QHUIZ4aYq4DZfGUcuxpEFtKWk8vq08T5qoySReTv2RPMjzfMhioSdPiUZNAX3DBlz7IGOSXVQnKKedGQ-E_PiAI069Ph2PTN1U3yVbjdAKNfOEuN6nQ55jFjm5djsSBeUdo-T7WOBbQH_kzYtaeqSedXq_svwagIkAx47a7o1A1SF576EyWuOuidhB_BJA-GF4-m9kzMHRQ_TilvgeSUlfrtBUw8JiKmqkIkUlcLp6Q7GzcRJfVxCzIPWzFAIVnrr-oXsayX24a5YCPE_J2ox_Zb1eC7b741Vb8XYVtpR_ulNjB3NzJVfSMp2UWrBspkzaQcbr4l3ko1FrjZQ&h=dlKViW4YWInb3Fr6vtQOSDMR05usIi9UTRC9O5OLGhc - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: A2BCF5064EB1405A97AC4E75DCB7D337 Ref B: TYO01EDGE3416 Ref C: 2024-03-07T08:57:52Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --pccp-name -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453986221668373&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gKoLxieLCO8yvX3gOrTHmplyBiutRr0NIGVt48jtNuHecrGeQFYSi87CD82sV6pjYFJ713oPzXLIvgX1JGRjFTsQYuUZS_Ft66-HRvjdenWCf5qrdGvP6LmP1qT6Ggk-OpYdu39XyZ60crz45VAExM5gHE2a9ROUa0XYj61S4LQsnKZCrbsVxu_cztJtFesNoBshtCJqYYkCxTjw-JdHutDu-I2utbbjpyYVia0KbG1DyoSPitkMuA5cNkXiSaBCxMjoByo2pGC6zd_MczCLXF5daynm0JrrqCnUpeXLNdYqiWCpRvDoeCWyoVDi0NOQlnU9LQyXDIzJoX1GaezKXA&h=Ba1cInldTCzNhz4MxyUiZvEsqz5tX6lbs8TDWPCvWes - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","name":"1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","status":"Succeeded","startTime":"2024-03-07T08:57:01.756412Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '587' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:58:23 GMT - etag: - - '"d000005c-0000-0100-0000-65e981a10000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 93EC47DA199A4873A36F9B9C9FC3F5A2 Ref B: TYO01EDGE3416 Ref C: 2024-03-07T08:58:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network pcdp delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --pccp-name -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D?api-version=2023-09-01&t=638453986221668373&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=gKoLxieLCO8yvX3gOrTHmplyBiutRr0NIGVt48jtNuHecrGeQFYSi87CD82sV6pjYFJ713oPzXLIvgX1JGRjFTsQYuUZS_Ft66-HRvjdenWCf5qrdGvP6LmP1qT6Ggk-OpYdu39XyZ60crz45VAExM5gHE2a9ROUa0XYj61S4LQsnKZCrbsVxu_cztJtFesNoBshtCJqYYkCxTjw-JdHutDu-I2utbbjpyYVia0KbG1DyoSPitkMuA5cNkXiSaBCxMjoByo2pGC6zd_MczCLXF5daynm0JrrqCnUpeXLNdYqiWCpRvDoeCWyoVDi0NOQlnU9LQyXDIzJoX1GaezKXA&h=Ba1cInldTCzNhz4MxyUiZvEsqz5tX6lbs8TDWPCvWes - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","name":"1f1d98ec-00a6-4986-ae56-0d95e9a64ddf*3002F9DC31B788BB5EFB3433CED32234B71118E8419A494B8621F8C8F53F465D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/pccp_000004/packetCoreDataPlanes/pcdp_000005","status":"Succeeded","startTime":"2024-03-07T08:57:01.756412Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '587' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:58:24 GMT - etag: - - '"d000005c-0000-0100-0000-65e981a10000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: C63253D8C41947E68F02F3176C4814F1 Ref B: TYO01EDGE3416 Ref C: 2024-03-07T08:58:24Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_service.yaml b/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_service.yaml deleted file mode 100644 index 747db20b4e1..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_service.yaml +++ /dev/null @@ -1,1251 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_service","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '399' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 960663FCF8AA411E92542171C722593B Ref B: MAA201060516053 Ref C: 2024-03-07T08:46:55Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"publicLandMobileNetworkIdentifier": - {"mcc": "001", "mnc": "01"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:57.8004044Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:57.8004044Z"},"properties":{"provisioningState":"Accepted","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"283f7f00-a79a-46a5-b2e8-1760e0aa486b"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/d3cb2b7b-b1c3-43bd-992a-8017f1d5a4ff*9D061CACEDD27B8035B045D5B00B93A112B904047C2FC48E87A6A16FB8AE0D08?api-version=2023-09-01&t=638453980192691137&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=PdhdE9AjuFWiPvShA7XGRcxZIA_Y7DRNwdw7ic60Csm6FktvBPsC-91qZC0pqLPnp1dtKJc35Ozg1lrZEP_2alkUxvQgz0Q8VfM_3EC8qf2rlE0JuWR3khAmpJ_bU3TctkKDIxegXjtZi5osWS4OnTqK67xvtSgx4BcAH1Qn-FGt08d5q7Wpzqkz9SYJBTIiCpnDB6tltw7TMzON5diabUIupp2rTbp4WyvsGlu6eWkNhEVIV6bWtGb0uitYaJQfrqeSZK2tMsayvdGSpLiv517BUpK9uort14FMn4-wBr9x_mG_-_pzQpWU4HvUVGitiu7-C4ZpyocEU0_iM7wu7g&h=gDXnhuaK9FLwO-z3XizRRYFpLi-KZopn6-Jsw8iTe8s - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:58 GMT - etag: - - '"57018300-0000-0100-0000-65e97f020000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: F4FFB21DE8B34C2090CFCE937C32EA3F Ref B: MAA201060514039 Ref C: 2024-03-07T08:46:56Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/d3cb2b7b-b1c3-43bd-992a-8017f1d5a4ff*9D061CACEDD27B8035B045D5B00B93A112B904047C2FC48E87A6A16FB8AE0D08?api-version=2023-09-01&t=638453980192691137&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=PdhdE9AjuFWiPvShA7XGRcxZIA_Y7DRNwdw7ic60Csm6FktvBPsC-91qZC0pqLPnp1dtKJc35Ozg1lrZEP_2alkUxvQgz0Q8VfM_3EC8qf2rlE0JuWR3khAmpJ_bU3TctkKDIxegXjtZi5osWS4OnTqK67xvtSgx4BcAH1Qn-FGt08d5q7Wpzqkz9SYJBTIiCpnDB6tltw7TMzON5diabUIupp2rTbp4WyvsGlu6eWkNhEVIV6bWtGb0uitYaJQfrqeSZK2tMsayvdGSpLiv517BUpK9uort14FMn4-wBr9x_mG_-_pzQpWU4HvUVGitiu7-C4ZpyocEU0_iM7wu7g&h=gDXnhuaK9FLwO-z3XizRRYFpLi-KZopn6-Jsw8iTe8s - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/d3cb2b7b-b1c3-43bd-992a-8017f1d5a4ff*9D061CACEDD27B8035B045D5B00B93A112B904047C2FC48E87A6A16FB8AE0D08","name":"d3cb2b7b-b1c3-43bd-992a-8017f1d5a4ff*9D061CACEDD27B8035B045D5B00B93A112B904047C2FC48E87A6A16FB8AE0D08","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:58.4935239Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:58 GMT - etag: - - '"d0005849-0000-0100-0000-65e97f020000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 9A95732C677A40448DCF81CAB82500C4 Ref B: MAA201060514039 Ref C: 2024-03-07T08:46:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/d3cb2b7b-b1c3-43bd-992a-8017f1d5a4ff*9D061CACEDD27B8035B045D5B00B93A112B904047C2FC48E87A6A16FB8AE0D08?api-version=2023-09-01&t=638453980192691137&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=PdhdE9AjuFWiPvShA7XGRcxZIA_Y7DRNwdw7ic60Csm6FktvBPsC-91qZC0pqLPnp1dtKJc35Ozg1lrZEP_2alkUxvQgz0Q8VfM_3EC8qf2rlE0JuWR3khAmpJ_bU3TctkKDIxegXjtZi5osWS4OnTqK67xvtSgx4BcAH1Qn-FGt08d5q7Wpzqkz9SYJBTIiCpnDB6tltw7TMzON5diabUIupp2rTbp4WyvsGlu6eWkNhEVIV6bWtGb0uitYaJQfrqeSZK2tMsayvdGSpLiv517BUpK9uort14FMn4-wBr9x_mG_-_pzQpWU4HvUVGitiu7-C4ZpyocEU0_iM7wu7g&h=gDXnhuaK9FLwO-z3XizRRYFpLi-KZopn6-Jsw8iTe8s - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/d3cb2b7b-b1c3-43bd-992a-8017f1d5a4ff*9D061CACEDD27B8035B045D5B00B93A112B904047C2FC48E87A6A16FB8AE0D08","name":"d3cb2b7b-b1c3-43bd-992a-8017f1d5a4ff*9D061CACEDD27B8035B045D5B00B93A112B904047C2FC48E87A6A16FB8AE0D08","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:58.4935239Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:29 GMT - etag: - - '"d0005849-0000-0100-0000-65e97f020000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 44889BAFAC1F435D9C5F9AC7EB3884F8 Ref B: MAA201060514039 Ref C: 2024-03-07T08:47:29Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/d3cb2b7b-b1c3-43bd-992a-8017f1d5a4ff*9D061CACEDD27B8035B045D5B00B93A112B904047C2FC48E87A6A16FB8AE0D08?api-version=2023-09-01&t=638453980192691137&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=PdhdE9AjuFWiPvShA7XGRcxZIA_Y7DRNwdw7ic60Csm6FktvBPsC-91qZC0pqLPnp1dtKJc35Ozg1lrZEP_2alkUxvQgz0Q8VfM_3EC8qf2rlE0JuWR3khAmpJ_bU3TctkKDIxegXjtZi5osWS4OnTqK67xvtSgx4BcAH1Qn-FGt08d5q7Wpzqkz9SYJBTIiCpnDB6tltw7TMzON5diabUIupp2rTbp4WyvsGlu6eWkNhEVIV6bWtGb0uitYaJQfrqeSZK2tMsayvdGSpLiv517BUpK9uort14FMn4-wBr9x_mG_-_pzQpWU4HvUVGitiu7-C4ZpyocEU0_iM7wu7g&h=gDXnhuaK9FLwO-z3XizRRYFpLi-KZopn6-Jsw8iTe8s - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/d3cb2b7b-b1c3-43bd-992a-8017f1d5a4ff*9D061CACEDD27B8035B045D5B00B93A112B904047C2FC48E87A6A16FB8AE0D08","name":"d3cb2b7b-b1c3-43bd-992a-8017f1d5a4ff*9D061CACEDD27B8035B045D5B00B93A112B904047C2FC48E87A6A16FB8AE0D08","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Succeeded","startTime":"2024-03-07T08:46:58.4935239Z","endTime":"2024-03-07T08:47:54.8255353Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:00 GMT - etag: - - '"d000064b-0000-0100-0000-65e97f3a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 160B737415A1481B993A79893C71AE36 Ref B: MAA201060514039 Ref C: 2024-03-07T08:48:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:57.8004044Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:57.8004044Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"283f7f00-a79a-46a5-b2e8-1760e0aa486b"}}' - headers: - cache-control: - - no-cache - content-length: - - '679' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:01 GMT - etag: - - '"57013309-0000-0100-0000-65e97f3a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 8665973990F8460C83FE0032F3E286A7 Ref B: MAA201060514039 Ref C: 2024-03-07T08:48:01Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name --pcc-rules --service-precedence - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_service","date":"2024-03-07T08:46:52Z","module":"mobile-network","DateCreated":"2024-03-07T08:47:09Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '475' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C5888F66540C4F9FB7A189A9E5D97F17 Ref B: MAA201060514029 Ref C: 2024-03-07T08:48:03Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"pccRules": [{"ruleName": "default-rule", - "rulePrecedence": 10, "serviceDataFlowTemplates": [{"direction": "Uplink", "protocol": - ["ip"], "remoteIpList": ["10.3.4.0/24"], "templateName": "IP-to-server"}]}], - "servicePrecedence": 10}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service create - Connection: - - keep-alive - Content-Length: - - '269' - Content-Type: - - application/json - ParameterSetName: - - -n -g --mobile-network-name --pcc-rules --service-precedence - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","name":"ser000003","type":"microsoft.mobilenetwork/mobilenetworks/services","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:05.5132193Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:05.5132193Z"},"properties":{"pccRules":[{"ruleName":"default-rule","rulePrecedence":10,"serviceDataFlowTemplates":[{"direction":"Uplink","protocol":["ip"],"remoteIpList":["10.3.4.0/24"],"templateName":"IP-to-server"}]}],"servicePrecedence":10,"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453980874507294&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=o10wbyrGRVPcsS4dAHCq3z6otMtse5kUzEJlo-B-nYFQUkNJFbbPqHORu6fxXG57xYChEuZjCqqf0M6PYCK2MJrS_TgrH4Ll2_x82d4zuLHacmxFNPheqPx6Qrzxh2tkWM8zZdsUguKCRGwkAgn2019MYcMDvMSbQhWhE1pWGPOvGFyQtmoP27thhMY9qsk-QWZq6wOoS4-V_a7duPJW9Re5wxIij_DmTr1iIq3H1epmlegtzSEpBikqU9cOo2-CsvLkr1VcEa5Dq6fHfJsAuLMz3BrYNuh6W0gpeGvBsDH3L-az2-Ni-pSym0OZSyoLoGWuaU9miF5_irpcdMNuSw&h=vX_SWzC-me_7MUaByda5LAtv-JV_HX3VWj7Nv452Qws - cache-control: - - no-cache - content-length: - - '796' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:06 GMT - etag: - - '"1502cd25-0000-0100-0000-65e97f470000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: A62813E135C04FD397C56E8DFF3AC5FA Ref B: MAA201060516009 Ref C: 2024-03-07T08:48:03Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name --pcc-rules --service-precedence - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453980874507294&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=o10wbyrGRVPcsS4dAHCq3z6otMtse5kUzEJlo-B-nYFQUkNJFbbPqHORu6fxXG57xYChEuZjCqqf0M6PYCK2MJrS_TgrH4Ll2_x82d4zuLHacmxFNPheqPx6Qrzxh2tkWM8zZdsUguKCRGwkAgn2019MYcMDvMSbQhWhE1pWGPOvGFyQtmoP27thhMY9qsk-QWZq6wOoS4-V_a7duPJW9Re5wxIij_DmTr1iIq3H1epmlegtzSEpBikqU9cOo2-CsvLkr1VcEa5Dq6fHfJsAuLMz3BrYNuh6W0gpeGvBsDH3L-az2-Ni-pSym0OZSyoLoGWuaU9miF5_irpcdMNuSw&h=vX_SWzC-me_7MUaByda5LAtv-JV_HX3VWj7Nv452Qws - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","name":"bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","status":"Accepted","startTime":"2024-03-07T08:48:06.6926087Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:07 GMT - etag: - - '"d000524b-0000-0100-0000-65e97f460000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 5D584BB709DB4413887841D6D3D9DC57 Ref B: MAA201060516009 Ref C: 2024-03-07T08:48:07Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name --pcc-rules --service-precedence - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453980874507294&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=o10wbyrGRVPcsS4dAHCq3z6otMtse5kUzEJlo-B-nYFQUkNJFbbPqHORu6fxXG57xYChEuZjCqqf0M6PYCK2MJrS_TgrH4Ll2_x82d4zuLHacmxFNPheqPx6Qrzxh2tkWM8zZdsUguKCRGwkAgn2019MYcMDvMSbQhWhE1pWGPOvGFyQtmoP27thhMY9qsk-QWZq6wOoS4-V_a7duPJW9Re5wxIij_DmTr1iIq3H1epmlegtzSEpBikqU9cOo2-CsvLkr1VcEa5Dq6fHfJsAuLMz3BrYNuh6W0gpeGvBsDH3L-az2-Ni-pSym0OZSyoLoGWuaU9miF5_irpcdMNuSw&h=vX_SWzC-me_7MUaByda5LAtv-JV_HX3VWj7Nv452Qws - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","name":"bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","status":"Accepted","startTime":"2024-03-07T08:48:06.6926087Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:38 GMT - etag: - - '"d000524b-0000-0100-0000-65e97f460000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: C6E270C8BDC6482DBC819AA8EDD33432 Ref B: MAA201060516009 Ref C: 2024-03-07T08:48:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name --pcc-rules --service-precedence - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453980874507294&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=o10wbyrGRVPcsS4dAHCq3z6otMtse5kUzEJlo-B-nYFQUkNJFbbPqHORu6fxXG57xYChEuZjCqqf0M6PYCK2MJrS_TgrH4Ll2_x82d4zuLHacmxFNPheqPx6Qrzxh2tkWM8zZdsUguKCRGwkAgn2019MYcMDvMSbQhWhE1pWGPOvGFyQtmoP27thhMY9qsk-QWZq6wOoS4-V_a7duPJW9Re5wxIij_DmTr1iIq3H1epmlegtzSEpBikqU9cOo2-CsvLkr1VcEa5Dq6fHfJsAuLMz3BrYNuh6W0gpeGvBsDH3L-az2-Ni-pSym0OZSyoLoGWuaU9miF5_irpcdMNuSw&h=vX_SWzC-me_7MUaByda5LAtv-JV_HX3VWj7Nv452Qws - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","name":"bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","status":"Accepted","startTime":"2024-03-07T08:48:06.6926087Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:09 GMT - etag: - - '"d000524b-0000-0100-0000-65e97f460000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9997' - x-msedge-ref: - - 'Ref A: 2DD71E7B97A2419E99197D99735B1450 Ref B: MAA201060516009 Ref C: 2024-03-07T08:49:09Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name --pcc-rules --service-precedence - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453980874507294&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=o10wbyrGRVPcsS4dAHCq3z6otMtse5kUzEJlo-B-nYFQUkNJFbbPqHORu6fxXG57xYChEuZjCqqf0M6PYCK2MJrS_TgrH4Ll2_x82d4zuLHacmxFNPheqPx6Qrzxh2tkWM8zZdsUguKCRGwkAgn2019MYcMDvMSbQhWhE1pWGPOvGFyQtmoP27thhMY9qsk-QWZq6wOoS4-V_a7duPJW9Re5wxIij_DmTr1iIq3H1epmlegtzSEpBikqU9cOo2-CsvLkr1VcEa5Dq6fHfJsAuLMz3BrYNuh6W0gpeGvBsDH3L-az2-Ni-pSym0OZSyoLoGWuaU9miF5_irpcdMNuSw&h=vX_SWzC-me_7MUaByda5LAtv-JV_HX3VWj7Nv452Qws - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","name":"bbe0b602-eb3e-4d8f-94fb-35237f6b8705*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","status":"Succeeded","startTime":"2024-03-07T08:48:06.6926087Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:39 GMT - etag: - - '"1c008ac1-0000-0600-0000-65e97f890000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 87816383AEA54AF8B6EB8EFD16C38E0E Ref B: MAA201060516009 Ref C: 2024-03-07T08:49:40Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network-name --pcc-rules --service-precedence - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","name":"ser000003","type":"microsoft.mobilenetwork/mobilenetworks/services","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:05.5132193Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:05.5132193Z"},"properties":{"provisioningState":"Succeeded","servicePrecedence":10,"pccRules":[{"ruleName":"default-rule","rulePrecedence":10,"serviceDataFlowTemplates":[{"templateName":"IP-to-server","direction":"Uplink","protocol":["ip"],"remoteIpList":["10.3.4.0/24"]}]}]}}' - headers: - cache-control: - - no-cache - content-length: - - '797' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:40 GMT - etag: - - '"15027726-0000-0100-0000-65e97f4f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 8F31B034D9FE4FF4A6EE73FF9CD32A93 Ref B: MAA201060516009 Ref C: 2024-03-07T08:49:40Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -g -n --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","name":"ser000003","type":"microsoft.mobilenetwork/mobilenetworks/services","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:05.5132193Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:05.5132193Z"},"properties":{"provisioningState":"Succeeded","servicePrecedence":10,"pccRules":[{"ruleName":"default-rule","rulePrecedence":10,"serviceDataFlowTemplates":[{"templateName":"IP-to-server","direction":"Uplink","protocol":["ip"],"remoteIpList":["10.3.4.0/24"]}]}]}}' - headers: - cache-control: - - no-cache - content-length: - - '797' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:42 GMT - etag: - - '"15027726-0000-0100-0000-65e97f4f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 0528A85D659944A284BD28263FFA6017 Ref B: MAA201060515027 Ref C: 2024-03-07T08:49:42Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"pccRules": [{"ruleName": "default-rule", - "rulePrecedence": 10, "serviceDataFlowTemplates": [{"direction": "Uplink", "protocol": - ["ip"], "remoteIpList": ["10.3.4.0/24"], "templateName": "IP-to-server"}]}], - "servicePrecedence": 10}, "tags": {"tag": "test", "tag2": "test2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service update - Connection: - - keep-alive - Content-Length: - - '311' - Content-Type: - - application/json - ParameterSetName: - - --mobile-network-name -g -n --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","name":"ser000003","type":"microsoft.mobilenetwork/mobilenetworks/services","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:05.5132193Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:49:43.7915021Z"},"properties":{"provisioningState":"Accepted","pccRules":[{"ruleName":"default-rule","rulePrecedence":10,"serviceDataFlowTemplates":[{"direction":"Uplink","protocol":["ip"],"remoteIpList":["10.3.4.0/24"],"templateName":"IP-to-server"}]}],"servicePrecedence":10}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453981866195759&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=fdeYA2czr-5s1nRVQAyJI1lw3ac7ca3WP4hY64VB1MBncOEo54DIyMIVGVhEEJfF5ps6e6jSTD-0AWWa48ZKaaaA3e-jukEPtPVwnxbN0WJnljJqOSzCnUFeY28o5KB5iE099VDnfJ4_8Y7vhJQAlj0fKfnmwdI-zFrk0YrLW6NNLikt3aYELEq1qbbYYrBtk8nRS_Dq_ZwTOI_-M1Sg1R8vll47MN46kiLRO9Mb6KbUbJ9FHA06x_mX0sWh4zMqfLjjfZEatq5quBcO9NXtCsOy2xpHGekObfbpw6T96UH5ehK_TSN4O-PaEfhguN28wl9GnlmVZKq4rPFmqyXB2Q&h=8JAy7qDpuU1i9eHsTXjmK8fh53fQMY4SFlQcKajd-QQ - cache-control: - - no-cache - content-length: - - '833' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:46 GMT - etag: - - '"1502fc2a-0000-0100-0000-65e97fa80000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: A17C7A38E9E94F1B98ADD4A9AEC92DE4 Ref B: MAA201060515027 Ref C: 2024-03-07T08:49:43Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -g -n --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453981866195759&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=fdeYA2czr-5s1nRVQAyJI1lw3ac7ca3WP4hY64VB1MBncOEo54DIyMIVGVhEEJfF5ps6e6jSTD-0AWWa48ZKaaaA3e-jukEPtPVwnxbN0WJnljJqOSzCnUFeY28o5KB5iE099VDnfJ4_8Y7vhJQAlj0fKfnmwdI-zFrk0YrLW6NNLikt3aYELEq1qbbYYrBtk8nRS_Dq_ZwTOI_-M1Sg1R8vll47MN46kiLRO9Mb6KbUbJ9FHA06x_mX0sWh4zMqfLjjfZEatq5quBcO9NXtCsOy2xpHGekObfbpw6T96UH5ehK_TSN4O-PaEfhguN28wl9GnlmVZKq4rPFmqyXB2Q&h=8JAy7qDpuU1i9eHsTXjmK8fh53fQMY4SFlQcKajd-QQ - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","name":"f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","status":"Accepted","startTime":"2024-03-07T08:49:44.2654912Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:47 GMT - etag: - - '"d000344e-0000-0100-0000-65e97fa80000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: EE73AAE9088A42DF82875E74BAAC229D Ref B: MAA201060515027 Ref C: 2024-03-07T08:49:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -g -n --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453981866195759&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=fdeYA2czr-5s1nRVQAyJI1lw3ac7ca3WP4hY64VB1MBncOEo54DIyMIVGVhEEJfF5ps6e6jSTD-0AWWa48ZKaaaA3e-jukEPtPVwnxbN0WJnljJqOSzCnUFeY28o5KB5iE099VDnfJ4_8Y7vhJQAlj0fKfnmwdI-zFrk0YrLW6NNLikt3aYELEq1qbbYYrBtk8nRS_Dq_ZwTOI_-M1Sg1R8vll47MN46kiLRO9Mb6KbUbJ9FHA06x_mX0sWh4zMqfLjjfZEatq5quBcO9NXtCsOy2xpHGekObfbpw6T96UH5ehK_TSN4O-PaEfhguN28wl9GnlmVZKq4rPFmqyXB2Q&h=8JAy7qDpuU1i9eHsTXjmK8fh53fQMY4SFlQcKajd-QQ - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","name":"f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","status":"Accepted","startTime":"2024-03-07T08:49:44.2654912Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:18 GMT - etag: - - '"d000344e-0000-0100-0000-65e97fa80000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 0EDFD5D1A72546EDBD667C42E3AA7849 Ref B: MAA201060515027 Ref C: 2024-03-07T08:50:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -g -n --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453981866195759&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=fdeYA2czr-5s1nRVQAyJI1lw3ac7ca3WP4hY64VB1MBncOEo54DIyMIVGVhEEJfF5ps6e6jSTD-0AWWa48ZKaaaA3e-jukEPtPVwnxbN0WJnljJqOSzCnUFeY28o5KB5iE099VDnfJ4_8Y7vhJQAlj0fKfnmwdI-zFrk0YrLW6NNLikt3aYELEq1qbbYYrBtk8nRS_Dq_ZwTOI_-M1Sg1R8vll47MN46kiLRO9Mb6KbUbJ9FHA06x_mX0sWh4zMqfLjjfZEatq5quBcO9NXtCsOy2xpHGekObfbpw6T96UH5ehK_TSN4O-PaEfhguN28wl9GnlmVZKq4rPFmqyXB2Q&h=8JAy7qDpuU1i9eHsTXjmK8fh53fQMY4SFlQcKajd-QQ - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","name":"f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","status":"Accepted","startTime":"2024-03-07T08:49:44.2654912Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:48 GMT - etag: - - '"d000344e-0000-0100-0000-65e97fa80000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 12115A027BD944C3B20E7469D536929F Ref B: MAA201060515027 Ref C: 2024-03-07T08:50:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -g -n --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453981866195759&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=fdeYA2czr-5s1nRVQAyJI1lw3ac7ca3WP4hY64VB1MBncOEo54DIyMIVGVhEEJfF5ps6e6jSTD-0AWWa48ZKaaaA3e-jukEPtPVwnxbN0WJnljJqOSzCnUFeY28o5KB5iE099VDnfJ4_8Y7vhJQAlj0fKfnmwdI-zFrk0YrLW6NNLikt3aYELEq1qbbYYrBtk8nRS_Dq_ZwTOI_-M1Sg1R8vll47MN46kiLRO9Mb6KbUbJ9FHA06x_mX0sWh4zMqfLjjfZEatq5quBcO9NXtCsOy2xpHGekObfbpw6T96UH5ehK_TSN4O-PaEfhguN28wl9GnlmVZKq4rPFmqyXB2Q&h=8JAy7qDpuU1i9eHsTXjmK8fh53fQMY4SFlQcKajd-QQ - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","name":"f78c45a0-e851-4dfc-8212-0b4f491aaa27*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","status":"Succeeded","startTime":"2024-03-07T08:49:44.2654912Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:51:19 GMT - etag: - - '"1c0086c3-0000-0600-0000-65e97feb0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9997' - x-msedge-ref: - - 'Ref A: 6AE58951926F456CAF2245A3F84706C8 Ref B: MAA201060515027 Ref C: 2024-03-07T08:51:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -g -n --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","name":"ser000003","type":"microsoft.mobilenetwork/mobilenetworks/services","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:05.5132193Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:49:43.7915021Z"},"properties":{"provisioningState":"Succeeded","servicePrecedence":10,"pccRules":[{"ruleName":"default-rule","rulePrecedence":10,"serviceDataFlowTemplates":[{"templateName":"IP-to-server","direction":"Uplink","protocol":["ip"],"remoteIpList":["10.3.4.0/24"]}]}]}}' - headers: - cache-control: - - no-cache - content-length: - - '834' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:51:20 GMT - etag: - - '"1502de2b-0000-0100-0000-65e97fb90000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D383637289554D47AB5DAD4B559D0908 Ref B: MAA201060515027 Ref C: 2024-03-07T08:51:19Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service list - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","name":"ser000003","type":"microsoft.mobilenetwork/mobilenetworks/services","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:05.5132193Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:49:43.7915021Z"},"properties":{"provisioningState":"Succeeded","servicePrecedence":10,"pccRules":[{"ruleName":"default-rule","rulePrecedence":10,"serviceDataFlowTemplates":[{"templateName":"IP-to-server","direction":"Uplink","protocol":["ip"],"remoteIpList":["10.3.4.0/24"]}]}]}}]}' - headers: - cache-control: - - no-cache - content-length: - - '846' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:51:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: B79BD60A82034AD3877F79B0CAD5DC48 Ref B: MAA201060516023 Ref C: 2024-03-07T08:51:21Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service show - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","name":"ser000003","type":"microsoft.mobilenetwork/mobilenetworks/services","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:05.5132193Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:49:43.7915021Z"},"properties":{"provisioningState":"Succeeded","servicePrecedence":10,"pccRules":[{"ruleName":"default-rule","rulePrecedence":10,"serviceDataFlowTemplates":[{"templateName":"IP-to-server","direction":"Uplink","protocol":["ip"],"remoteIpList":["10.3.4.0/24"]}]}]}}' - headers: - cache-control: - - no-cache - content-length: - - '834' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:51:24 GMT - etag: - - '"1502de2b-0000-0100-0000-65e97fb90000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 0137AFA81C4D47C894C61D2BB1FCD23A Ref B: MAA201060514047 Ref C: 2024-03-07T08:51:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/31af1d70-b8ef-48ef-8549-9467ee063f99*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453982874532060&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Lqh9K1XzQPMM14mFXmlCRNzIBfz-JCUSpsiyf3ez-ULaPVYLgqZMUBEBgGMJoxSJW9ayKboxnFbzCNxhOsPOQpZXtqHqnSFGwmN_1Y3tFx-NMOkrO_Xi9XVs2w-iUt5u7nprJLMM-Nz_7gCYZULL5m2DekR6EgHAfZ6yDCDmgPGga8WSwPlvn-Q-CjlMpMjQZ-Fj2CxgTtSAlBF1clW6PGsnC68udCIDBWltS59In57w9GLKzPqPlpiRaP-dO2cy04FyRATVLMCeqwr-e9LhcGZVjgp-RNOqunl7aNbfsOXGO2oC1YzC9PRG3evJJTZ2fIAMu9xUHDrQwWqDzfcmag&h=MhwUKjNrhMA5D05SSCG191TDY-YEeVaTfgOuyUfFCsE - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:51:26 GMT - etag: - - '"15023330-0000-0100-0000-65e9800f0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/31af1d70-b8ef-48ef-8549-9467ee063f99*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453982874532060&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Lqh9K1XzQPMM14mFXmlCRNzIBfz-JCUSpsiyf3ez-ULaPVYLgqZMUBEBgGMJoxSJW9ayKboxnFbzCNxhOsPOQpZXtqHqnSFGwmN_1Y3tFx-NMOkrO_Xi9XVs2w-iUt5u7nprJLMM-Nz_7gCYZULL5m2DekR6EgHAfZ6yDCDmgPGga8WSwPlvn-Q-CjlMpMjQZ-Fj2CxgTtSAlBF1clW6PGsnC68udCIDBWltS59In57w9GLKzPqPlpiRaP-dO2cy04FyRATVLMCeqwr-e9LhcGZVjgp-RNOqunl7aNbfsOXGO2oC1YzC9PRG3evJJTZ2fIAMu9xUHDrQwWqDzfcmag&h=MhwUKjNrhMA5D05SSCG191TDY-YEeVaTfgOuyUfFCsE - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 72278BD521684115B78224809CDE5DE9 Ref B: MAA201060515053 Ref C: 2024-03-07T08:51:25Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service delete - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/31af1d70-b8ef-48ef-8549-9467ee063f99*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453982874532060&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Lqh9K1XzQPMM14mFXmlCRNzIBfz-JCUSpsiyf3ez-ULaPVYLgqZMUBEBgGMJoxSJW9ayKboxnFbzCNxhOsPOQpZXtqHqnSFGwmN_1Y3tFx-NMOkrO_Xi9XVs2w-iUt5u7nprJLMM-Nz_7gCYZULL5m2DekR6EgHAfZ6yDCDmgPGga8WSwPlvn-Q-CjlMpMjQZ-Fj2CxgTtSAlBF1clW6PGsnC68udCIDBWltS59In57w9GLKzPqPlpiRaP-dO2cy04FyRATVLMCeqwr-e9LhcGZVjgp-RNOqunl7aNbfsOXGO2oC1YzC9PRG3evJJTZ2fIAMu9xUHDrQwWqDzfcmag&h=MhwUKjNrhMA5D05SSCG191TDY-YEeVaTfgOuyUfFCsE - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/31af1d70-b8ef-48ef-8549-9467ee063f99*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","name":"31af1d70-b8ef-48ef-8549-9467ee063f99*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","status":"Succeeded","startTime":"2024-03-07T08:51:27.0309784Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:56:49 GMT - etag: - - '"1c00b4c4-0000-0600-0000-65e980510000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: C7FAA1A22D9A49C69D5EE9D72C4585E4 Ref B: MAA201060516049 Ref C: 2024-03-07T08:56:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network service delete - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/31af1d70-b8ef-48ef-8549-9467ee063f99*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510?api-version=2023-09-01&t=638453982874532060&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Lqh9K1XzQPMM14mFXmlCRNzIBfz-JCUSpsiyf3ez-ULaPVYLgqZMUBEBgGMJoxSJW9ayKboxnFbzCNxhOsPOQpZXtqHqnSFGwmN_1Y3tFx-NMOkrO_Xi9XVs2w-iUt5u7nprJLMM-Nz_7gCYZULL5m2DekR6EgHAfZ6yDCDmgPGga8WSwPlvn-Q-CjlMpMjQZ-Fj2CxgTtSAlBF1clW6PGsnC68udCIDBWltS59In57w9GLKzPqPlpiRaP-dO2cy04FyRATVLMCeqwr-e9LhcGZVjgp-RNOqunl7aNbfsOXGO2oC1YzC9PRG3evJJTZ2fIAMu9xUHDrQwWqDzfcmag&h=MhwUKjNrhMA5D05SSCG191TDY-YEeVaTfgOuyUfFCsE - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/31af1d70-b8ef-48ef-8549-9467ee063f99*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","name":"31af1d70-b8ef-48ef-8549-9467ee063f99*CFA64D63BE5596A228AF50344C0A105850FBC2A594ADBAE403D77134373DB510","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/services/ser000003","status":"Succeeded","startTime":"2024-03-07T08:51:27.0309784Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:56:49 GMT - etag: - - '"1c00b4c4-0000-0600-0000-65e980510000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: EE8C35DB989A48E4B7CFB0B881D47069 Ref B: MAA201060516049 Ref C: 2024-03-07T08:56:49Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_sim.yaml b/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_sim.yaml deleted file mode 100644 index df85ed86bcb..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_sim.yaml +++ /dev/null @@ -1,1876 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_sim","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '395' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2919CF7CD5B547BC843104ABC4AAFD2C Ref B: MAA201060514027 Ref C: 2024-03-07T08:46:55Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"publicLandMobileNetworkIdentifier": - {"mcc": "001", "mnc": "01"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:57.7202464Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:57.7202464Z"},"properties":{"provisioningState":"Accepted","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"17c94fdc-6d79-40d8-8f94-4838bea4d0ed"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924?api-version=2023-09-01&t=638453980195171490&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=euhBBndVvxwpJiTxZy8yahCJvZkXFr3XiJfAXvcOHDhfHjHqsL_y3DdbNI37QUFAzCFMdA4Ve5RpzuoKyLoiGKMayg0oJL2H-LFYl0TRsNy6H2ldd-a01-XJ8uCSVnw3O6NmhZrCS7oowGAwWXxIT0UhKpLzikrmHaS1YVUvMTVxnyaQgW0_lE6tTcjYQCKoGHw5ZuZxkGm8OBUACGqWvr6RAEbbsH_8lQigfu_4AKDFX59743WMDjAUyZevKXZoS0WKMlv73VGGzrgN2Cq8tCOCnfo9g7Jie9k1qVszQDlz0OerYNULdXIuLRFd6B1J8sHOFMbSlsw5JUAS7JWdkQ&h=EIuC56OyfGWkj40wpqYMI94AdYQsOjtFY5t1EmWuoug - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:59 GMT - etag: - - '"57019000-0000-0100-0000-65e97f020000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 09F4FB12D3E848318F88CE6CB5CA84D9 Ref B: MAA201060513051 Ref C: 2024-03-07T08:46:56Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924?api-version=2023-09-01&t=638453980195171490&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=euhBBndVvxwpJiTxZy8yahCJvZkXFr3XiJfAXvcOHDhfHjHqsL_y3DdbNI37QUFAzCFMdA4Ve5RpzuoKyLoiGKMayg0oJL2H-LFYl0TRsNy6H2ldd-a01-XJ8uCSVnw3O6NmhZrCS7oowGAwWXxIT0UhKpLzikrmHaS1YVUvMTVxnyaQgW0_lE6tTcjYQCKoGHw5ZuZxkGm8OBUACGqWvr6RAEbbsH_8lQigfu_4AKDFX59743WMDjAUyZevKXZoS0WKMlv73VGGzrgN2Cq8tCOCnfo9g7Jie9k1qVszQDlz0OerYNULdXIuLRFd6B1J8sHOFMbSlsw5JUAS7JWdkQ&h=EIuC56OyfGWkj40wpqYMI94AdYQsOjtFY5t1EmWuoug - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924","name":"61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:58.6466764Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:00 GMT - etag: - - '"d0005a49-0000-0100-0000-65e97f020000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D6C6BB0EAB4D426496D6DDC03BECB927 Ref B: MAA201060513051 Ref C: 2024-03-07T08:46:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924?api-version=2023-09-01&t=638453980195171490&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=euhBBndVvxwpJiTxZy8yahCJvZkXFr3XiJfAXvcOHDhfHjHqsL_y3DdbNI37QUFAzCFMdA4Ve5RpzuoKyLoiGKMayg0oJL2H-LFYl0TRsNy6H2ldd-a01-XJ8uCSVnw3O6NmhZrCS7oowGAwWXxIT0UhKpLzikrmHaS1YVUvMTVxnyaQgW0_lE6tTcjYQCKoGHw5ZuZxkGm8OBUACGqWvr6RAEbbsH_8lQigfu_4AKDFX59743WMDjAUyZevKXZoS0WKMlv73VGGzrgN2Cq8tCOCnfo9g7Jie9k1qVszQDlz0OerYNULdXIuLRFd6B1J8sHOFMbSlsw5JUAS7JWdkQ&h=EIuC56OyfGWkj40wpqYMI94AdYQsOjtFY5t1EmWuoug - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924","name":"61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:58.6466764Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:30 GMT - etag: - - '"d0005a49-0000-0100-0000-65e97f020000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 0B37310591B14662B669D5EFDF34C90C Ref B: MAA201060513051 Ref C: 2024-03-07T08:47:30Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924?api-version=2023-09-01&t=638453980195171490&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=euhBBndVvxwpJiTxZy8yahCJvZkXFr3XiJfAXvcOHDhfHjHqsL_y3DdbNI37QUFAzCFMdA4Ve5RpzuoKyLoiGKMayg0oJL2H-LFYl0TRsNy6H2ldd-a01-XJ8uCSVnw3O6NmhZrCS7oowGAwWXxIT0UhKpLzikrmHaS1YVUvMTVxnyaQgW0_lE6tTcjYQCKoGHw5ZuZxkGm8OBUACGqWvr6RAEbbsH_8lQigfu_4AKDFX59743WMDjAUyZevKXZoS0WKMlv73VGGzrgN2Cq8tCOCnfo9g7Jie9k1qVszQDlz0OerYNULdXIuLRFd6B1J8sHOFMbSlsw5JUAS7JWdkQ&h=EIuC56OyfGWkj40wpqYMI94AdYQsOjtFY5t1EmWuoug - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924","name":"61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:58.6466764Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:01 GMT - etag: - - '"d0005a49-0000-0100-0000-65e97f020000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 3BB124F20F424F639106AC34C80F8A6D Ref B: MAA201060513051 Ref C: 2024-03-07T08:48:01Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924?api-version=2023-09-01&t=638453980195171490&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=euhBBndVvxwpJiTxZy8yahCJvZkXFr3XiJfAXvcOHDhfHjHqsL_y3DdbNI37QUFAzCFMdA4Ve5RpzuoKyLoiGKMayg0oJL2H-LFYl0TRsNy6H2ldd-a01-XJ8uCSVnw3O6NmhZrCS7oowGAwWXxIT0UhKpLzikrmHaS1YVUvMTVxnyaQgW0_lE6tTcjYQCKoGHw5ZuZxkGm8OBUACGqWvr6RAEbbsH_8lQigfu_4AKDFX59743WMDjAUyZevKXZoS0WKMlv73VGGzrgN2Cq8tCOCnfo9g7Jie9k1qVszQDlz0OerYNULdXIuLRFd6B1J8sHOFMbSlsw5JUAS7JWdkQ&h=EIuC56OyfGWkj40wpqYMI94AdYQsOjtFY5t1EmWuoug - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924","name":"61e1b050-6654-4b33-95e2-7250b3a89627*6A3E8DD19CAD31B05B5A5E7B61957C1BB823299313FF4C16A56FFBC5B048F924","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Succeeded","startTime":"2024-03-07T08:46:58.6466764Z","endTime":"2024-03-07T08:48:14.8182768Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:32 GMT - etag: - - '"d0009c4b-0000-0100-0000-65e97f4e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 882D90FFF7C94F399E3CC424D520B759 Ref B: MAA201060513051 Ref C: 2024-03-07T08:48:32Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:57.7202464Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:57.7202464Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"17c94fdc-6d79-40d8-8f94-4838bea4d0ed"}}' - headers: - cache-control: - - no-cache - content-length: - - '679' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:33 GMT - etag: - - '"57015f0c-0000-0100-0000-65e97f4e0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 0EE41FF3D599430FBF1D11E81E558923 Ref B: MAA201060513051 Ref C: 2024-03-07T08:48:33Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_sim","date":"2024-03-07T08:46:52Z","module":"mobile-network","DateCreated":"2024-03-07T08:47:12Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '471' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 332001D795844C82A77305A90936D3D0 Ref B: MAA201060514053 Ref C: 2024-03-07T08:48:34Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"mobileNetwork": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - Content-Length: - - '234' - Content-Type: - - application/json - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","name":"simgroup000003","type":"microsoft.mobilenetwork/simgroups","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:36.5242099Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:36.5242099Z"},"properties":{"mobileNetwork":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"},"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453981185398221&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=lH3mvOO8DdgfnqLUVlDq5qhP_jhdsqdGb2ssKxyj_8Xi7nJbOG1oxIdIVeost7e78pnjH0odyMq-X_sblL4CZTlVWg-Y1XI0WEH3D7A8L-Y0wdvg0SCcGyABc4UdF0hHt3EiQAiZJgMH0Khz7OFzbcouJKxtjUCyfF-S9qfgSplO6QzyBqDwljTqnkj9GGdkOaJOuJ1A_yh1n8WJjtE7C7YBciQEmWFN6gTfoV_p8WVNKREMqUpJObDNIrPVRUvt_nT09Cyqletk92bvxsHyatQ_sItTtiCRY9A6RFWwuy2INtLaxGmSB8uAhEDcdf1rTH07eWwE3chgFIptFwQwtA&h=L34CxnPOnyrm9bZRPITyTX42cz8TfzkZnDLF4VljR4k - cache-control: - - no-cache - content-length: - - '734' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:38 GMT - etag: - - '"4f05c18a-0000-0100-0000-65e97f660000"' - expires: - - '-1' - mise-correlation-id: - - 63e6a2a9-fc2a-44c9-9aab-06aff1626359 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 969FA532A1F9411F9628CA44DCF79BE2 Ref B: MAA201060513017 Ref C: 2024-03-07T08:48:35Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453981185398221&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=lH3mvOO8DdgfnqLUVlDq5qhP_jhdsqdGb2ssKxyj_8Xi7nJbOG1oxIdIVeost7e78pnjH0odyMq-X_sblL4CZTlVWg-Y1XI0WEH3D7A8L-Y0wdvg0SCcGyABc4UdF0hHt3EiQAiZJgMH0Khz7OFzbcouJKxtjUCyfF-S9qfgSplO6QzyBqDwljTqnkj9GGdkOaJOuJ1A_yh1n8WJjtE7C7YBciQEmWFN6gTfoV_p8WVNKREMqUpJObDNIrPVRUvt_nT09Cyqletk92bvxsHyatQ_sItTtiCRY9A6RFWwuy2INtLaxGmSB8uAhEDcdf1rTH07eWwE3chgFIptFwQwtA&h=L34CxnPOnyrm9bZRPITyTX42cz8TfzkZnDLF4VljR4k - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T08:48:37.7077655Z"}' - headers: - cache-control: - - no-cache - content-length: - - '525' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:38 GMT - etag: - - '"d000664c-0000-0100-0000-65e97f650000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 87CF50AB53BF475EB26D4F662ABCC256 Ref B: MAA201060513017 Ref C: 2024-03-07T08:48:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453981185398221&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=lH3mvOO8DdgfnqLUVlDq5qhP_jhdsqdGb2ssKxyj_8Xi7nJbOG1oxIdIVeost7e78pnjH0odyMq-X_sblL4CZTlVWg-Y1XI0WEH3D7A8L-Y0wdvg0SCcGyABc4UdF0hHt3EiQAiZJgMH0Khz7OFzbcouJKxtjUCyfF-S9qfgSplO6QzyBqDwljTqnkj9GGdkOaJOuJ1A_yh1n8WJjtE7C7YBciQEmWFN6gTfoV_p8WVNKREMqUpJObDNIrPVRUvt_nT09Cyqletk92bvxsHyatQ_sItTtiCRY9A6RFWwuy2INtLaxGmSB8uAhEDcdf1rTH07eWwE3chgFIptFwQwtA&h=L34CxnPOnyrm9bZRPITyTX42cz8TfzkZnDLF4VljR4k - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T08:48:37.7077655Z"}' - headers: - cache-control: - - no-cache - content-length: - - '525' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:09 GMT - etag: - - '"d000664c-0000-0100-0000-65e97f650000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 4151B8F3D92244E9B5CC678213BF8E4B Ref B: MAA201060513017 Ref C: 2024-03-07T08:49:09Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453981185398221&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=lH3mvOO8DdgfnqLUVlDq5qhP_jhdsqdGb2ssKxyj_8Xi7nJbOG1oxIdIVeost7e78pnjH0odyMq-X_sblL4CZTlVWg-Y1XI0WEH3D7A8L-Y0wdvg0SCcGyABc4UdF0hHt3EiQAiZJgMH0Khz7OFzbcouJKxtjUCyfF-S9qfgSplO6QzyBqDwljTqnkj9GGdkOaJOuJ1A_yh1n8WJjtE7C7YBciQEmWFN6gTfoV_p8WVNKREMqUpJObDNIrPVRUvt_nT09Cyqletk92bvxsHyatQ_sItTtiCRY9A6RFWwuy2INtLaxGmSB8uAhEDcdf1rTH07eWwE3chgFIptFwQwtA&h=L34CxnPOnyrm9bZRPITyTX42cz8TfzkZnDLF4VljR4k - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T08:48:37.7077655Z"}' - headers: - cache-control: - - no-cache - content-length: - - '525' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:40 GMT - etag: - - '"d000664c-0000-0100-0000-65e97f650000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F6AB973D7E604E02A905CFEF214D6B9A Ref B: MAA201060513017 Ref C: 2024-03-07T08:49:39Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453981185398221&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=lH3mvOO8DdgfnqLUVlDq5qhP_jhdsqdGb2ssKxyj_8Xi7nJbOG1oxIdIVeost7e78pnjH0odyMq-X_sblL4CZTlVWg-Y1XI0WEH3D7A8L-Y0wdvg0SCcGyABc4UdF0hHt3EiQAiZJgMH0Khz7OFzbcouJKxtjUCyfF-S9qfgSplO6QzyBqDwljTqnkj9GGdkOaJOuJ1A_yh1n8WJjtE7C7YBciQEmWFN6gTfoV_p8WVNKREMqUpJObDNIrPVRUvt_nT09Cyqletk92bvxsHyatQ_sItTtiCRY9A6RFWwuy2INtLaxGmSB8uAhEDcdf1rTH07eWwE3chgFIptFwQwtA&h=L34CxnPOnyrm9bZRPITyTX42cz8TfzkZnDLF4VljR4k - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"2ef4a78f-b796-4be8-ab42-233eb54c2245*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T08:48:37.7077655Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '544' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:10 GMT - etag: - - '"1c0010c2-0000-0600-0000-65e97fa80000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: CE6090C540AE4F4DA0CF1E2BAD2D9264 Ref B: MAA201060513017 Ref C: 2024-03-07T08:50:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group create - Connection: - - keep-alive - ParameterSetName: - - -n -g --mobile-network - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","name":"simgroup000003","type":"microsoft.mobilenetwork/simgroups","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:36.5242099Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:36.5242099Z"},"properties":{"provisioningState":"Succeeded","mobileNetwork":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"}}}' - headers: - cache-control: - - no-cache - content-length: - - '735' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:11 GMT - etag: - - '"4f05948b-0000-0100-0000-65e97f6f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 2F1F03EC52194F3C8F988A718AA4CA54 Ref B: MAA201060513017 Ref C: 2024-03-07T08:50:11Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group update - Connection: - - keep-alive - ParameterSetName: - - -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","name":"simgroup000003","type":"microsoft.mobilenetwork/simgroups","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:36.5242099Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:48:36.5242099Z"},"properties":{"provisioningState":"Succeeded","mobileNetwork":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"}}}' - headers: - cache-control: - - no-cache - content-length: - - '735' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:12 GMT - etag: - - '"4f05948b-0000-0100-0000-65e97f6f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 31FA6B5E6858497AA7F064F40161646B Ref B: MAA201060515039 Ref C: 2024-03-07T08:50:12Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"mobileNetwork": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"}}, - "tags": {"tag": "test", "tag2": "test2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group update - Connection: - - keep-alive - Content-Length: - - '276' - Content-Type: - - application/json - ParameterSetName: - - -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","name":"simgroup000003","type":"microsoft.mobilenetwork/simgroups","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:36.5242099Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:50:14.0789423Z"},"properties":{"provisioningState":"Accepted","mobileNetwork":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453982167196131&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Qa6xV6IFvcfXCcwOfPOdEiKiJ6pow8HYZkV9AviBbSmoeuYZ7vMPk0flL9j1lnSG5DqaGRN68yOsiNRJSU2SofS8qIYaTAz-BNe7icqmN6TaTWNmsmkZlk6lQ9_D_qSPBTQ9pcudjA-xvPl02qcu9RkIae4UML64Xr6nMsaOiw2Xj8f8ZlkX72Ffdvm9SXG_C_jTGAAPxx_xg2BU8Ry1hpf_nqX1eaCESIffp-NZYQ9sQD58tLFGN5egZuGvsl8R6hNtqsVxYX50_ZlMeiiymc9w0uLQ9hmj4PoixxbXuyrBCBatx7azsiO1sOca5_sRJwzOD5haAexMilW4TFZVKQ&h=XkotYWSzO9rdNbV7kTUBC3RoXDOSAH2m_me6K7nTz5g - cache-control: - - no-cache - content-length: - - '771' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:16 GMT - etag: - - '"4f05b992-0000-0100-0000-65e97fc70000"' - expires: - - '-1' - mise-correlation-id: - - 0b0a9b13-5f2b-46f1-8b83-3abe4fef850f - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: B9BB642C8F034664AF079015D7EC5D66 Ref B: MAA201060515039 Ref C: 2024-03-07T08:50:13Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group update - Connection: - - keep-alive - ParameterSetName: - - -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453982167196131&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Qa6xV6IFvcfXCcwOfPOdEiKiJ6pow8HYZkV9AviBbSmoeuYZ7vMPk0flL9j1lnSG5DqaGRN68yOsiNRJSU2SofS8qIYaTAz-BNe7icqmN6TaTWNmsmkZlk6lQ9_D_qSPBTQ9pcudjA-xvPl02qcu9RkIae4UML64Xr6nMsaOiw2Xj8f8ZlkX72Ffdvm9SXG_C_jTGAAPxx_xg2BU8Ry1hpf_nqX1eaCESIffp-NZYQ9sQD58tLFGN5egZuGvsl8R6hNtqsVxYX50_ZlMeiiymc9w0uLQ9hmj4PoixxbXuyrBCBatx7azsiO1sOca5_sRJwzOD5haAexMilW4TFZVKQ&h=XkotYWSzO9rdNbV7kTUBC3RoXDOSAH2m_me6K7nTz5g - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T08:50:15.1538966Z"}' - headers: - cache-control: - - no-cache - content-length: - - '525' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:17 GMT - etag: - - '"d000044f-0000-0100-0000-65e97fc70000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: B8EEE15CB8714E489523B39240276D68 Ref B: MAA201060515039 Ref C: 2024-03-07T08:50:16Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group update - Connection: - - keep-alive - ParameterSetName: - - -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453982167196131&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Qa6xV6IFvcfXCcwOfPOdEiKiJ6pow8HYZkV9AviBbSmoeuYZ7vMPk0flL9j1lnSG5DqaGRN68yOsiNRJSU2SofS8qIYaTAz-BNe7icqmN6TaTWNmsmkZlk6lQ9_D_qSPBTQ9pcudjA-xvPl02qcu9RkIae4UML64Xr6nMsaOiw2Xj8f8ZlkX72Ffdvm9SXG_C_jTGAAPxx_xg2BU8Ry1hpf_nqX1eaCESIffp-NZYQ9sQD58tLFGN5egZuGvsl8R6hNtqsVxYX50_ZlMeiiymc9w0uLQ9hmj4PoixxbXuyrBCBatx7azsiO1sOca5_sRJwzOD5haAexMilW4TFZVKQ&h=XkotYWSzO9rdNbV7kTUBC3RoXDOSAH2m_me6K7nTz5g - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T08:50:15.1538966Z"}' - headers: - cache-control: - - no-cache - content-length: - - '525' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:47 GMT - etag: - - '"d000044f-0000-0100-0000-65e97fc70000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9997' - x-msedge-ref: - - 'Ref A: 9949D43D90D54314940BB7C10664B76D Ref B: MAA201060515039 Ref C: 2024-03-07T08:50:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group update - Connection: - - keep-alive - ParameterSetName: - - -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453982167196131&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Qa6xV6IFvcfXCcwOfPOdEiKiJ6pow8HYZkV9AviBbSmoeuYZ7vMPk0flL9j1lnSG5DqaGRN68yOsiNRJSU2SofS8qIYaTAz-BNe7icqmN6TaTWNmsmkZlk6lQ9_D_qSPBTQ9pcudjA-xvPl02qcu9RkIae4UML64Xr6nMsaOiw2Xj8f8ZlkX72Ffdvm9SXG_C_jTGAAPxx_xg2BU8Ry1hpf_nqX1eaCESIffp-NZYQ9sQD58tLFGN5egZuGvsl8R6hNtqsVxYX50_ZlMeiiymc9w0uLQ9hmj4PoixxbXuyrBCBatx7azsiO1sOca5_sRJwzOD5haAexMilW4TFZVKQ&h=XkotYWSzO9rdNbV7kTUBC3RoXDOSAH2m_me6K7nTz5g - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Accepted","startTime":"2024-03-07T08:50:15.1538966Z"}' - headers: - cache-control: - - no-cache - content-length: - - '525' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:51:17 GMT - etag: - - '"d000044f-0000-0100-0000-65e97fc70000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: BDAB45066E6B412383207FD52F3A2AA3 Ref B: MAA201060515039 Ref C: 2024-03-07T08:51:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group update - Connection: - - keep-alive - ParameterSetName: - - -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453982167196131&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=Qa6xV6IFvcfXCcwOfPOdEiKiJ6pow8HYZkV9AviBbSmoeuYZ7vMPk0flL9j1lnSG5DqaGRN68yOsiNRJSU2SofS8qIYaTAz-BNe7icqmN6TaTWNmsmkZlk6lQ9_D_qSPBTQ9pcudjA-xvPl02qcu9RkIae4UML64Xr6nMsaOiw2Xj8f8ZlkX72Ffdvm9SXG_C_jTGAAPxx_xg2BU8Ry1hpf_nqX1eaCESIffp-NZYQ9sQD58tLFGN5egZuGvsl8R6hNtqsVxYX50_ZlMeiiymc9w0uLQ9hmj4PoixxbXuyrBCBatx7azsiO1sOca5_sRJwzOD5haAexMilW4TFZVKQ&h=XkotYWSzO9rdNbV7kTUBC3RoXDOSAH2m_me6K7nTz5g - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"f9c1f32a-fb26-4cc9-ac79-cedb24836fc4*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T08:50:15.1538966Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '544' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:31 GMT - etag: - - '"1c00d5c3-0000-0600-0000-65e980090000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 9328FFFFD3FD4E3A983B6E0773990485 Ref B: TYO01EDGE3915 Ref C: 2024-03-07T08:57:30Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group update - Connection: - - keep-alive - ParameterSetName: - - -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","name":"simgroup000003","type":"microsoft.mobilenetwork/simgroups","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:36.5242099Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:50:14.0789423Z"},"properties":{"provisioningState":"Succeeded","mobileNetwork":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"}}}' - headers: - cache-control: - - no-cache - content-length: - - '772' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:32 GMT - etag: - - '"4f053b93-0000-0100-0000-65e97fce0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 4D45D936E27C4475A83C127C05A871E5 Ref B: TYO01EDGE3915 Ref C: 2024-03-07T08:57:31Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","name":"simgroup000003","type":"microsoft.mobilenetwork/simgroups","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:36.5242099Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:50:14.0789423Z"},"properties":{"provisioningState":"Succeeded","mobileNetwork":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"}}}]}' - headers: - cache-control: - - no-cache - content-length: - - '784' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - e3856dc4-0c81-4958-9eca-0c5b58913942 - - dbad4b5e-7c0d-469a-bdb9-e218e9c9c1e3 - - de019069-6011-4355-ad98-5c861ad89884 - - bec56ab7-bfad-4cef-bcd2-85505cf15ab5 - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: FB598FC87DA3462487016296B998E0F2 Ref B: TYO01EDGE3722 Ref C: 2024-03-07T08:57:33Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","name":"simgroup000003","type":"microsoft.mobilenetwork/simgroups","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:48:36.5242099Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:50:14.0789423Z"},"properties":{"provisioningState":"Succeeded","mobileNetwork":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002"}}}' - headers: - cache-control: - - no-cache - content-length: - - '772' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:35 GMT - etag: - - '"4f053b93-0000-0100-0000-65e97fce0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 8C103CB3D3DF40CA9AB964696EFC099D Ref B: TYO01EDGE3422 Ref C: 2024-03-07T08:57:35Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"authenticationKey": "00000000000000000000000000000000", - "internationalMobileSubscriberIdentity": "0000000000", "operatorKeyCode": "00000000000000000000000000000000"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim create - Connection: - - keep-alive - Content-Length: - - '183' - Content-Type: - - application/json - ParameterSetName: - - -g --sim-group-name -n --international-msi --operator-key-code --authentication-key - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004","name":"sim000004","type":"microsoft.mobilenetwork/simgroups/sims","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:57:37.0581177Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:57:37.0581177Z"},"properties":{"provisioningState":"Accepted","simState":"Disabled","internationalMobileSubscriberIdentity":"0000000000"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/fbe9077b-a9a1-4cec-8e90-13624f78d1c0*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54?api-version=2023-09-01&t=638453986580893626&c=MIIHADCCBeigAwIBAgITHgPpxUXboRMa1MKXpgAAA-nFRTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMTMxMDEyODE0WhcNMjUwMTI1MDEyODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALigL_YnYGZkISCK9BFT_dzpf963u9bRlY_IhMLl8TQ-WhRb_jA3SHowq9D2t_7jJQKGI6GCCp7rr_bZzTa8pQN0C79lTnY73uIO4_vOTLEbO-r_WF4dIaOg1uhvkHUiwSieW1h1jjj7k_SIuMHohy7tAM8iZ7-ZfFZtnQlOn2e3i4JeBaiEwNF6m94GOMe29LMbaearVgY8Q9dpoqHRILM6oc_lOriZ7rsNAjKOxUZcp1Fo9palZ-3PsJ20ivSPfnC4uawbHqM6z14aGUgr9gJQWitq-3CYzqxU1A3majqauDuR74sxRgfJpBe8xHH2ykGfx9eRrJVbo9gtcbtMplUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQPt2y76WhKhKfsmhaKSl6_-ABVUzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKfiXIDVAa163uWLQJ_KFJsJINDdJsPSYCj10C9FzlRIDm8NLFTcqHUht2yzNYw9sA0XiYBlshas0NHr_NjnK0vPf1AFoIyNw9OdZs75NKY4kH247gfF_AS1HoQheB_afmz95Kg4gW5BkeRfe92S6InmCXmdMN7m4vzQEeTuhvRoGh2iXCWxstqVMx28FAQxHa3Prn8dFtxou7RnYaFULimejLV78X4z6uHJwh1OmW9uhn3qd1LDrR7JAljm4WMGkEGOhjJfM5_k-EZGiorRgudd5Jd9zM4oxFvG6mwyZy5dGBJRbH-yBernSv2B_wejt8UxccrqN-zuk7CfQWoYGh0&s=bYne7vlsRHUkGHmeaZwYZp8UkdV1g8czuJaDYiP2XWcO8yMOsYJEm1XMtsTOh1lkugwPu-EMj0ZFAt9xG4AHjwsWYxt22XzYrpM7QwPl6xGVr1zDTDNVup8wtWe-2_BXiNG1HvIFknhQBODM-gs_lAe5MNaz5tjC2Du6tl6jyHA0d24_k1oXemkW_WCcGVmbLpoWYL9spZM6b3uBfI7DdDCU-lf7WjB8sm5iP5JI_ZWWUR6Mx74gl6YLNOvsx5u8YPZGH3DW6bmH8TOlfPho4tsoxtiK1MAT068ELUraJE2-ZjBzyzVJ6NgNFMTAWmdYaKQnUXUcI-hhaXFQVwBZaw&h=eo96-YVtErKaXSI7kgOffXEUPDbk-mtN_uhvb1gKKU0 - cache-control: - - no-cache - content-length: - - '611' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:37 GMT - expires: - - '-1' - mise-correlation-id: - - f4eb1591-36aa-4856-94f0-d41a480cc9af - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 889D261DA75F445AAF2122A33C27FE3D Ref B: TYO01EDGE2008 Ref C: 2024-03-07T08:57:36Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim create - Connection: - - keep-alive - ParameterSetName: - - -g --sim-group-name -n --international-msi --operator-key-code --authentication-key - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/fbe9077b-a9a1-4cec-8e90-13624f78d1c0*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54?api-version=2023-09-01&t=638453986580893626&c=MIIHADCCBeigAwIBAgITHgPpxUXboRMa1MKXpgAAA-nFRTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMTMxMDEyODE0WhcNMjUwMTI1MDEyODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALigL_YnYGZkISCK9BFT_dzpf963u9bRlY_IhMLl8TQ-WhRb_jA3SHowq9D2t_7jJQKGI6GCCp7rr_bZzTa8pQN0C79lTnY73uIO4_vOTLEbO-r_WF4dIaOg1uhvkHUiwSieW1h1jjj7k_SIuMHohy7tAM8iZ7-ZfFZtnQlOn2e3i4JeBaiEwNF6m94GOMe29LMbaearVgY8Q9dpoqHRILM6oc_lOriZ7rsNAjKOxUZcp1Fo9palZ-3PsJ20ivSPfnC4uawbHqM6z14aGUgr9gJQWitq-3CYzqxU1A3majqauDuR74sxRgfJpBe8xHH2ykGfx9eRrJVbo9gtcbtMplUCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQPt2y76WhKhKfsmhaKSl6_-ABVUzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKfiXIDVAa163uWLQJ_KFJsJINDdJsPSYCj10C9FzlRIDm8NLFTcqHUht2yzNYw9sA0XiYBlshas0NHr_NjnK0vPf1AFoIyNw9OdZs75NKY4kH247gfF_AS1HoQheB_afmz95Kg4gW5BkeRfe92S6InmCXmdMN7m4vzQEeTuhvRoGh2iXCWxstqVMx28FAQxHa3Prn8dFtxou7RnYaFULimejLV78X4z6uHJwh1OmW9uhn3qd1LDrR7JAljm4WMGkEGOhjJfM5_k-EZGiorRgudd5Jd9zM4oxFvG6mwyZy5dGBJRbH-yBernSv2B_wejt8UxccrqN-zuk7CfQWoYGh0&s=bYne7vlsRHUkGHmeaZwYZp8UkdV1g8czuJaDYiP2XWcO8yMOsYJEm1XMtsTOh1lkugwPu-EMj0ZFAt9xG4AHjwsWYxt22XzYrpM7QwPl6xGVr1zDTDNVup8wtWe-2_BXiNG1HvIFknhQBODM-gs_lAe5MNaz5tjC2Du6tl6jyHA0d24_k1oXemkW_WCcGVmbLpoWYL9spZM6b3uBfI7DdDCU-lf7WjB8sm5iP5JI_ZWWUR6Mx74gl6YLNOvsx5u8YPZGH3DW6bmH8TOlfPho4tsoxtiK1MAT068ELUraJE2-ZjBzyzVJ6NgNFMTAWmdYaKQnUXUcI-hhaXFQVwBZaw&h=eo96-YVtErKaXSI7kgOffXEUPDbk-mtN_uhvb1gKKU0 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/fbe9077b-a9a1-4cec-8e90-13624f78d1c0*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54","name":"fbe9077b-a9a1-4cec-8e90-13624f78d1c0*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004","status":"Succeeded","startTime":"2024-03-07T08:57:37.7518723Z","endTime":"2024-03-07T08:57:38.5716963Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '600' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:37 GMT - etag: - - '"d0001b5b-0000-0100-0000-65e981820000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 295222E0404B4A7B9D24165C6296BE67 Ref B: TYO01EDGE2008 Ref C: 2024-03-07T08:57:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim create - Connection: - - keep-alive - ParameterSetName: - - -g --sim-group-name -n --international-msi --operator-key-code --authentication-key - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004","name":"sim000004","type":"microsoft.mobilenetwork/simgroups/sims","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:57:37.0581177Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:57:37.0581177Z"},"properties":{"provisioningState":"Succeeded","simState":"Disabled","siteProvisioningState":{},"internationalMobileSubscriberIdentity":"0000000000"}}' - headers: - cache-control: - - no-cache - content-length: - - '639' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:39 GMT - expires: - - '-1' - mise-correlation-id: - - 0a30fe5f-71fc-4e24-9130-aecf9ef64452 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F8AB4F9AAB6248D78EC0F290EF41FEEC Ref B: TYO01EDGE2008 Ref C: 2024-03-07T08:57:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim list - Connection: - - keep-alive - ParameterSetName: - - -g --sim-group-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004","name":"sim000004","type":"microsoft.mobilenetwork/simgroups/sims","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:57:37.0581177Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:57:37.0581177Z"},"properties":{"provisioningState":"Succeeded","simState":"Disabled","siteProvisioningState":{},"internationalMobileSubscriberIdentity":"0000000000"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '651' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:41 GMT - expires: - - '-1' - mise-correlation-id: - - ec2cafb2-d455-4cd2-8345-16fae701a97e - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: E605DDA5FAE04343BA95ABCC26AA07BF Ref B: TYO01EDGE3816 Ref C: 2024-03-07T08:57:40Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim show - Connection: - - keep-alive - ParameterSetName: - - -g -n --sim-group-name - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004","name":"sim000004","type":"microsoft.mobilenetwork/simgroups/sims","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:57:37.0581177Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:57:37.0581177Z"},"properties":{"provisioningState":"Succeeded","simState":"Disabled","siteProvisioningState":{},"internationalMobileSubscriberIdentity":"0000000000"}}' - headers: - cache-control: - - no-cache - content-length: - - '639' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:42 GMT - expires: - - '-1' - mise-correlation-id: - - 0e5141ab-22cf-4c2a-b6f7-9d7933d4ffeb - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 4A1CDFAE0B04478A9AF1797C48672D9B Ref B: TYO01EDGE3319 Ref C: 2024-03-07T08:57:42Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --sim-group-name -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6ab486a7-64f1-4c8b-aa16-9369c5b25e92*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54?api-version=2023-09-01&t=638453986642219248&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=RwI6eS6UpePcxS7StUrXwGhyvTls9BZ53qoPaNpet9qTp5qIKIA5Wi9HBDARjlZdICSKNNeyULXtC-JVGLHxga4rF1CjApRZbLwZYuXFaoWB5-sRPjoKw3H7bnfbEE8gWPNcbryswgKGStdyLjBiyOH8tXwA3ID4tCTzmwArfcfmI-K8uEew5_GuTYvDUYA8wAk1mtKnR1pEJ5zoonL9hKU5FfvJrFCMc4TgKP-Ibn9u4BlMiSyGNwsE3sHLEGNit7ind6hrJG1TRTtAPyLifzmqR-hImEFqKYRWoJnYTcYd67QBltYNtMs7n3PuDYosBqvgwyv5gxZ3zrxOuHAWEw&h=XISjR5JZxgiJho2t2i12UPTM8EL_sbU3OHcHlh2n_QE - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6ab486a7-64f1-4c8b-aa16-9369c5b25e92*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54?api-version=2023-09-01&t=638453986642375475&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=n6o9vQvJVM357pHzeSKrMP56oA5WclpLh9_-UFjOBx51B12toXBcY6TFaCmStDLtnylIeXV39r9g1Nal7WMzyI5JFFD_Rit7t5q9v4zPrZy5dayxcVSlqpnFciFlLmZh1Ptv78M7RrrWXEkPT4j3YcGj1CnuukNL4ag7ZqxGKPUJ1TRDrYyMsmIbwcOSS6TJhDPmrpP0uyex5YS9AriuVyTJ85TBQ1-kM9BISVmASmQMkcjxIWfHOPz6fzOX-rOONAcRlkAKz3kbp3gbN5WZsMZ8mhz8QnkuaRecW2HSFkjiX0U7Pge9f61RUGVkUV0elyo4ISkoD7ngbSwW19Bk9g&h=bIhpSDsI3fl9WKIMr9rjEyyGqSHl9l-34SY5ZHreM3I - mise-correlation-id: - - bab7a376-ccdc-4e3e-9f51-d60b00b3a014 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 018E46D826AE4F2DBC155E902EEB0921 Ref B: TYO01EDGE2107 Ref C: 2024-03-07T08:57:43Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --sim-group-name -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6ab486a7-64f1-4c8b-aa16-9369c5b25e92*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54?api-version=2023-09-01&t=638453986642219248&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=RwI6eS6UpePcxS7StUrXwGhyvTls9BZ53qoPaNpet9qTp5qIKIA5Wi9HBDARjlZdICSKNNeyULXtC-JVGLHxga4rF1CjApRZbLwZYuXFaoWB5-sRPjoKw3H7bnfbEE8gWPNcbryswgKGStdyLjBiyOH8tXwA3ID4tCTzmwArfcfmI-K8uEew5_GuTYvDUYA8wAk1mtKnR1pEJ5zoonL9hKU5FfvJrFCMc4TgKP-Ibn9u4BlMiSyGNwsE3sHLEGNit7ind6hrJG1TRTtAPyLifzmqR-hImEFqKYRWoJnYTcYd67QBltYNtMs7n3PuDYosBqvgwyv5gxZ3zrxOuHAWEw&h=XISjR5JZxgiJho2t2i12UPTM8EL_sbU3OHcHlh2n_QE - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6ab486a7-64f1-4c8b-aa16-9369c5b25e92*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54","name":"6ab486a7-64f1-4c8b-aa16-9369c5b25e92*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004","status":"Succeeded","startTime":"2024-03-07T08:57:44.063189Z","endTime":"2024-03-07T08:57:44.5675285Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '599' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:44 GMT - etag: - - '"d0004c5b-0000-0100-0000-65e981880000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: A3BCD40A040B45DEB45D74C6BCF93EF8 Ref B: TYO01EDGE2107 Ref C: 2024-03-07T08:57:44Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --sim-group-name -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6ab486a7-64f1-4c8b-aa16-9369c5b25e92*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54?api-version=2023-09-01&t=638453986642375475&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=n6o9vQvJVM357pHzeSKrMP56oA5WclpLh9_-UFjOBx51B12toXBcY6TFaCmStDLtnylIeXV39r9g1Nal7WMzyI5JFFD_Rit7t5q9v4zPrZy5dayxcVSlqpnFciFlLmZh1Ptv78M7RrrWXEkPT4j3YcGj1CnuukNL4ag7ZqxGKPUJ1TRDrYyMsmIbwcOSS6TJhDPmrpP0uyex5YS9AriuVyTJ85TBQ1-kM9BISVmASmQMkcjxIWfHOPz6fzOX-rOONAcRlkAKz3kbp3gbN5WZsMZ8mhz8QnkuaRecW2HSFkjiX0U7Pge9f61RUGVkUV0elyo4ISkoD7ngbSwW19Bk9g&h=bIhpSDsI3fl9WKIMr9rjEyyGqSHl9l-34SY5ZHreM3I - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/6ab486a7-64f1-4c8b-aa16-9369c5b25e92*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54","name":"6ab486a7-64f1-4c8b-aa16-9369c5b25e92*8A855DB2727CE20EC04E0157F9BCF9CA9F45CBA7620DA6A4C876D9C0EC7D1B54","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003/sims/sim000004","status":"Succeeded","startTime":"2024-03-07T08:57:44.063189Z","endTime":"2024-03-07T08:57:44.5675285Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '599' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:45 GMT - etag: - - '"d0004c5b-0000-0100-0000-65e981880000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 902F86390A8146C5A59D6F130F911E61 Ref B: TYO01EDGE2107 Ref C: 2024-03-07T08:57:45Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986682097310&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=peRSmrkxJP5La-dfoDYv_dUItvnBi8RiIYS1LVRnE7DF9Vk1w6-bvORCVXi_d9eMteonuYhlGjETcR-pHXwCeqOj6fc9NNqzRacIjDdjzbM8J5ZD-hVBH_eNfq8_mxb9YLPlXSY3pOPID8JRm45IPp0MFAdXs9_mvwCA7SIj0ufegg7y3-vlkF9q0O3sUiuw9hm_j4uZdkTmbh7Qg0YeUboAEJYwAU-j0a8Zquz8pY2LAHCJbMg3NbdLMSyNlTO08iNCxppsQo5-5psd5lm_ksZhgv9dPdC5phTpv_0YSDYEMAyoRwHhOG-vEjOFfYJ8SW4Zty4RaL0E9m_s2T9QnQ&h=clu8nVQx4bH4jFynMkZtxXjpuXPdvIea8kBNAITf7Zk - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:47 GMT - etag: - - '"4f0536ba-0000-0100-0000-65e9818c0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986682097310&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=peRSmrkxJP5La-dfoDYv_dUItvnBi8RiIYS1LVRnE7DF9Vk1w6-bvORCVXi_d9eMteonuYhlGjETcR-pHXwCeqOj6fc9NNqzRacIjDdjzbM8J5ZD-hVBH_eNfq8_mxb9YLPlXSY3pOPID8JRm45IPp0MFAdXs9_mvwCA7SIj0ufegg7y3-vlkF9q0O3sUiuw9hm_j4uZdkTmbh7Qg0YeUboAEJYwAU-j0a8Zquz8pY2LAHCJbMg3NbdLMSyNlTO08iNCxppsQo5-5psd5lm_ksZhgv9dPdC5phTpv_0YSDYEMAyoRwHhOG-vEjOFfYJ8SW4Zty4RaL0E9m_s2T9QnQ&h=clu8nVQx4bH4jFynMkZtxXjpuXPdvIea8kBNAITf7Zk - mise-correlation-id: - - a3cce51f-d1e5-42f8-96d0-e759953ad294 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 6FB9FAF9F3264FF7824A132A2776DC4C Ref B: TYO01EDGE2106 Ref C: 2024-03-07T08:57:46Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986682097310&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=peRSmrkxJP5La-dfoDYv_dUItvnBi8RiIYS1LVRnE7DF9Vk1w6-bvORCVXi_d9eMteonuYhlGjETcR-pHXwCeqOj6fc9NNqzRacIjDdjzbM8J5ZD-hVBH_eNfq8_mxb9YLPlXSY3pOPID8JRm45IPp0MFAdXs9_mvwCA7SIj0ufegg7y3-vlkF9q0O3sUiuw9hm_j4uZdkTmbh7Qg0YeUboAEJYwAU-j0a8Zquz8pY2LAHCJbMg3NbdLMSyNlTO08iNCxppsQo5-5psd5lm_ksZhgv9dPdC5phTpv_0YSDYEMAyoRwHhOG-vEjOFfYJ8SW4Zty4RaL0E9m_s2T9QnQ&h=clu8nVQx4bH4jFynMkZtxXjpuXPdvIea8kBNAITf7Zk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Deleting","startTime":"2024-03-07T08:57:47.7655034Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986688826570&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=A0MLH5KwqCK8H9F-WZyrR_4ylbA0LLUbn-25jbz3cnsLCXbxX8Vuhd931uirGq-IuWIo6NhFZV5z1xKg9jmNgOltmUkrFHQ2JbtyqxKjZFFzOXDKJWMIKAY6e_x_35PuD9zO3njZYXgpXm2XfFWECQh9iGdPONqXtzLmd1mc6rnZgt1RXKxBcVO_gZZ74TfbygLvuCSR6PfA3egE5AxeuToK1gR7Z6z05ynrlRT9V1G-G4ucfYK1sFHRRZPoApmTnoR1PsDSkpIbXXWwNXEh_uwf9lk_Nwo05AJVKQpiA4y2TgBUX5ViRjS2cSLLvI3QHVSjKBDn1iPrBpFC-Uylww&h=SP9RIyPGyhwQzB2wFsm0O1ZRZLrmAW1o69iA9fyq6OY - cache-control: - - no-cache - content-length: - - '525' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:57:48 GMT - etag: - - '"d0005a5b-0000-0100-0000-65e9818b0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986688982242&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=hmn_FlIjzTRN18L6uUmDGYr_OYdnB9YAo-VUp2GOFYlx9FgbxtfibCLnQPSLXAP0wTQnDTf9fL2kBKIxPmjc1JXEV-pA_q3FbpCCkZ-AhO5AyvYCux2bq6rJ6t8CDpK5GNkogcpemNhTwPAKTDvNNmo_txChduxxFYqcqfP6Uz3i4r1ahY6JcQUGb8YoqB7JwGhcACrBX1tO9EpdFVwL2egNe0T23FSeCRDST5eo25dFwYqAkatC-rAPNIM5kxhR9sCFldHKKKKEbjvx3QcA5OddDD3wHbbc9IR4DXZhpaXO2T5t_4dsgxCqd90QOaUV618YgBZ-hTHlHTEb02sz8w&h=QkWLwZNp34TASvtTLdXOMcF9divIYk1ZRlfFQPhUbwA - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 3AAAA015A0924CB0B487D3CE4D3EB9BA Ref B: TYO01EDGE2106 Ref C: 2024-03-07T08:57:48Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986682097310&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=peRSmrkxJP5La-dfoDYv_dUItvnBi8RiIYS1LVRnE7DF9Vk1w6-bvORCVXi_d9eMteonuYhlGjETcR-pHXwCeqOj6fc9NNqzRacIjDdjzbM8J5ZD-hVBH_eNfq8_mxb9YLPlXSY3pOPID8JRm45IPp0MFAdXs9_mvwCA7SIj0ufegg7y3-vlkF9q0O3sUiuw9hm_j4uZdkTmbh7Qg0YeUboAEJYwAU-j0a8Zquz8pY2LAHCJbMg3NbdLMSyNlTO08iNCxppsQo5-5psd5lm_ksZhgv9dPdC5phTpv_0YSDYEMAyoRwHhOG-vEjOFfYJ8SW4Zty4RaL0E9m_s2T9QnQ&h=clu8nVQx4bH4jFynMkZtxXjpuXPdvIea8kBNAITf7Zk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Deleting","startTime":"2024-03-07T08:57:47.7655034Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986996084935&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=htFRCH-SMbSjoE2JLc2ocWaASKmIAdc7AUp1TMwC8avC3rrazIVY8AtyId0lHmfbey-mSh-1pZhKc48nQc1oZ5MRnZpuBFxbKNdT7eOD2AGp3Pr02jvfPjDTUvZMvWWOXkNmuAysiF8PGtJQelwm_9YTIgSmF39nY0Pqlgn8E--jb8CP2462N0IolwCRrGfAZybcS04r_D91OEVtYob2jr6dqEyOJBDo9WqCkytoAZOq-2msvMgNbY2pdsIErqibOd1C3D5ufGbiA4DIq07dvAbWPRCsjTyIxVGtQHKbEMu668RbZefuQ2ch6CfjQAQaFHH70eFsEDtjGUcsmPBM9g&h=WvmkhtZ_D4B6pvVF9c1VE0-pBQeM0iBIvLyQhhhc_As - cache-control: - - no-cache - content-length: - - '525' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:58:18 GMT - etag: - - '"d0005a5b-0000-0100-0000-65e9818b0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986996084935&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=htFRCH-SMbSjoE2JLc2ocWaASKmIAdc7AUp1TMwC8avC3rrazIVY8AtyId0lHmfbey-mSh-1pZhKc48nQc1oZ5MRnZpuBFxbKNdT7eOD2AGp3Pr02jvfPjDTUvZMvWWOXkNmuAysiF8PGtJQelwm_9YTIgSmF39nY0Pqlgn8E--jb8CP2462N0IolwCRrGfAZybcS04r_D91OEVtYob2jr6dqEyOJBDo9WqCkytoAZOq-2msvMgNbY2pdsIErqibOd1C3D5ufGbiA4DIq07dvAbWPRCsjTyIxVGtQHKbEMu668RbZefuQ2ch6CfjQAQaFHH70eFsEDtjGUcsmPBM9g&h=WvmkhtZ_D4B6pvVF9c1VE0-pBQeM0iBIvLyQhhhc_As - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: DECE05AE87EA46399539F201FCD30584 Ref B: TYO01EDGE2106 Ref C: 2024-03-07T08:58:19Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986682097310&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=peRSmrkxJP5La-dfoDYv_dUItvnBi8RiIYS1LVRnE7DF9Vk1w6-bvORCVXi_d9eMteonuYhlGjETcR-pHXwCeqOj6fc9NNqzRacIjDdjzbM8J5ZD-hVBH_eNfq8_mxb9YLPlXSY3pOPID8JRm45IPp0MFAdXs9_mvwCA7SIj0ufegg7y3-vlkF9q0O3sUiuw9hm_j4uZdkTmbh7Qg0YeUboAEJYwAU-j0a8Zquz8pY2LAHCJbMg3NbdLMSyNlTO08iNCxppsQo5-5psd5lm_ksZhgv9dPdC5phTpv_0YSDYEMAyoRwHhOG-vEjOFfYJ8SW4Zty4RaL0E9m_s2T9QnQ&h=clu8nVQx4bH4jFynMkZtxXjpuXPdvIea8kBNAITf7Zk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Deleting","startTime":"2024-03-07T08:57:47.7655034Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453987302803376&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=mpPWW0KI-865C5CM60_X5AJFp_LuSvVzBod5rn3-Gksc8eo91fQYZKzqkm5a6pyGnnXP6M8QSRG461O-GoNdj3Z86_pkEG3DgY7S5lY1_HJDcKxyDo3itICaZyibK4aRc04kaYC5Yg3Ysnt1ul2A1uv7Y439GOy11fera9XmrqOSqghZ3sS3hUVJ6FZBYLmmy4YXEYDxLdfFw0jGBsDCPK3uCtl2TsXqlsK5_6u9SYIP-vSFamK9F7uGTh5bB7dUeUZW10yh4GlA2fY2VMJZjBsrWbiI7yRvikzI6Ra88JLEgEiYAzWgD8AWrJRpln-0GYKIfnqbG1lk-f6rZozn5A&h=R-vti7-SHrkm0xR-cyxsafLdd4GynEwSQgS6m_ct-PI - cache-control: - - no-cache - content-length: - - '525' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:58:49 GMT - etag: - - '"d0005a5b-0000-0100-0000-65e9818b0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453987302959956&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=NNWMoZLViq96QqXNFBAeEpxYOOxWS-C5jNIK31I39PQae3EjL7_asjqlYuX09hVm2aF9fs_4SMnY7ICFye_lktXX1YVbjU-b55WWxwu9lgsHedKRiJvB1kRaPa_k7cXFaxLltGa8pI7o-9uYlCPMQqs5nq2ZCOiWk5V1xaop0MMtT9oc6bCi826LvFWU7-KrwHlGmv9C7lnHn2MWUp9HdYWkAQUa5AoqnH9cj-SAosu5rNOx0Xd75Iwgeup4x_SDcmjbtelkq19rDYc9EYuQPGi9osCUql7Au1aJUSMlTXB_Cp_eb8CjD8G_bCVN5XN9N1nhTnY3Q6ypwJUCLFo39w&h=_gv9id-df9balByHLorGTnJxWr6OXF13Sbv9x0VUmmk - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 0F21855D02F24361BCE1A17E5EFBF632 Ref B: TYO01EDGE2106 Ref C: 2024-03-07T08:58:49Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986682097310&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=peRSmrkxJP5La-dfoDYv_dUItvnBi8RiIYS1LVRnE7DF9Vk1w6-bvORCVXi_d9eMteonuYhlGjETcR-pHXwCeqOj6fc9NNqzRacIjDdjzbM8J5ZD-hVBH_eNfq8_mxb9YLPlXSY3pOPID8JRm45IPp0MFAdXs9_mvwCA7SIj0ufegg7y3-vlkF9q0O3sUiuw9hm_j4uZdkTmbh7Qg0YeUboAEJYwAU-j0a8Zquz8pY2LAHCJbMg3NbdLMSyNlTO08iNCxppsQo5-5psd5lm_ksZhgv9dPdC5phTpv_0YSDYEMAyoRwHhOG-vEjOFfYJ8SW4Zty4RaL0E9m_s2T9QnQ&h=clu8nVQx4bH4jFynMkZtxXjpuXPdvIea8kBNAITf7Zk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T08:57:47.7655034Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '544' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:59:19 GMT - etag: - - '"1c0070c8-0000-0600-0000-65e981ce0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D95521875DC0488F87F045F02EF98314 Ref B: TYO01EDGE2106 Ref C: 2024-03-07T08:59:20Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network sim group delete - Connection: - - keep-alive - ParameterSetName: - - -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3?api-version=2023-09-01&t=638453986682097310&c=MIIHADCCBeigAwIBAgITHgPtKFZCSVesK0WPLAAAA-0oVjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwMjAyMTQwMTAxWhcNMjUwMTI3MTQwMTAxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK91qXSatAXLDynhJ7OmG-j0vO0hqhAjRdFNuJg9SayOMQgzA-obKyjKzODz-eKOFoz6nV1rqHbnb7YUxvz5Ke74ZDjbxdnwYGhAju6jD9ThtiS78Bt0iUKpZpY2QDYxCrpC2DaO5kCSOWUb4PBGhVDkexnKJTTgzHe6iS1gE6V9VyO5bN14Lsq_45qNHoMXlm6258OEIXZ2gvBFpy3CkYEY1Arc4oCuWYWzDTjzP7FJj-v_gVsjhKFAqVWdVND8k982bhNvxjCDqvTMMy2wR4V0GDA6ur0EnTPCKX1N3S7GUf17d1gJdpMzlb_jeHKjnYWKYv0LNyFwaqnk7GeduL0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSg-6hed5hnNyz0o02J9YCREXHiLTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJqTNNAFYbI8tYZvhkWYcJR1aDHuYU1URw_WgivmBHLOfIAZaztxQqvdsxn7EbAcjcOcq9H3pjUKGr3BRtnBNY431tr6872Si1uhnA9Q0oY_Loy1TELqVVHSnZv5Ak_tfVj8WfIk_tPErWJFKYSyH5rm8Oib-ESxwUgReD_HF9MnY14bWX17k0lKxbWDXBozqanPn8qTmnfF9QP-lqUSWCaCx8-p8Ko_YAwLYsD8uPcZogm5XP6QN4UM88O0WhW2SbtydDRtmuU41k0j2byj3C2lK-JwND1w0CfKV6HlCFm_yKAdbmJUK50Y8Mkh2ebZhN0HOcoGcebh1hrMvD1lL1A&s=peRSmrkxJP5La-dfoDYv_dUItvnBi8RiIYS1LVRnE7DF9Vk1w6-bvORCVXi_d9eMteonuYhlGjETcR-pHXwCeqOj6fc9NNqzRacIjDdjzbM8J5ZD-hVBH_eNfq8_mxb9YLPlXSY3pOPID8JRm45IPp0MFAdXs9_mvwCA7SIj0ufegg7y3-vlkF9q0O3sUiuw9hm_j4uZdkTmbh7Qg0YeUboAEJYwAU-j0a8Zquz8pY2LAHCJbMg3NbdLMSyNlTO08iNCxppsQo5-5psd5lm_ksZhgv9dPdC5phTpv_0YSDYEMAyoRwHhOG-vEjOFfYJ8SW4Zty4RaL0E9m_s2T9QnQ&h=clu8nVQx4bH4jFynMkZtxXjpuXPdvIea8kBNAITf7Zk - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","name":"746bd9fd-a1d5-44e5-937a-e46bc6085b59*C8D14A132BE2A14A5429C5D67D0AB19EB0D80900E472256D7B1A58E918A5FFC3","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/simGroups/simgroup000003","status":"Succeeded","startTime":"2024-03-07T08:57:47.7655034Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '544' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:59:20 GMT - etag: - - '"1c0070c8-0000-0600-0000-65e981ce0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 634C2A98C6A34127B133CB89DB0EE2B3 Ref B: TYO01EDGE2106 Ref C: 2024-03-07T08:59:20Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_site.yaml b/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_site.yaml deleted file mode 100644 index f4334387126..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_site.yaml +++ /dev/null @@ -1,720 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_site","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '396' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: CF67F4DDCE7C4FE9914C4176327CA2AB Ref B: MAA201060516039 Ref C: 2024-03-07T08:46:58Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"publicLandMobileNetworkIdentifier": - {"mcc": "001", "mnc": "01"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:00.5177683Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:00.5177683Z"},"properties":{"provisioningState":"Accepted","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"55a6a502-9f71-44d1-b6f1-1b206e19f107"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/522bf793-c917-4402-a9e9-a24139657893*23E3515BC19B06D6D980C26281CE66EFD33A3B5BCB105ADA7B8F003CBC0FA159?api-version=2023-09-01&t=638453980222365690&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=oODpG-uENoXArwBNy4RT7ZI4_Yb510hcB_0Xsa6LzJhZy2la4Pbetdu14rjn_sjIddjs6K8miIAQmvSfoHLBfwvXWnf9bBMGZXFfHyqTGtWdU4iiisoaQaSf9NKldb7_PgTR9P0gZokQO2dh8pHZ0WkSiwJA7TbEUqklDq3ppJLEaCNBARtIZtAFFQkzRAAIGNEGcEKSZ6dSe-FlLJ7k6L7GdJ7bwiIU_w-sEpodLrxZEZeQnh64XIvs1i6ujbHi8Vx3o7jY6pC9aD_C8XO_w13mkk2WrGK-1zJDisiG4di0afCOXlu-2InGtw99w2FQanAbDmC7wE7_CYyjsezdUA&h=YoiQAOimI3m7b2a_OYgsCqCnoYs-3aSuD-vXl2MI6Oo - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:01 GMT - etag: - - '"5701fc00-0000-0100-0000-65e97f050000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: B5F1D8B25E8D4222A925F5FA22F6364A Ref B: MAA201060514025 Ref C: 2024-03-07T08:46:59Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/522bf793-c917-4402-a9e9-a24139657893*23E3515BC19B06D6D980C26281CE66EFD33A3B5BCB105ADA7B8F003CBC0FA159?api-version=2023-09-01&t=638453980222365690&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=oODpG-uENoXArwBNy4RT7ZI4_Yb510hcB_0Xsa6LzJhZy2la4Pbetdu14rjn_sjIddjs6K8miIAQmvSfoHLBfwvXWnf9bBMGZXFfHyqTGtWdU4iiisoaQaSf9NKldb7_PgTR9P0gZokQO2dh8pHZ0WkSiwJA7TbEUqklDq3ppJLEaCNBARtIZtAFFQkzRAAIGNEGcEKSZ6dSe-FlLJ7k6L7GdJ7bwiIU_w-sEpodLrxZEZeQnh64XIvs1i6ujbHi8Vx3o7jY6pC9aD_C8XO_w13mkk2WrGK-1zJDisiG4di0afCOXlu-2InGtw99w2FQanAbDmC7wE7_CYyjsezdUA&h=YoiQAOimI3m7b2a_OYgsCqCnoYs-3aSuD-vXl2MI6Oo - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/522bf793-c917-4402-a9e9-a24139657893*23E3515BC19B06D6D980C26281CE66EFD33A3B5BCB105ADA7B8F003CBC0FA159","name":"522bf793-c917-4402-a9e9-a24139657893*23E3515BC19B06D6D980C26281CE66EFD33A3B5BCB105ADA7B8F003CBC0FA159","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Succeeded","startTime":"2024-03-07T08:47:01.5017905Z","endTime":"2024-03-07T08:47:01.9197278Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:02 GMT - etag: - - '"d0007b49-0000-0100-0000-65e97f050000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: B575E1E818AA469F864545C84ED2321C Ref B: MAA201060514025 Ref C: 2024-03-07T08:47:02Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:00.5177683Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:00.5177683Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"55a6a502-9f71-44d1-b6f1-1b206e19f107"}}' - headers: - cache-control: - - no-cache - content-length: - - '679' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:03 GMT - etag: - - '"57010b01-0000-0100-0000-65e97f050000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 394CFF6EDAD74CA38913F40D06948C11 Ref B: MAA201060514025 Ref C: 2024-03-07T08:47:03Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site create - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_site","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '396' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5EE388F270E64D9083B3A6CC0FD8B432 Ref B: MAA201060515051 Ref C: 2024-03-07T08:47:05Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site create - Connection: - - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","name":"site_000003","type":"microsoft.mobilenetwork/mobilenetworks/sites","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:07.3955243Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:07.3955243Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '580' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:08 GMT - etag: - - '"1c0096ef-0000-0100-0000-65e97f0c0000"' - expires: - - '-1' - mise-correlation-id: - - 3dd006e2-5963-4514-942e-669a2d6d3d34 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: 1D9C3D7ECAF24C59B10DB57E493B4E62 Ref B: MAA201060516011 Ref C: 2024-03-07T08:47:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","name":"site_000003","type":"microsoft.mobilenetwork/mobilenetworks/sites","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:07.3955243Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:07.3955243Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '580' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:10 GMT - etag: - - '"1c0096ef-0000-0100-0000-65e97f0c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 7216135984DB4F7D895DB44A9A969247 Ref B: MAA201060513019 Ref C: 2024-03-07T08:47:09Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {}, "tags": {"tag": "test", "tag2": - "test2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site update - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json - ParameterSetName: - - --mobile-network-name -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","name":"site_000003","type":"microsoft.mobilenetwork/mobilenetworks/sites","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:07.3955243Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:11.6755192Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '617' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:15 GMT - etag: - - '"1c00a8ef-0000-0100-0000-65e97f100000"' - expires: - - '-1' - mise-correlation-id: - - 2f3549f8-1ecf-4e11-ab66-75b0a79b131a - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: D67EB43FDA52471CA542E9CF28CEE988 Ref B: MAA201060513019 Ref C: 2024-03-07T08:47:11Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site list - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","name":"site_000003","type":"microsoft.mobilenetwork/mobilenetworks/sites","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:07.3955243Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:11.6755192Z"},"properties":{"provisioningState":"Succeeded"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '629' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: A594B6B6683D48D7B274DDAB7BB9B0CD Ref B: MAA201060514025 Ref C: 2024-03-07T08:47:16Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site show - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","name":"site_000003","type":"microsoft.mobilenetwork/mobilenetworks/sites","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:07.3955243Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:11.6755192Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '617' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:17 GMT - etag: - - '"1c00a8ef-0000-0100-0000-65e97f100000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: B8AE852FC2284A5C89676D9C2A9F797B Ref B: MAA201060514035 Ref C: 2024-03-07T08:47:17Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7?api-version=2023-09-01&t=638453980402741434&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=h35JkjNnde9W7tUQ4WysFcx3kqzkf4fe8gBqXMUihV2NL1KVQ9Hx_7NJ1KxtVypq0CadkYovEPFW-iQr7QaUWeiuCUod2I38bAcgL8oLykEYHEvyQJnQc3mRhlIw0MqqVCsycqY4UDgTJteMKGfJM2LoI7C1mUKdKUZcsYaiXdhumIFreZx7WSzLlwGLhqE2dnlbf5nj3oo5EasgeBUlcYdaIWBtQS0oRbHmDaPOjcYOO7l3lpls92z_PeSqZs6r7rXlOTd4swYpEsPtZclDiaUPNIoEpm7g3pre1ternEIyn-z_CHs3ycnAjeIV_628L5GFypnnfqSZ_EfqfBlGBA&h=749aTQUIwZY90bVBf5G4S9vYUWo4eV5emL3kGTIWXA4 - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:19 GMT - etag: - - '"1c00bfef-0000-0100-0000-65e97f180000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7?api-version=2023-09-01&t=638453980402897270&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=NWXmE5Pa5ZNkmlP_xSaXWxO9wZdxIjD5zzgmrt82q5vETwgY9fBcWmKN3wgXqbdP2Uw8dvb7vU1qgG5A5ukeqgw_-pVSRI5EKm5LXXFTYpQkRHTnSesSOnKYagSKwT1SpXEs6InfVDehheZHUplFNhuuDiSMrIgkHK3cNXv6Ll04O2hWSYTUDWZei7BZWQD3k-87gN8IPhAFG8CkF1fnaxxUHy5R15mfCBpLSU8OJO27YEi4sG3KThhqphd8VTmdEw-c5v_YvZw3TJGYskRgMsC8VES8uEtfmUPaYZ4qGZVECgq6rpIr1wCEskH2D5hCCSvRXK_KYdadHCsxEWgYjA&h=BL2BozVOi68JgA0PyzEaegPiib3ELQzeNrZMrjJMi04 - mise-correlation-id: - - 37353e58-5e6b-4d2c-973f-aa758e96d9a3 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: 9BD1BB65208C4CE5882A7C9465A1A093 Ref B: MAA201060516053 Ref C: 2024-03-07T08:47:18Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site delete - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7?api-version=2023-09-01&t=638453980402741434&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=h35JkjNnde9W7tUQ4WysFcx3kqzkf4fe8gBqXMUihV2NL1KVQ9Hx_7NJ1KxtVypq0CadkYovEPFW-iQr7QaUWeiuCUod2I38bAcgL8oLykEYHEvyQJnQc3mRhlIw0MqqVCsycqY4UDgTJteMKGfJM2LoI7C1mUKdKUZcsYaiXdhumIFreZx7WSzLlwGLhqE2dnlbf5nj3oo5EasgeBUlcYdaIWBtQS0oRbHmDaPOjcYOO7l3lpls92z_PeSqZs6r7rXlOTd4swYpEsPtZclDiaUPNIoEpm7g3pre1ternEIyn-z_CHs3ycnAjeIV_628L5GFypnnfqSZ_EfqfBlGBA&h=749aTQUIwZY90bVBf5G4S9vYUWo4eV5emL3kGTIWXA4 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7","name":"35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","status":"Deleting","startTime":"2024-03-07T08:47:20.0911539Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7?api-version=2023-09-01&t=638453980407211845&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=ZlsKfKIwAxWk8x-55197-cEJwej_JW8W9SdcBnRga1fmvtC_1m8Y9GOVuNmXrfw24CsS175ZkuU7-JmtUlM8LcqrlnKnwd16BBkh--yjjgMyP1q9VXA2SK4cP-IY62NkV-WADt4cruRim1tEJM4voNOZVGOydkM0yfcwYUiIViHkDyzeMxC49JJBoSZn1p3YfQRJBmQNaNc2ro2VtB43owEqEaxeAGAQjSy0UgGv1_6eOc79BMUR0uC4XPHhS9TtnVc2WqEH0cHqNIoeAYeVOKDD71sLqTklsrSDjgeVdp_xwSnhavVCs57r5Nlib9XVLBSoBrlI2LIOj6wtF9aSXQ&h=giKub4ixh_p8y30Ayhv3jYZ_XvGeXlvMPhdNR1ovzYU - cache-control: - - no-cache - content-length: - - '555' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:20 GMT - etag: - - '"d000024a-0000-0100-0000-65e97f180000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7?api-version=2023-09-01&t=638453980407211845&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=ZlsKfKIwAxWk8x-55197-cEJwej_JW8W9SdcBnRga1fmvtC_1m8Y9GOVuNmXrfw24CsS175ZkuU7-JmtUlM8LcqrlnKnwd16BBkh--yjjgMyP1q9VXA2SK4cP-IY62NkV-WADt4cruRim1tEJM4voNOZVGOydkM0yfcwYUiIViHkDyzeMxC49JJBoSZn1p3YfQRJBmQNaNc2ro2VtB43owEqEaxeAGAQjSy0UgGv1_6eOc79BMUR0uC4XPHhS9TtnVc2WqEH0cHqNIoeAYeVOKDD71sLqTklsrSDjgeVdp_xwSnhavVCs57r5Nlib9XVLBSoBrlI2LIOj6wtF9aSXQ&h=giKub4ixh_p8y30Ayhv3jYZ_XvGeXlvMPhdNR1ovzYU - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 6EDD357EBDE84D0F88C7FA11FCF44AA7 Ref B: MAA201060516053 Ref C: 2024-03-07T08:47:20Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site delete - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7?api-version=2023-09-01&t=638453980402741434&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=h35JkjNnde9W7tUQ4WysFcx3kqzkf4fe8gBqXMUihV2NL1KVQ9Hx_7NJ1KxtVypq0CadkYovEPFW-iQr7QaUWeiuCUod2I38bAcgL8oLykEYHEvyQJnQc3mRhlIw0MqqVCsycqY4UDgTJteMKGfJM2LoI7C1mUKdKUZcsYaiXdhumIFreZx7WSzLlwGLhqE2dnlbf5nj3oo5EasgeBUlcYdaIWBtQS0oRbHmDaPOjcYOO7l3lpls92z_PeSqZs6r7rXlOTd4swYpEsPtZclDiaUPNIoEpm7g3pre1ternEIyn-z_CHs3ycnAjeIV_628L5GFypnnfqSZ_EfqfBlGBA&h=749aTQUIwZY90bVBf5G4S9vYUWo4eV5emL3kGTIWXA4 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7","name":"35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","status":"Succeeded","startTime":"2024-03-07T08:47:20.0911539Z","endTime":"2024-03-07T08:47:22.6794356Z","properties":{"Message":"SiteDeletedSuccessfully"}}' - headers: - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:51 GMT - etag: - - '"d000174a-0000-0100-0000-65e97f1a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F4450232229E4331BB347077E63AE490 Ref B: MAA201060516053 Ref C: 2024-03-07T08:47:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network site delete - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7?api-version=2023-09-01&t=638453980402897270&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=NWXmE5Pa5ZNkmlP_xSaXWxO9wZdxIjD5zzgmrt82q5vETwgY9fBcWmKN3wgXqbdP2Uw8dvb7vU1qgG5A5ukeqgw_-pVSRI5EKm5LXXFTYpQkRHTnSesSOnKYagSKwT1SpXEs6InfVDehheZHUplFNhuuDiSMrIgkHK3cNXv6Ll04O2hWSYTUDWZei7BZWQD3k-87gN8IPhAFG8CkF1fnaxxUHy5R15mfCBpLSU8OJO27YEi4sG3KThhqphd8VTmdEw-c5v_YvZw3TJGYskRgMsC8VES8uEtfmUPaYZ4qGZVECgq6rpIr1wCEskH2D5hCCSvRXK_KYdadHCsxEWgYjA&h=BL2BozVOi68JgA0PyzEaegPiib3ELQzeNrZMrjJMi04 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7","name":"35241fcb-b3ce-4698-8a34-a5b2979ff4dd*39A74157854D94BF66E5C3A68C39493341A7A7F7C0526692527948946CCDC7F7","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/sites/site_000003","status":"Succeeded","startTime":"2024-03-07T08:47:20.0911539Z","endTime":"2024-03-07T08:47:22.6794356Z","properties":{"Message":"SiteDeletedSuccessfully"}}' - headers: - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:51 GMT - etag: - - '"d000174a-0000-0100-0000-65e97f1a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: 79F90869349445B8898EFC16750BC0DA Ref B: MAA201060516053 Ref C: 2024-03-07T08:47:51Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_slice.yaml b/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_slice.yaml deleted file mode 100644 index aad84735b40..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/recordings/test_mobile_network_slice.yaml +++ /dev/null @@ -1,1251 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_slice","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '397' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:46:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: A2930ACD8A9B4E6180F71303FEFDCEF9 Ref B: MAA201060515017 Ref C: 2024-03-07T08:46:56Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"publicLandMobileNetworkIdentifier": - {"mcc": "001", "mnc": "01"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:58.9532993Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:58.9532993Z"},"properties":{"provisioningState":"Accepted","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"5f1a2b80-a80e-40a2-8fbf-9c618e185ed2"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/4f0a8f55-65a1-4a99-a231-db5ef2465ce0*6286ACF45BCF824626F4CEF5DA4A9A6396F3C8A3302D09E07BE02ABD87087A5C?api-version=2023-09-01&t=638453980205939253&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=JmdS40bZvx-e7FrZDXc_KrLGPNz321UTVI-1o-deP5RB5rV0841Fu5HlmR3lM1bKOLKUYHZXIyQY4CaUFpMsP5fXImgdET15QxR2GGDNmP7rrTnzT8HCQQUzDksT2TXV1WjIpeP0QgsR0qElqjuAOOCdPB8TgJ-JAE9oYlksrHRXHbJO-JPFHE8UdJxpLQi2u-wy7Sbalgc4Kw6xHNyDtu8grPSY5JGlrBoM4Z8gxgd2abYs85zEGNP5hFr_8DLM5gr9mUv34kIyipMaXITFa-3-zuf3QEgsT6jnUeTJt6GSWgXaw1IEEdFP1vQEe7eH11SaVCKmOXKW42xBxa3-vg&h=ADSJAwtj9Duggve7nsvIjgxO7ezlHEcW0GJc5ws78rg - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:00 GMT - etag: - - '"5701b400-0000-0100-0000-65e97f030000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: FFDE83FD6B6A457998B42808BE6BFECA Ref B: MAA201060513027 Ref C: 2024-03-07T08:46:57Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/4f0a8f55-65a1-4a99-a231-db5ef2465ce0*6286ACF45BCF824626F4CEF5DA4A9A6396F3C8A3302D09E07BE02ABD87087A5C?api-version=2023-09-01&t=638453980205939253&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=JmdS40bZvx-e7FrZDXc_KrLGPNz321UTVI-1o-deP5RB5rV0841Fu5HlmR3lM1bKOLKUYHZXIyQY4CaUFpMsP5fXImgdET15QxR2GGDNmP7rrTnzT8HCQQUzDksT2TXV1WjIpeP0QgsR0qElqjuAOOCdPB8TgJ-JAE9oYlksrHRXHbJO-JPFHE8UdJxpLQi2u-wy7Sbalgc4Kw6xHNyDtu8grPSY5JGlrBoM4Z8gxgd2abYs85zEGNP5hFr_8DLM5gr9mUv34kIyipMaXITFa-3-zuf3QEgsT6jnUeTJt6GSWgXaw1IEEdFP1vQEe7eH11SaVCKmOXKW42xBxa3-vg&h=ADSJAwtj9Duggve7nsvIjgxO7ezlHEcW0GJc5ws78rg - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/4f0a8f55-65a1-4a99-a231-db5ef2465ce0*6286ACF45BCF824626F4CEF5DA4A9A6396F3C8A3302D09E07BE02ABD87087A5C","name":"4f0a8f55-65a1-4a99-a231-db5ef2465ce0*6286ACF45BCF824626F4CEF5DA4A9A6396F3C8A3302D09E07BE02ABD87087A5C","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Accepted","startTime":"2024-03-07T08:46:59.8470024Z"}' - headers: - cache-control: - - no-cache - content-length: - - '537' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:01 GMT - etag: - - '"d0006549-0000-0100-0000-65e97f030000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: F92B6A673CAC41378FA9ABA079DD9272 Ref B: MAA201060513027 Ref C: 2024-03-07T08:47:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/4f0a8f55-65a1-4a99-a231-db5ef2465ce0*6286ACF45BCF824626F4CEF5DA4A9A6396F3C8A3302D09E07BE02ABD87087A5C?api-version=2023-09-01&t=638453980205939253&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=JmdS40bZvx-e7FrZDXc_KrLGPNz321UTVI-1o-deP5RB5rV0841Fu5HlmR3lM1bKOLKUYHZXIyQY4CaUFpMsP5fXImgdET15QxR2GGDNmP7rrTnzT8HCQQUzDksT2TXV1WjIpeP0QgsR0qElqjuAOOCdPB8TgJ-JAE9oYlksrHRXHbJO-JPFHE8UdJxpLQi2u-wy7Sbalgc4Kw6xHNyDtu8grPSY5JGlrBoM4Z8gxgd2abYs85zEGNP5hFr_8DLM5gr9mUv34kIyipMaXITFa-3-zuf3QEgsT6jnUeTJt6GSWgXaw1IEEdFP1vQEe7eH11SaVCKmOXKW42xBxa3-vg&h=ADSJAwtj9Duggve7nsvIjgxO7ezlHEcW0GJc5ws78rg - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/4f0a8f55-65a1-4a99-a231-db5ef2465ce0*6286ACF45BCF824626F4CEF5DA4A9A6396F3C8A3302D09E07BE02ABD87087A5C","name":"4f0a8f55-65a1-4a99-a231-db5ef2465ce0*6286ACF45BCF824626F4CEF5DA4A9A6396F3C8A3302D09E07BE02ABD87087A5C","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","status":"Succeeded","startTime":"2024-03-07T08:46:59.8470024Z","endTime":"2024-03-07T08:47:21.8415316Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:31 GMT - etag: - - '"d0000f4a-0000-0100-0000-65e97f190000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: E3798B64F2804D5BBFE76B3D3866538F Ref B: MAA201060513027 Ref C: 2024-03-07T08:47:31Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network create - Connection: - - keep-alive - ParameterSetName: - - -n -g --identifier - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002","name":"mobile_network_000002","type":"microsoft.mobilenetwork/mobilenetworks","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:46:58.9532993Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:46:58.9532993Z"},"properties":{"provisioningState":"Succeeded","publicLandMobileNetworkIdentifier":{"mcc":"001","mnc":"01"},"serviceKey":"5f1a2b80-a80e-40a2-8fbf-9c618e185ed2"}}' - headers: - cache-control: - - no-cache - content-length: - - '679' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:32 GMT - etag: - - '"57012604-0000-0100-0000-65e97f190000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 6A5ADEE8B6804ABBA42F4E8A6143746A Ref B: MAA201060513027 Ref C: 2024-03-07T08:47:32Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice create - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --snssai - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_mobile_network000001?api-version=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001","name":"cli_test_mobile_network000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_mobile_network_slice","date":"2024-03-07T08:46:52Z","module":"mobile-network"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '397' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 877B82E6BDF54EC594F31A6F124908F8 Ref B: MAA201060516017 Ref C: 2024-03-07T08:47:34Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"snssai": {"sd": "123abc", "sst": - 1}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice create - Connection: - - keep-alive - Content-Length: - - '76' - Content-Type: - - application/json - ParameterSetName: - - --mobile-network-name -n -g --snssai - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","name":"slice000003","type":"microsoft.mobilenetwork/mobilenetworks/slices","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:36.6664722Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:36.6664722Z"},"properties":{"snssai":{"sd":"123abc","sst":1},"provisioningState":"Accepted"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453980580102574&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=RrE5XkbGB2K1-eBHzArb5K_3u2t2rqc-p6jPL_LRiT2_T6eZ6gLbtCuZmKRj-kOevED8wUiufHErgBTvcvYKD5dvLF_D-3LJwKT0_mz8KURZlJm4SiiHeeGYbcsREgN4daPA-ohSR48gvfNBYQDOOKUBZJaZS2J-Nx7ebtHBwECXiTKQ8TH3n-C6gjG_-DFafnXCRl0gf2SC4bdG_MqpEBIy3UIDt7tL9VJiAZYDwHcJnVgvpDhnwwevWvW1FvA6YoxVWjyW6pJ1EPaZUcEEvO5BWjFwrgy4SPX5KU5klfw3sdqApGnObBkxMAsba3m9WMo2hW8glCy5-84L9WzLpQ&h=9UMX7fiDYtVeUDKCvT_UBZAwRm0X0p3lmD7FnYAaNf8 - cache-control: - - no-cache - content-length: - - '614' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:37 GMT - etag: - - '"c2015fa5-0000-0100-0000-65e97f290000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 9655905759584F2AA136FED49D6222CD Ref B: MAA201060516033 Ref C: 2024-03-07T08:47:34Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice create - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --snssai - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453980580102574&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=RrE5XkbGB2K1-eBHzArb5K_3u2t2rqc-p6jPL_LRiT2_T6eZ6gLbtCuZmKRj-kOevED8wUiufHErgBTvcvYKD5dvLF_D-3LJwKT0_mz8KURZlJm4SiiHeeGYbcsREgN4daPA-ohSR48gvfNBYQDOOKUBZJaZS2J-Nx7ebtHBwECXiTKQ8TH3n-C6gjG_-DFafnXCRl0gf2SC4bdG_MqpEBIy3UIDt7tL9VJiAZYDwHcJnVgvpDhnwwevWvW1FvA6YoxVWjyW6pJ1EPaZUcEEvO5BWjFwrgy4SPX5KU5klfw3sdqApGnObBkxMAsba3m9WMo2hW8glCy5-84L9WzLpQ&h=9UMX7fiDYtVeUDKCvT_UBZAwRm0X0p3lmD7FnYAaNf8 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Accepted","startTime":"2024-03-07T08:47:37.1915997Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:47:38 GMT - etag: - - '"d000814a-0000-0100-0000-65e97f290000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: AF20122388664057BE730B11F22583CA Ref B: MAA201060516033 Ref C: 2024-03-07T08:47:38Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice create - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --snssai - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453980580102574&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=RrE5XkbGB2K1-eBHzArb5K_3u2t2rqc-p6jPL_LRiT2_T6eZ6gLbtCuZmKRj-kOevED8wUiufHErgBTvcvYKD5dvLF_D-3LJwKT0_mz8KURZlJm4SiiHeeGYbcsREgN4daPA-ohSR48gvfNBYQDOOKUBZJaZS2J-Nx7ebtHBwECXiTKQ8TH3n-C6gjG_-DFafnXCRl0gf2SC4bdG_MqpEBIy3UIDt7tL9VJiAZYDwHcJnVgvpDhnwwevWvW1FvA6YoxVWjyW6pJ1EPaZUcEEvO5BWjFwrgy4SPX5KU5klfw3sdqApGnObBkxMAsba3m9WMo2hW8glCy5-84L9WzLpQ&h=9UMX7fiDYtVeUDKCvT_UBZAwRm0X0p3lmD7FnYAaNf8 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Accepted","startTime":"2024-03-07T08:47:37.1915997Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:09 GMT - etag: - - '"d000814a-0000-0100-0000-65e97f290000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: C451DEB78FE34FC783F4E49DE96E3F69 Ref B: MAA201060516033 Ref C: 2024-03-07T08:48:09Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice create - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --snssai - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453980580102574&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=RrE5XkbGB2K1-eBHzArb5K_3u2t2rqc-p6jPL_LRiT2_T6eZ6gLbtCuZmKRj-kOevED8wUiufHErgBTvcvYKD5dvLF_D-3LJwKT0_mz8KURZlJm4SiiHeeGYbcsREgN4daPA-ohSR48gvfNBYQDOOKUBZJaZS2J-Nx7ebtHBwECXiTKQ8TH3n-C6gjG_-DFafnXCRl0gf2SC4bdG_MqpEBIy3UIDt7tL9VJiAZYDwHcJnVgvpDhnwwevWvW1FvA6YoxVWjyW6pJ1EPaZUcEEvO5BWjFwrgy4SPX5KU5klfw3sdqApGnObBkxMAsba3m9WMo2hW8glCy5-84L9WzLpQ&h=9UMX7fiDYtVeUDKCvT_UBZAwRm0X0p3lmD7FnYAaNf8 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Accepted","startTime":"2024-03-07T08:47:37.1915997Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:48:39 GMT - etag: - - '"d000814a-0000-0100-0000-65e97f290000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9995' - x-msedge-ref: - - 'Ref A: AE6760D8C18C426DBA064613EF29ABA5 Ref B: MAA201060516033 Ref C: 2024-03-07T08:48:39Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice create - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --snssai - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453980580102574&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=RrE5XkbGB2K1-eBHzArb5K_3u2t2rqc-p6jPL_LRiT2_T6eZ6gLbtCuZmKRj-kOevED8wUiufHErgBTvcvYKD5dvLF_D-3LJwKT0_mz8KURZlJm4SiiHeeGYbcsREgN4daPA-ohSR48gvfNBYQDOOKUBZJaZS2J-Nx7ebtHBwECXiTKQ8TH3n-C6gjG_-DFafnXCRl0gf2SC4bdG_MqpEBIy3UIDt7tL9VJiAZYDwHcJnVgvpDhnwwevWvW1FvA6YoxVWjyW6pJ1EPaZUcEEvO5BWjFwrgy4SPX5KU5klfw3sdqApGnObBkxMAsba3m9WMo2hW8glCy5-84L9WzLpQ&h=9UMX7fiDYtVeUDKCvT_UBZAwRm0X0p3lmD7FnYAaNf8 - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"a8cf61a1-f482-4857-acc3-43863880dc9a*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Succeeded","startTime":"2024-03-07T08:47:37.1915997Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:10 GMT - etag: - - '"d0008b4c-0000-0100-0000-65e97f6c0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 955E5874BCBE4C0EBF1A260B890D8524 Ref B: MAA201060516033 Ref C: 2024-03-07T08:49:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice create - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --snssai - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","name":"slice000003","type":"microsoft.mobilenetwork/mobilenetworks/slices","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:36.6664722Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:36.6664722Z"},"properties":{"provisioningState":"Succeeded","snssai":{"sst":1,"sd":"123abc"}}}' - headers: - cache-control: - - no-cache - content-length: - - '615' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:10 GMT - etag: - - '"c201cba5-0000-0100-0000-65e97f3a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: E8D803CCF2F04098AA6451811DFD4EC2 Ref B: MAA201060516033 Ref C: 2024-03-07T08:49:10Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","name":"slice000003","type":"microsoft.mobilenetwork/mobilenetworks/slices","location":"eastus","systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:36.6664722Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:47:36.6664722Z"},"properties":{"provisioningState":"Succeeded","snssai":{"sst":1,"sd":"123abc"}}}' - headers: - cache-control: - - no-cache - content-length: - - '615' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:12 GMT - etag: - - '"c201cba5-0000-0100-0000-65e97f3a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 6DEEC4C7FB8E47F6BF63E3CD1D4B7E4C Ref B: MAA201060514037 Ref C: 2024-03-07T08:49:12Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus", "properties": {"snssai": {"sd": "123abc", "sst": - 1}}, "tags": {"tag": "test", "tag2": "test2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice update - Connection: - - keep-alive - Content-Length: - - '118' - Content-Type: - - application/json - ParameterSetName: - - --mobile-network-name -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","name":"slice000003","type":"microsoft.mobilenetwork/mobilenetworks/slices","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:36.6664722Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:49:13.2902273Z"},"properties":{"provisioningState":"Accepted","snssai":{"sd":"123abc","sst":1}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453981553214909&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=IuN0xhFfUN_QekazRFGoYoV1bO6lJoU20oAR0YlL0yDaQe-Ba3NkYjvZJ8f5ihEKEdfUJGwJhMK74fim-L7PhCAELutXBgDAWkomOrmWoSAfD5laWmj9W9wjc4LiA_jxcJjeY0TCxQOE-HJwMgAD6WUT4kIODqJ7CQzE8urTPxupArVlNxVn4D7UbK8nVIUFx2CVLeizimnheFQaiD7oUyRBQ9mkjkysqX6oYqIRdLil4xFXaQHM0jgzeaaEhpxYQHsDE4EGLbvpyHddY8NC4ecnHHFDaKXIFQTuP4CpeJhUN-4iEuQatShSbUjEaqmo98VmHIi9WTsogxipDDNAoQ&h=ti_mwa2ImyLckcUrtJFhKYKyNFvMnkYN43-MY3uEAmM - cache-control: - - no-cache - content-length: - - '651' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:14 GMT - etag: - - '"c2019aa7-0000-0100-0000-65e97f8a0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-msedge-ref: - - 'Ref A: A93DBA9D79D04A5E8128BCD0EF6A7CED Ref B: MAA201060514037 Ref C: 2024-03-07T08:49:12Z' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453981553214909&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=IuN0xhFfUN_QekazRFGoYoV1bO6lJoU20oAR0YlL0yDaQe-Ba3NkYjvZJ8f5ihEKEdfUJGwJhMK74fim-L7PhCAELutXBgDAWkomOrmWoSAfD5laWmj9W9wjc4LiA_jxcJjeY0TCxQOE-HJwMgAD6WUT4kIODqJ7CQzE8urTPxupArVlNxVn4D7UbK8nVIUFx2CVLeizimnheFQaiD7oUyRBQ9mkjkysqX6oYqIRdLil4xFXaQHM0jgzeaaEhpxYQHsDE4EGLbvpyHddY8NC4ecnHHFDaKXIFQTuP4CpeJhUN-4iEuQatShSbUjEaqmo98VmHIi9WTsogxipDDNAoQ&h=ti_mwa2ImyLckcUrtJFhKYKyNFvMnkYN43-MY3uEAmM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Accepted","startTime":"2024-03-07T08:49:13.6916651Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:15 GMT - etag: - - '"d0004d4d-0000-0100-0000-65e97f890000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9997' - x-msedge-ref: - - 'Ref A: D2E36666007C4EFD95B900E69810EF2B Ref B: MAA201060514037 Ref C: 2024-03-07T08:49:15Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453981553214909&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=IuN0xhFfUN_QekazRFGoYoV1bO6lJoU20oAR0YlL0yDaQe-Ba3NkYjvZJ8f5ihEKEdfUJGwJhMK74fim-L7PhCAELutXBgDAWkomOrmWoSAfD5laWmj9W9wjc4LiA_jxcJjeY0TCxQOE-HJwMgAD6WUT4kIODqJ7CQzE8urTPxupArVlNxVn4D7UbK8nVIUFx2CVLeizimnheFQaiD7oUyRBQ9mkjkysqX6oYqIRdLil4xFXaQHM0jgzeaaEhpxYQHsDE4EGLbvpyHddY8NC4ecnHHFDaKXIFQTuP4CpeJhUN-4iEuQatShSbUjEaqmo98VmHIi9WTsogxipDDNAoQ&h=ti_mwa2ImyLckcUrtJFhKYKyNFvMnkYN43-MY3uEAmM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Accepted","startTime":"2024-03-07T08:49:13.6916651Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:49:46 GMT - etag: - - '"d0004d4d-0000-0100-0000-65e97f890000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: BF725FC4226D47F5976CFFF0E2A554DC Ref B: MAA201060514037 Ref C: 2024-03-07T08:49:45Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453981553214909&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=IuN0xhFfUN_QekazRFGoYoV1bO6lJoU20oAR0YlL0yDaQe-Ba3NkYjvZJ8f5ihEKEdfUJGwJhMK74fim-L7PhCAELutXBgDAWkomOrmWoSAfD5laWmj9W9wjc4LiA_jxcJjeY0TCxQOE-HJwMgAD6WUT4kIODqJ7CQzE8urTPxupArVlNxVn4D7UbK8nVIUFx2CVLeizimnheFQaiD7oUyRBQ9mkjkysqX6oYqIRdLil4xFXaQHM0jgzeaaEhpxYQHsDE4EGLbvpyHddY8NC4ecnHHFDaKXIFQTuP4CpeJhUN-4iEuQatShSbUjEaqmo98VmHIi9WTsogxipDDNAoQ&h=ti_mwa2ImyLckcUrtJFhKYKyNFvMnkYN43-MY3uEAmM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Accepted","startTime":"2024-03-07T08:49:13.6916651Z"}' - headers: - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:16 GMT - etag: - - '"d0004d4d-0000-0100-0000-65e97f890000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: B307D1C94D224241B794B6B6F1DA6677 Ref B: MAA201060514037 Ref C: 2024-03-07T08:50:16Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453981553214909&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=IuN0xhFfUN_QekazRFGoYoV1bO6lJoU20oAR0YlL0yDaQe-Ba3NkYjvZJ8f5ihEKEdfUJGwJhMK74fim-L7PhCAELutXBgDAWkomOrmWoSAfD5laWmj9W9wjc4LiA_jxcJjeY0TCxQOE-HJwMgAD6WUT4kIODqJ7CQzE8urTPxupArVlNxVn4D7UbK8nVIUFx2CVLeizimnheFQaiD7oUyRBQ9mkjkysqX6oYqIRdLil4xFXaQHM0jgzeaaEhpxYQHsDE4EGLbvpyHddY8NC4ecnHHFDaKXIFQTuP4CpeJhUN-4iEuQatShSbUjEaqmo98VmHIi9WTsogxipDDNAoQ&h=ti_mwa2ImyLckcUrtJFhKYKyNFvMnkYN43-MY3uEAmM - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"e78e886b-1c76-47ae-b888-6181615daf1d*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Succeeded","startTime":"2024-03-07T08:49:13.6916651Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:47 GMT - etag: - - '"1c009fc2-0000-0600-0000-65e97fcc0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: E009BE46947D4E78933AA7727C330876 Ref B: MAA201060514037 Ref C: 2024-03-07T08:50:47Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice update - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g --tags - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","name":"slice000003","type":"microsoft.mobilenetwork/mobilenetworks/slices","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:36.6664722Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:49:13.2902273Z"},"properties":{"provisioningState":"Succeeded","snssai":{"sst":1,"sd":"123abc"}}}' - headers: - cache-control: - - no-cache - content-length: - - '652' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:49 GMT - etag: - - '"c201b8a7-0000-0100-0000-65e97f900000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 8621095A320A488784D93B82221DAB3E Ref B: MAA201060514037 Ref C: 2024-03-07T08:50:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice list - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","name":"slice000003","type":"microsoft.mobilenetwork/mobilenetworks/slices","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:36.6664722Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:49:13.2902273Z"},"properties":{"provisioningState":"Succeeded","snssai":{"sst":1,"sd":"123abc"}}}]}' - headers: - cache-control: - - no-cache - content-length: - - '664' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: D6C7B03C978343CDAA907BF5AB000062 Ref B: MAA201060516037 Ref C: 2024-03-07T08:50:50Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice show - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003?api-version=2023-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","name":"slice000003","type":"microsoft.mobilenetwork/mobilenetworks/slices","location":"eastus","tags":{"tag":"test","tag2":"test2"},"systemData":{"createdBy":"v-jingszhang@microsoft.com","createdByType":"User","createdAt":"2024-03-07T08:47:36.6664722Z","lastModifiedBy":"v-jingszhang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-03-07T08:49:13.2902273Z"},"properties":{"provisioningState":"Succeeded","snssai":{"sst":1,"sd":"123abc"}}}' - headers: - cache-control: - - no-cache - content-length: - - '652' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:52 GMT - etag: - - '"c201b8a7-0000-0100-0000-65e97f900000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9998' - x-msedge-ref: - - 'Ref A: D1BDFF23C3CF48E08F6AC2560509B805 Ref B: MAA201060515053 Ref C: 2024-03-07T08:50:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003?api-version=2023-09-01 - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453982557370952&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=o8pjF1av35doXh9LGFZFeJxz_A9C9RP2zl1C60JNl8mYo0necrZkLMTRNWo9RvDcoyvp3kyl6cD27-0JtSESm4PaOtzr9yetznhqKE9VicDZo4UncRFzm9vyuoXo58EJ4A0RG27YeqiZuzwl4lPjZazI8bia069cUlYJSx4wtDE5nksqamY_xBu3xLgEjP7b89ywTDkuRHU-bTg31Xd1dwEcqRYmkjId24cS1AtFKNr22gIaqbHFsMmqMArxrwLfDJTugSiCf749UE6GmJrz9GZfZy-QdSGQk9gzC7h71SBuyL4S6GkSaiuKWgtejalFk79Oe8DZ39BJ9ZWTbSFgvg&h=UZFzJ9bfW3Hw2PkyO4J-WPfsE8lN_C0Gx1cRIgBqVDQ - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:55 GMT - etag: - - '"c201faa9-0000-0100-0000-65e97fef0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453982557527186&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=TSDSdwsmnMAD8K3DAh3c_esUFMwmDSg0GWxaKJ1xWrBwyoA_coWjkVfMuo5kpa8reMeQYMJQpDObXkvsFKTNRMiun4daqw21Uxc-Owmi1H_oP1n8xBc8dNwz7V8pvu7Nr4BdPA8cyW5aAU62aPjNVmIgCPUcYmK_UgPUo-uYvNLTT7Ebfq8znEYIFh-N9Hk9wXSmFx-CZuaVXzmyxgnDp6Da3_8Ht3hV_i4i90BNLIhmpGOhC6vVh4_J7UVeJEB3hb8T3FcXYQVOzJK-EuBcmeNJmDqv7DvKP5Df7IGdbHHRaiUGug6X73K0hsl9snNuJZMM1h2ZWW1QnVqfv7xsSQ&h=4vKKFxgoQ5SuJb8LuxIHc4TpULuQsyye3ZVyvJ-wSlI - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-build-version: - - 1.0.1 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-msedge-ref: - - 'Ref A: CB28423A4E1141BA81C465FD5EB76C73 Ref B: MAA201060516009 Ref C: 2024-03-07T08:50:53Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice delete - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453982557370952&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=o8pjF1av35doXh9LGFZFeJxz_A9C9RP2zl1C60JNl8mYo0necrZkLMTRNWo9RvDcoyvp3kyl6cD27-0JtSESm4PaOtzr9yetznhqKE9VicDZo4UncRFzm9vyuoXo58EJ4A0RG27YeqiZuzwl4lPjZazI8bia069cUlYJSx4wtDE5nksqamY_xBu3xLgEjP7b89ywTDkuRHU-bTg31Xd1dwEcqRYmkjId24cS1AtFKNr22gIaqbHFsMmqMArxrwLfDJTugSiCf749UE6GmJrz9GZfZy-QdSGQk9gzC7h71SBuyL4S6GkSaiuKWgtejalFk79Oe8DZ39BJ9ZWTbSFgvg&h=UZFzJ9bfW3Hw2PkyO4J-WPfsE8lN_C0Gx1cRIgBqVDQ - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Deleting","startTime":"2024-03-07T08:50:55.3078837Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453982567831012&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=TXxrnSsUDmNhv3cMNCIreSAPX_mIgyxw76iIY-LSj3rGFnkfyZPnsaYe_bV34AY7-GbocJdQ4kMM0Qce5BfjG6yBPJ8RamQxEMRnfFEr6otuk3_Ez3itHmgozCjs2aAsq6Fz9nSnryPnprazgWI3HMmKrjA6YbQ5-tbb3CiI4mXgLJV2oBOa_oqic4_fhezKzURamo3W3kEGaswKrldIvMdwA3pcqZO4Thrpb8L9QguwJ5JpneydXnIhhXaKa5kTV9jls4Y9ChQ2cv2zPsY5oBRMfcv6jTO7yOMdDDRAeuGFiPsNtBcL7wF80vuMI6IfaoxR7QGXWR9UK_MBYiPpIQ&h=bufTvMgMpZ-wXQ8qsUcczst9bdXDj_jrhG8mPFLReto - cache-control: - - no-cache - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:50:56 GMT - etag: - - '"d0002750-0000-0100-0000-65e97fef0000"' - expires: - - '-1' - location: - - https://management.azure.com/providers/Microsoft.MobileNetwork/locations/eastus/operationStatuses/c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453982567831012&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=TXxrnSsUDmNhv3cMNCIreSAPX_mIgyxw76iIY-LSj3rGFnkfyZPnsaYe_bV34AY7-GbocJdQ4kMM0Qce5BfjG6yBPJ8RamQxEMRnfFEr6otuk3_Ez3itHmgozCjs2aAsq6Fz9nSnryPnprazgWI3HMmKrjA6YbQ5-tbb3CiI4mXgLJV2oBOa_oqic4_fhezKzURamo3W3kEGaswKrldIvMdwA3pcqZO4Thrpb8L9QguwJ5JpneydXnIhhXaKa5kTV9jls4Y9ChQ2cv2zPsY5oBRMfcv6jTO7yOMdDDRAeuGFiPsNtBcL7wF80vuMI6IfaoxR7QGXWR9UK_MBYiPpIQ&h=bufTvMgMpZ-wXQ8qsUcczst9bdXDj_jrhG8mPFLReto - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: C0164A5B0C1843DCB8A6A11F1A9146D6 Ref B: MAA201060516009 Ref C: 2024-03-07T08:50:55Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice delete - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453982557370952&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=o8pjF1av35doXh9LGFZFeJxz_A9C9RP2zl1C60JNl8mYo0necrZkLMTRNWo9RvDcoyvp3kyl6cD27-0JtSESm4PaOtzr9yetznhqKE9VicDZo4UncRFzm9vyuoXo58EJ4A0RG27YeqiZuzwl4lPjZazI8bia069cUlYJSx4wtDE5nksqamY_xBu3xLgEjP7b89ywTDkuRHU-bTg31Xd1dwEcqRYmkjId24cS1AtFKNr22gIaqbHFsMmqMArxrwLfDJTugSiCf749UE6GmJrz9GZfZy-QdSGQk9gzC7h71SBuyL4S6GkSaiuKWgtejalFk79Oe8DZ39BJ9ZWTbSFgvg&h=UZFzJ9bfW3Hw2PkyO4J-WPfsE8lN_C0Gx1cRIgBqVDQ - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Succeeded","startTime":"2024-03-07T08:50:55.3078837Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:56:50 GMT - etag: - - '"1c00f7c4-0000-0600-0000-65e9806f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: 3B4F695F8D464C7B9AE58254EB8EBB84 Ref B: MAA201060515027 Ref C: 2024-03-07T08:56:49Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - mobile-network slice delete - Connection: - - keep-alive - ParameterSetName: - - --mobile-network-name -n -g -y - User-Agent: - - AZURECLI/2.58.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5?api-version=2023-09-01&t=638453982557527186&c=MIIHADCCBeigAwIBAgITfARk1TE_ZglsTRafPwAABGTVMTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMTUwODE5WhcNMjUwMTI0MTUwODE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK902W8oGHqHsYxfQcAXt6Ljumrh6DLgGihvCAJqh_U0j8R4Jupt1lXUnhMY-cA7JAT9q7SEoTZskdrko1uzzlaykxYQUacRB8irTYwbgK6DCIqWuOd2G-W2g3eWAyxRb-Dffjnsz-vBsjd1fyP0MvIXDSDMzp2oK65BSxTbBiStV3YxtKZ3eONvKga4d77iEw0zAZHIFkt0PSHzHO7kk-b_trhadwDxPYnjrQOGmouEj7HuNoC8H7-vKZvgbeplfrHtJO9vq0TOUUqIGlT236cbPe62XQNJRim_aa3chEFUmacjUnjEZtgJjup_tDQ0iV_Oe0ZqRBBGzpjoK23Wch0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSnxeoeDA6bR-Af5MXqnvahGPcbyTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGj6QqaLOPa3RZUHMPeeSymifn86nh52yaIojZbdHUiE_o0iWzV-2ZRZOxE2IgkOrAeMYXIUhMoqV7XxTwfpi6zGwrzIeuTWMbNjgzbIZGIMJCbUyNbvEkGqxvBpcwzATT8KQYU2-J2iL5slKYZIACN6THLJn5BI6dAecS1X4PJ5vNAgI8qlsYmnafZSCIrWLUQQUsZeLUaxy3t-hozvyfVe-B-nktPdgNv3-iCsI0AtlvezwfFcJXQHQeNByXg5oxXPIe02On7O1u8swvMta16Va5_kDzD80TS3LYzVk2nzUVxEqPaGhpA-vs_ttjm7hDhYk80OIsQ_YZd286sA58Q&s=TSDSdwsmnMAD8K3DAh3c_esUFMwmDSg0GWxaKJ1xWrBwyoA_coWjkVfMuo5kpa8reMeQYMJQpDObXkvsFKTNRMiun4daqw21Uxc-Owmi1H_oP1n8xBc8dNwz7V8pvu7Nr4BdPA8cyW5aAU62aPjNVmIgCPUcYmK_UgPUo-uYvNLTT7Ebfq8znEYIFh-N9Hk9wXSmFx-CZuaVXzmyxgnDp6Da3_8Ht3hV_i4i90BNLIhmpGOhC6vVh4_J7UVeJEB3hb8T3FcXYQVOzJK-EuBcmeNJmDqv7DvKP5Df7IGdbHHRaiUGug6X73K0hsl9snNuJZMM1h2ZWW1QnVqfv7xsSQ&h=4vKKFxgoQ5SuJb8LuxIHc4TpULuQsyye3ZVyvJ-wSlI - response: - body: - string: '{"id":"/providers/Microsoft.MobileNetwork/locations/EASTUS/operationStatuses/c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","name":"c0e50f59-6f07-4e29-bde7-0bd6706e3108*D265C051B1A448BEE931E80B8D889DC992FAB8D74B0305EF89BC69A6C38C0AA5","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mobile_network000001/providers/Microsoft.MobileNetwork/mobileNetworks/mobile_network_000002/slices/slice000003","status":"Succeeded","startTime":"2024-03-07T08:50:55.3078837Z","properties":null}' - headers: - cache-control: - - no-cache - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 07 Mar 2024 08:56:51 GMT - etag: - - '"1c00f7c4-0000-0600-0000-65e9806f0000"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-tenant-resource-requests: - - '9999' - x-msedge-ref: - - 'Ref A: E617CC32225840A38027ABCB7AD8882E Ref B: MAA201060515027 Ref C: 2024-03-07T08:56:50Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/mobile-network/azext_mobile_network/tests/latest/test_mobile_network.py b/src/mobile-network/azext_mobile_network/tests/latest/test_mobile_network.py deleted file mode 100644 index ceffeba5264..00000000000 --- a/src/mobile-network/azext_mobile_network/tests/latest/test_mobile_network.py +++ /dev/null @@ -1,465 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer - - -class MobileNetworkScenario(ScenarioTest): - @ResourceGroupPreparer(name_prefix='cli_test_mobile_network', location='eastus') - def test_mobile_network(self, resource_group): - self.kwargs.update({ - 'mobile_network': self.create_random_name('mobile_network_', 20), - }) - self.cmd('mobile-network create -n {mobile_network} -g {rg} --identifier {{mcc:001,mnc:01}}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01') - ]) - self.cmd('mobile-network update -n {mobile_network} -g {rg} --tags {{tag:test,tag2:test2}}', checks=[ - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network list -g {rg}', checks=[ - self.check('[0].publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('[0].publicLandMobileNetworkIdentifier.mnc', '01'), - self.check('[0].tags.tag', 'test'), - self.check('[0].tags.tag2', 'test2') - ]) - self.cmd('mobile-network show -n {mobile_network} -g {rg}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network delete -n {mobile_network} -g {rg} -y') - - @ResourceGroupPreparer(name_prefix='cli_test_mobile_network', location='eastus') - def test_mobile_network_site(self, resource_group): - self.kwargs.update({ - 'mobile_network': self.create_random_name('mobile_network_', 20), - 'site_name': self.create_random_name('site_', 10) - }) - self.cmd('mobile-network create -n {mobile_network} -g {rg} --identifier {{mcc:001,mnc:01}}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01') - ]) - self.cmd('mobile-network site create --mobile-network-name {mobile_network} -n {site_name} -g {rg} ', checks=[ - self.check('name', '{site_name}'), - ]) - self.cmd('mobile-network site update --mobile-network-name {mobile_network} -n {site_name} -g {rg} --tags {{tag:test,tag2:test2}}', checks=[ - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network site list --mobile-network-name {mobile_network} -g {rg}', checks=[ - self.check('[0].tags.tag', 'test'), - self.check('[0].tags.tag2', 'test2') - ]) - self.cmd('mobile-network site show --mobile-network-name {mobile_network} -n {site_name} -g {rg}', checks=[ - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network site delete --mobile-network-name {mobile_network} -n {site_name} -g {rg} -y') - - @ResourceGroupPreparer(name_prefix='cli_test_mobile_network', location='eastus') - def test_mobile_network_pccp(self, resource_group): - self.kwargs.update({ - 'mobile_network': self.create_random_name('mobile_network_', 20), - 'site_name': self.create_random_name('site_', 10), - 'pccp_name': self.create_random_name('pccp_', 10) - }) - self.cmd('mobile-network create -n {mobile_network} -g {rg} --identifier {{mcc:001,mnc:01}}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01') - ]) - site = self.cmd('mobile-network site create --mobile-network-name {mobile_network} -n {site_name} -g {rg} ', checks=[ - self.check('name', '{site_name}'), - ]).get_output_in_json() - self.kwargs.update({ - 'site_id': site['id'] - }) - self.cmd('mobile-network pccp create -n {pccp_name} -g {rg} --access-interface {{name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}} --local-diagnostics {{authentication-type:AAD}} --platform {{type:AKS-HCI}} --sites [{{id:{site_id}}}] --sku G0', checks=[ - self.check('controlPlaneAccessInterface.ipv4Address', '10.28.128.2'), - self.check('controlPlaneAccessInterface.ipv4Gateway', '10.28.128.1'), - self.check('controlPlaneAccessInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('controlPlaneAccessInterface.name', 'N2'), - self.check('localDiagnosticsAccess.authenticationType', 'AAD'), - self.check('platform.type', 'AKS-HCI'), - self.check('name', '{pccp_name}'), - self.check('sku', 'G0'), - self.check('sites[0].id', '{site_id}') - ]) - self.cmd('mobile-network pccp update -n {pccp_name} -g {rg} --ue-mtu 1500 --tags {{tag:test,tag2:test2}}', checks=[ - self.check('ueMtu', '1500'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network pccp list -g {rg} ', checks=[ - self.check('[0].controlPlaneAccessInterface.ipv4Address', '10.28.128.2'), - self.check('[0].controlPlaneAccessInterface.ipv4Gateway', '10.28.128.1'), - self.check('[0].controlPlaneAccessInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('[0].controlPlaneAccessInterface.name', 'N2'), - self.check('[0].localDiagnosticsAccess.authenticationType', 'AAD'), - self.check('[0].platform.type', 'AKS-HCI'), - self.check('[0].name', '{pccp_name}'), - self.check('[0].sku', 'G0'), - self.check('[0].ueMtu', '1500'), - ]) - self.cmd('mobile-network pccp show -n {pccp_name} -g {rg}', checks=[ - self.check('controlPlaneAccessInterface.ipv4Address', '10.28.128.2'), - self.check('controlPlaneAccessInterface.ipv4Gateway', '10.28.128.1'), - self.check('controlPlaneAccessInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('controlPlaneAccessInterface.name', 'N2'), - self.check('localDiagnosticsAccess.authenticationType', 'AAD'), - self.check('platform.type', 'AKS-HCI'), - self.check('name', '{pccp_name}'), - self.check('sku', 'G0'), - self.check('ueMtu', '1500'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network pccp version list') - self.cmd('mobile-network pccp version show --version-name pmn-2211-0-80', checks=[ - self.check('name', 'pmn-2211-0-80') - ]) - self.cmd('mobile-network pccp delete -n {pccp_name} -g {rg} -y') - - @ResourceGroupPreparer(name_prefix='cli_test_mobile_network', location='eastus') - def test_mobile_network_pcdp(self, resource_group): - self.kwargs.update({ - 'mobile_network': self.create_random_name('mobile_network_', 20), - 'site_name': self.create_random_name('site_', 10), - 'pccp_name': self.create_random_name('pccp_', 10), - 'pcdp_name': self.create_random_name('pcdp_', 10), - }) - self.cmd('mobile-network create -n {mobile_network} -g {rg} --identifier {{mcc:001,mnc:01}}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01') - ]) - site = self.cmd('mobile-network site create --mobile-network-name {mobile_network} -n {site_name} -g {rg} ', checks=[ - self.check('name', '{site_name}'), - ]).get_output_in_json() - self.kwargs.update({ - 'site_id': site['id'] - }) - self.cmd('mobile-network pccp create -n {pccp_name} -g {rg} --access-interface {{name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}} --local-diagnostics {{authentication-type:AAD}} --platform {{type:AKS-HCI}} --sites [{{id:{site_id}}}] --sku G0', checks=[ - self.check('controlPlaneAccessInterface.ipv4Address', '10.28.128.2'), - self.check('controlPlaneAccessInterface.ipv4Gateway', '10.28.128.1'), - self.check('controlPlaneAccessInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('controlPlaneAccessInterface.name', 'N2'), - self.check('localDiagnosticsAccess.authenticationType', 'AAD'), - self.check('platform.type', 'AKS-HCI'), - self.check('name', '{pccp_name}'), - self.check('sku', 'G0'), - self.check('sites[0].id', '{site_id}') - ]) - self.cmd('mobile-network pcdp create -n {pcdp_name} -g {rg} --pccp-name {pccp_name} --access-interface {{name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}}', checks=[ - self.check('userPlaneAccessInterface.ipv4Address', '10.28.128.2'), - self.check('userPlaneAccessInterface.ipv4Gateway', '10.28.128.1'), - self.check('userPlaneAccessInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('userPlaneAccessInterface.name', 'N2') - ]) - self.cmd('mobile-network pcdp update -n {pcdp_name} -g {rg} --pccp-name {pccp_name} --tags {{tag:test,tag2:test2}}', checks=[ - self.check('userPlaneAccessInterface.ipv4Address', '10.28.128.2'), - self.check('userPlaneAccessInterface.ipv4Gateway', '10.28.128.1'), - self.check('userPlaneAccessInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('userPlaneAccessInterface.name', 'N2'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network pcdp list -g {rg} --pccp-name {pccp_name}', checks=[ - self.check('[0].userPlaneAccessInterface.ipv4Address', '10.28.128.2'), - self.check('[0].userPlaneAccessInterface.ipv4Gateway', '10.28.128.1'), - self.check('[0].userPlaneAccessInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('[0].userPlaneAccessInterface.name', 'N2'), - self.check('[0].tags.tag', 'test'), - self.check('[0].tags.tag2', 'test2') - ]) - self.cmd('mobile-network pcdp show -g {rg} -n {pcdp_name} --pccp-name {pccp_name}', checks=[ - self.check('userPlaneAccessInterface.ipv4Address', '10.28.128.2'), - self.check('userPlaneAccessInterface.ipv4Gateway', '10.28.128.1'), - self.check('userPlaneAccessInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('userPlaneAccessInterface.name', 'N2'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network pcdp delete -g {rg} -n {pcdp_name} --pccp-name {pccp_name} -y') - - @ResourceGroupPreparer(name_prefix='cli_test_mobile_network', location='eastus') - def test_mobile_network_data_network(self, resource_group): - self.kwargs.update({ - 'mobile_network': self.create_random_name('mobile_network_', 20), - 'data_network': self.create_random_name('dn', 10) - }) - self.cmd('mobile-network create -n {mobile_network} -g {rg} --identifier {{mcc:001,mnc:01}}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01') - ]) - self.cmd('mobile-network data-network create -n {data_network} -g {rg} --mobile-network-name {mobile_network}', checks=[ - self.check('name', '{data_network}') - ]) - self.cmd('mobile-network data-network update -n {data_network} -g {rg} --mobile-network-name {mobile_network} --tags {{tag:test,tag2:test2}}', checks=[ - self.check('name', '{data_network}'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network data-network list --mobile-network-name {mobile_network} -g {rg} ', checks=[ - self.check('[0].name', '{data_network}'), - self.check('[0].tags.tag', 'test'), - self.check('[0].tags.tag2', 'test2') - ]) - self.cmd('mobile-network data-network show -n {data_network} --mobile-network-name {mobile_network} -g {rg}', checks=[ - self.check('name', '{data_network}'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network data-network delete -n {data_network} --mobile-network-name {mobile_network} -g {rg} -y') - - @ResourceGroupPreparer(name_prefix='cli_test_mobile_network', location='eastus') - def test_mobile_network_attached_data_network(self, resource_group): - self.kwargs.update({ - 'mobile_network': self.create_random_name('mobile_network_', 20), - 'site_name': self.create_random_name('site_', 10), - 'pccp_name': self.create_random_name('pccp', 10), - 'pcdp_name': self.create_random_name('pcdp', 10), - 'data_network': self.create_random_name('dn', 10) - }) - self.cmd('mobile-network create -n {mobile_network} -g {rg} --identifier {{mcc:001,mnc:01}}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01') - ]) - site = self.cmd('mobile-network site create --mobile-network-name {mobile_network} -n {site_name} -g {rg} ', checks=[ - self.check('name', '{site_name}'), - ]).get_output_in_json() - self.kwargs.update({ - 'site_id': site['id'] - }) - self.cmd('mobile-network pccp create -n {pccp_name} -g {rg} --access-interface {{name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}} --local-diagnostics {{authentication-type:AAD}} --platform {{type:AKS-HCI}} --sites [{{id:{site_id}}}] --sku G0', checks=[ - self.check('controlPlaneAccessInterface.ipv4Address', '10.28.128.2'), - self.check('controlPlaneAccessInterface.ipv4Gateway', '10.28.128.1'), - self.check('controlPlaneAccessInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('controlPlaneAccessInterface.name', 'N2'), - self.check('localDiagnosticsAccess.authenticationType', 'AAD'), - self.check('platform.type', 'AKS-HCI'), - self.check('name', '{pccp_name}'), - self.check('sku', 'G0'), - self.check('sites[0].id', '{site_id}') - ]) - self.cmd('mobile-network pcdp create -n {pcdp_name} -g {rg} --pccp-name {pccp_name} --access-interface {{name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}}', checks=[ - self.check('userPlaneAccessInterface.ipv4Address', '10.28.128.2'), - self.check('userPlaneAccessInterface.ipv4Gateway', '10.28.128.1'), - self.check('userPlaneAccessInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('userPlaneAccessInterface.name', 'N2') - ]) - self.cmd('mobile-network data-network create -n {data_network} -g {rg} --mobile-network-name {mobile_network}', checks=[ - self.check('name', '{data_network}') - ]) - self.cmd('mobile-network attached-data-network create -n {data_network} -g {rg} --pccp-name {pccp_name} --pcdp-name {pcdp_name} --dns-addresses [1.1.1.1] --data-interface {{name:N2,ipv4Address:10.28.128.2,ipv4Subnet:10.28.128.0/24,ipv4Gateway:10.28.128.1}} --address-pool [2.2.0.0/16]', checks=[ - self.check('dnsAddresses[0]', '1.1.1.1'), - self.check('userPlaneDataInterface.ipv4Address', '10.28.128.2'), - self.check('userPlaneDataInterface.ipv4Gateway', '10.28.128.1'), - self.check('userPlaneDataInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('userPlaneDataInterface.name', 'N2') - ]) - self.cmd('mobile-network attached-data-network update -n {data_network} -g {rg} --pccp-name {pccp_name} --pcdp-name {pcdp_name} --tags {{tag:test,tag2:test2}}', checks=[ - self.check('dnsAddresses[0]', '1.1.1.1'), - self.check('userPlaneDataInterface.ipv4Address', '10.28.128.2'), - self.check('userPlaneDataInterface.ipv4Gateway', '10.28.128.1'), - self.check('userPlaneDataInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('userPlaneDataInterface.name', 'N2'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network attached-data-network list -g {rg} --pccp-name {pccp_name} --pcdp-name {pcdp_name}', checks=[ - self.check('[0].dnsAddresses[0]', '1.1.1.1'), - self.check('[0].userPlaneDataInterface.ipv4Address', '10.28.128.2'), - self.check('[0].userPlaneDataInterface.ipv4Gateway', '10.28.128.1'), - self.check('[0].userPlaneDataInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('[0].userPlaneDataInterface.name', 'N2'), - self.check('[0].tags.tag', 'test'), - self.check('[0].tags.tag2', 'test2') - ]) - self.cmd('mobile-network attached-data-network show -n {data_network} --pccp-name {pccp_name} --pcdp-name {pcdp_name} -g {rg}', checks=[ - self.check('dnsAddresses[0]', '1.1.1.1'), - self.check('userPlaneDataInterface.ipv4Address', '10.28.128.2'), - self.check('userPlaneDataInterface.ipv4Gateway', '10.28.128.1'), - self.check('userPlaneDataInterface.ipv4Subnet', '10.28.128.0/24'), - self.check('userPlaneDataInterface.name', 'N2'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network attached-data-network delete -n {data_network} --pccp-name {pccp_name} --pcdp-name {pcdp_name} -g {rg} -y') - - @ResourceGroupPreparer(name_prefix='cli_test_mobile_network', location='eastus') - def test_mobile_network_service(self, resource_group): - self.kwargs.update({ - 'mobile_network': self.create_random_name('mobile_network_', 20), - 'service': self.create_random_name('ser', 10) - }) - self.cmd('mobile-network create -n {mobile_network} -g {rg} --identifier {{mcc:001,mnc:01}}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01') - ]) - self.cmd('mobile-network service create -n {service} -g {rg} --mobile-network-name {mobile_network} --pcc-rules [{{ruleName:default-rule,rulePrecedence:10,serviceDataFlowTemplates:[{{templateName:IP-to-server,direction:Uplink,protocol:[ip],remoteIpList:[10.3.4.0/24]}}]}}] --service-precedence 10', checks=[ - self.check('pccRules[0].ruleName', 'default-rule'), - self.check('pccRules[0].rulePrecedence', '10'), - self.check('pccRules[0].serviceDataFlowTemplates[0].direction', 'Uplink'), - self.check('pccRules[0].serviceDataFlowTemplates[0].protocol[0]', 'ip'), - self.check('pccRules[0].serviceDataFlowTemplates[0].remoteIpList[0]', '10.3.4.0/24'), - self.check('pccRules[0].serviceDataFlowTemplates[0].templateName', 'IP-to-server'), - self.check('servicePrecedence', '10') - ]) - self.cmd('mobile-network service update --mobile-network-name {mobile_network} -g {rg} -n {service} --tags {{tag:test,tag2:test2}}', checks=[ - self.check('pccRules[0].ruleName', 'default-rule'), - self.check('pccRules[0].rulePrecedence', '10'), - self.check('pccRules[0].serviceDataFlowTemplates[0].direction', 'Uplink'), - self.check('pccRules[0].serviceDataFlowTemplates[0].protocol[0]', 'ip'), - self.check('pccRules[0].serviceDataFlowTemplates[0].remoteIpList[0]', '10.3.4.0/24'), - self.check('pccRules[0].serviceDataFlowTemplates[0].templateName', 'IP-to-server'), - self.check('servicePrecedence', '10'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network service list --mobile-network-name {mobile_network} -g {rg} ', checks=[ - self.check('[0].pccRules[0].ruleName', 'default-rule'), - self.check('[0].pccRules[0].rulePrecedence', '10'), - self.check('[0].pccRules[0].serviceDataFlowTemplates[0].direction', 'Uplink'), - self.check('[0].pccRules[0].serviceDataFlowTemplates[0].protocol[0]', 'ip'), - self.check('[0].pccRules[0].serviceDataFlowTemplates[0].remoteIpList[0]', '10.3.4.0/24'), - self.check('[0].pccRules[0].serviceDataFlowTemplates[0].templateName', 'IP-to-server'), - self.check('[0].servicePrecedence', '10'), - self.check('[0].tags.tag', 'test'), - self.check('[0].tags.tag2', 'test2') - ]) - self.cmd('mobile-network service show --mobile-network-name {mobile_network} -n {service} -g {rg}', checks=[ - self.check('pccRules[0].ruleName', 'default-rule'), - self.check('pccRules[0].rulePrecedence', '10'), - self.check('pccRules[0].serviceDataFlowTemplates[0].direction', 'Uplink'), - self.check('pccRules[0].serviceDataFlowTemplates[0].protocol[0]', 'ip'), - self.check('pccRules[0].serviceDataFlowTemplates[0].remoteIpList[0]', '10.3.4.0/24'), - self.check('pccRules[0].serviceDataFlowTemplates[0].templateName', 'IP-to-server'), - self.check('servicePrecedence', '10'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network service delete --mobile-network-name {mobile_network} -n {service} -g {rg} -y') - - @ResourceGroupPreparer(name_prefix='cli_test_mobile_network', location='eastus') - def test_mobile_network_sim(self, resource_group): - self.kwargs.update({ - 'mobile_network': self.create_random_name('mobile_network_', 20), - 'sim_group': self.create_random_name('simgroup', 15), - 'sim': self.create_random_name('sim', 10), - }) - mobile_network = self.cmd('mobile-network create -n {mobile_network} -g {rg} --identifier {{mcc:001,mnc:01}}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01') - ]).get_output_in_json() - self.kwargs.update({ - 'mobile_network_id': mobile_network['id'] - }) - self.cmd('mobile-network sim group create -n {sim_group} -g {rg} --mobile-network {{id:{mobile_network_id}}}', checks=[ - self.check('mobileNetwork.id', '{mobile_network_id}'), - self.check('name', '{sim_group}') - ]) - self.cmd('mobile-network sim group update -n {sim_group} -g {rg} --tags {{tag:test,tag2:test2}}', checks=[ - self.check('mobileNetwork.id', '{mobile_network_id}'), - self.check('name', '{sim_group}'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network sim group list -g {rg}', checks=[ - self.check('[0].mobileNetwork.id', '{mobile_network_id}'), - self.check('[0].name', '{sim_group}'), - self.check('[0].tags.tag', 'test'), - self.check('[0].tags.tag2', 'test2') - ]) - self.cmd('mobile-network sim group show -n {sim_group} -g {rg}', checks=[ - self.check('mobileNetwork.id', '{mobile_network_id}'), - self.check('name', '{sim_group}'), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network sim create -g {rg} --sim-group-name {sim_group} -n {sim} --international-msi 0000000000 --operator-key-code 00000000000000000000000000000000 --authentication-key 00000000000000000000000000000000', checks=[ - self.check('internationalMobileSubscriberIdentity', '0000000000'), - self.check('name', '{sim}') - ]) - self.cmd('mobile-network sim list -g {rg} --sim-group-name {sim_group} ', checks=[ - self.check('[0].internationalMobileSubscriberIdentity', '0000000000'), - self.check('[0].name', '{sim}') - ]) - self.cmd('mobile-network sim show -g {rg} -n {sim} --sim-group-name {sim_group} ', checks=[ - self.check('internationalMobileSubscriberIdentity', '0000000000'), - self.check('name', '{sim}') - ]) - self.cmd('mobile-network sim delete -g {rg} -n {sim} --sim-group-name {sim_group} -y') - self.cmd('mobile-network sim group delete -n {sim_group} -g {rg} -y') - - @ResourceGroupPreparer(name_prefix='cli_test_mobile_network', location='eastus') - def test_mobile_network_slice(self, resource_group): - self.kwargs.update({ - 'mobile_network': self.create_random_name('mobile_network_', 20), - 'slice': self.create_random_name('slice', 10) - }) - self.cmd('mobile-network create -n {mobile_network} -g {rg} --identifier {{mcc:001,mnc:01}}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01') - ]) - self.cmd('mobile-network slice create --mobile-network-name {mobile_network} -n {slice} -g {rg} --snssai {{sst:1,sd:123abc}}', checks=[ - self.check('name', '{slice}'), - self.check('snssai.sd', '123abc'), - self.check('snssai.sst', 1) - ]) - self.cmd('mobile-network slice update --mobile-network-name {mobile_network} -n {slice} -g {rg} --tags {{tag:test,tag2:test2}}', checks=[ - self.check('name', '{slice}'), - self.check('snssai.sd', '123abc'), - self.check('snssai.sst', 1), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network slice list --mobile-network-name {mobile_network} -g {rg}', checks=[ - self.check('[0].name', '{slice}'), - self.check('[0].snssai.sd', '123abc'), - self.check('[0].snssai.sst', 1), - self.check('[0].tags.tag', 'test'), - self.check('[0].tags.tag2', 'test2') - ]) - self.cmd('mobile-network slice show --mobile-network-name {mobile_network} -n {slice} -g {rg}', checks=[ - self.check('name', '{slice}'), - self.check('snssai.sd', '123abc'), - self.check('snssai.sst', 1), - self.check('tags.tag', 'test'), - self.check('tags.tag2', 'test2') - ]) - self.cmd('mobile-network slice delete --mobile-network-name {mobile_network} -n {slice} -g {rg} -y') - - @ResourceGroupPreparer(name_prefix='cli_test_mobile_network', location='centraluseuap') - def test_mobile_network_bulk_sim_upload(self, resource_group): - self.kwargs.update({ - 'mobile_network': self.create_random_name('mobile_network_', 20), - 'sim_group': self.create_random_name('simgroup', 15), - }) - mobile_network = self.cmd('mobile-network create -n {mobile_network} -g {rg} --identifier {{mcc:001,mnc:01}}', checks=[ - self.check('publicLandMobileNetworkIdentifier.mcc', '001'), - self.check('publicLandMobileNetworkIdentifier.mnc', '01') - ]).get_output_in_json() - self.kwargs.update({ - 'mobile_network_id': mobile_network['id'] - }) - sim_group = self.cmd('mobile-network sim group create -n {sim_group} -g {rg} --mobile-network {{id:{mobile_network_id}}}', checks=[ - self.check('mobileNetwork.id', '{mobile_network_id}'), - self.check('name', '{sim_group}') - ]).get_output_in_json() - self.kwargs.update({ - 'sim_group_id': sim_group['id'], - 'sims': '{name:bulk-upload-sim-01,authentication-key:00000000000000000000000000000000,operator-key-code:00000000000000000000000000000000,international-msi:0000000000},{name:bulk-upload-sim-02,authentication-key:00000000000000000000000000000001,operator-key-code:00000000000000000000000000000001,international-msi:0000000001}' - }) - self.cmd('mobile-network sim group bulk-upload-sims -g {rg} --sim-group-name {sim_group} --sims ["{sims}"] ', checks=[ - self.check('status', 'Succeeded') - ]) - self.cmd('mobile-network sim group bulk-delete-sims -g {rg} --sim-group-name {sim_group} --sims [bulk-upload-sim-01,bulk-upload-sim-02] ', checks=[ - self.check('status', 'Succeeded') - ]) - self.cmd('mobile-network sim group delete -n {sim_group} -g {rg} -y') diff --git a/src/mobile-network/setup.cfg b/src/mobile-network/setup.cfg deleted file mode 100644 index 2fdd96e5d39..00000000000 --- a/src/mobile-network/setup.cfg +++ /dev/null @@ -1 +0,0 @@ -#setup.cfg \ No newline at end of file diff --git a/src/mobile-network/setup.py b/src/mobile-network/setup.py deleted file mode 100644 index f391cf5fa30..00000000000 --- a/src/mobile-network/setup.py +++ /dev/null @@ -1,49 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -# Code generated by aaz-dev-tools -# -------------------------------------------------------------------------------------------- - -from codecs import open -from setuptools import setup, find_packages - - -# HISTORY.rst entry. -VERSION = '1.0.0' - -# The full list of classifiers is available at -# https://pypi.python.org/pypi?%3Aaction=list_classifiers -CLASSIFIERS = [ - 'Development Status :: 4 - Beta', - 'Intended Audience :: Developers', - 'Intended Audience :: System Administrators', - 'Programming Language :: Python', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', - 'License :: OSI Approved :: MIT License', -] - -DEPENDENCIES = [] - -with open('README.md', 'r', encoding='utf-8') as f: - README = f.read() -with open('HISTORY.rst', 'r', encoding='utf-8') as f: - HISTORY = f.read() - -setup( - name='mobile-network', - version=VERSION, - description='Microsoft Azure Command-Line Tools MobileNetwork Extension.', - long_description=README + '\n\n' + HISTORY, - license='MIT', - author='Microsoft Corporation', - author_email='azpycli@microsoft.com', - url='https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network', - classifiers=CLASSIFIERS, - packages=find_packages(exclude=["tests"]), - package_data={'azext_mobile_network': ['azext_metadata.json']}, - install_requires=DEPENDENCIES -) diff --git a/src/nginx/setup.py b/src/nginx/setup.py index fd5e37fe3e1..4ebd7bfb78a 100644 --- a/src/nginx/setup.py +++ b/src/nginx/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '2.0.0b8' +VERSION = '2.0.0b9' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/oracle-database/HISTORY.rst b/src/oracle-database/HISTORY.rst index 8d148b37488..8b7d7c0ead0 100644 --- a/src/oracle-database/HISTORY.rst +++ b/src/oracle-database/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +2.0.0 +++++++ +* Added new resources , Network anchors, Resource anchors, BaseDb , ExaScale + 1.0.0 ++++++ * Initial release. \ No newline at end of file diff --git a/src/oracle-database/README.md b/src/oracle-database/README.md index a4c1457d4e1..3f8ce927786 100644 --- a/src/oracle-database/README.md +++ b/src/oracle-database/README.md @@ -6,3 +6,83 @@ Install this extension using the below CLI command ``` az extension add --name oracle-database ``` +## Included Features ## +Provision and Manage Oracle Databases, Exadata, Resource Anchors, Network Anchors, and Autonomous Databases +Create a Resource Anchor + +#### Create an Autonomous Database #### +az oracle-database autonomous-database create --resource-group MyResourceGroup --location eastus --autonomousdatabasename MyAutoDB --db-version 19c --admin-password --compute-model ECPU --compute-count 2 --data-storage-size-in-gbs 1024 --license-model LicenseIncluded + +#### Show an Autonomous Database #### +az oracle-database autonomous-database show --name MyAutoDB --resource-group MyResourceGroup + +#### List Autonomous Databases #### +az oracle-database autonomous-database list --resource-group MyResourceGroup + +#### Delete an Autonomous Database #### +az oracle-database autonomous-database delete --name MyAutoDB --resource-group MyResourceGroup --yes --no-wait + +#### Create an Exadb VM Cluster #### +az oracle-database exadb-vm-cluster create --name MyVmCluster --resource-group MyResourceGroup --location eastus --zone 1 --exascale-db-storage-vault-id --display-name MyVmCluster --enabled-ecpu-count 16 --grid-image-ocid --hostname myexahost --node-count 2 --shape Exadata.X9M --ssh-public-keys '' --vnet-id --subnet-id --total-ecpu-count 32 --vm-file-system-storage total-size-in-gbs=1024 + +#### Show a VM Cluster #### +az oracle-database exadb-vm-cluster show --name MyVmCluster --resource-group MyResourceGroup + +#### List VM Clusters #### +az oracle-database exadb-vm-cluster list --resource-group MyResourceGroup + +#### Delete a VM Cluster #### +az oracle-database exadb-vm-cluster delete --name MyVmCluster --resource-group MyResourceGroup --yes --no-wait + +#### Create an Exascale DB Storage Vault #### +az oracle-database exascale-db-storage-vault create --name MyVault --resource-group MyResourceGroup --location eastus --zone 1 --display-name MyVault --high-capacity-database-storage-input total-size-in-gbs=300 + +#### Show a Storage Vault #### +az oracle-database exascale-db-storage-vault show --name MyVault --resource-group MyResourceGroup + +#### List Storage Vaults #### +az oracle-database exascale-db-storage-vault list --resource-group MyResourceGroup + +#### Delete a Storage Vault #### +az oracle-database exascale-db-storage-vault delete --name MyVault --resource-group MyResourceGroup --yes --no-wait + +#### Create a Resource Anchor #### +az oracle-database resource-anchor create --name MyResourceAnchor --resource-group MyResourceGroup --location global + +#### Show a Resource Anchor #### +az oracle-database resource-anchor show --name MyResourceAnchor --resource-group MyResourceGroup + +#### List Resource Anchors #### +az oracle-database resource-anchor list --resource-group MyResourceGroup + +#### Delete a Resource Anchor #### +az oracle-database resource-anchor delete --name MyResourceAnchor --resource-group MyResourceGroup --yes --no-wait + +#### Create a Network Anchor #### +az oracle-database network-anchor create --name MyNetworkAnchor --resource-group MyResourceGroup --location eastus --resource-anchor-id --subnet-id --zone 1 + +#### Show a Network Anchor #### +az oracle-database network-anchor show --name MyNetworkAnchor --resource-group MyResourceGroup + +#### List Network Anchors #### +az oracle-database network-anchor list --resource-group MyResourceGroup + +#### Delete a Network Anchor #### +az oracle-database network-anchor delete --name MyNetworkAnchor --resource-group MyResourceGroup --yes --no-wait + +#### Create a DB System #### +az oracle-database db-system create --name MyDbSystem --resource-group MyResourceGroup --location eastus --zones 1 --database-edition EnterpriseEdition --admin-password --resource-anchor-id --network-anchor-id --hostname mydbhost --shape VM.Standard.E5.Flex --display-name MyDbSystem --node-count 1 --initial-data-storage-size-in-gb 256 --compute-model OCPU --compute-count 4 --db-version 19.27.0.0 --pdb-name mypdb --db-system-options storage-management=LVM --ssh-public-keys '' + +#### Show a DB System #### +az oracle-database db-system show --name MyDbSystem --resource-group MyResourceGroup + +#### List DB Systems #### +az oracle-database db-system list --resource-group MyResourceGroup + +#### Delete a DB System #### +az oracle-database db-system delete --name MyDbSystem --resource-group MyResourceGroup --yes --no-wait + +### More Information ### +az oracle-database --help +az oracle-database --help +az oracle-database --help \ No newline at end of file diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/__init__.py index 47f95c66b77..c4544d3dd8b 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/__init__.py @@ -9,12 +9,16 @@ # flake8: noqa from .__cmd_group import * +from ._action import * +from ._change_disaster_recovery_configuration import * from ._create import * from ._delete import * from ._failover import * +from ._generate_wallet import * from ._list import * from ._restore import * from ._show import * +from ._shrink import * from ._switchover import * from ._update import * from ._wait import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_action.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_action.py new file mode 100644 index 00000000000..61ea25abd1d --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_action.py @@ -0,0 +1,722 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database autonomous-database action", +) +class Action(AAZCommand): + """Perform Lifecycle Management Action on Autonomous Database + + :example: AutonomousDatabases_Action + az oracle-database autonomous-database action --resource-group rgopenapi --autonomousdatabasename databasedb1 --action Start + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/action", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.autonomousdatabasename = AAZStrArg( + options=["--autonomousdatabasename"], + help="The database name.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + max_length=30, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Body" + + _args_schema = cls._args_schema + _args_schema.action = AAZStrArg( + options=["--action"], + arg_group="Body", + help="Autonomous Database lifecycle action", + required=True, + enum={"Restart": "Restart", "Start": "Start", "Stop": "Stop"}, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.AutonomousDatabasesAction(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class AutonomousDatabasesAction(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/action", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "autonomousdatabasename", self.ctx.args.autonomousdatabasename, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("action", AAZStrType, ".action", typ_kwargs={"flags": {"required": True}}) + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.actual_used_data_storage_size_in_tbs = AAZFloatType( + serialized_name="actualUsedDataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.allocated_storage_size_in_tbs = AAZFloatType( + serialized_name="allocatedStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.apex_details = AAZObjectType( + serialized_name="apexDetails", + flags={"read_only": True}, + ) + properties.autonomous_database_id = AAZStrType( + serialized_name="autonomousDatabaseId", + ) + properties.autonomous_maintenance_schedule_type = AAZStrType( + serialized_name="autonomousMaintenanceScheduleType", + ) + properties.available_upgrade_versions = AAZListType( + serialized_name="availableUpgradeVersions", + flags={"read_only": True}, + ) + properties.backup_retention_period_in_days = AAZIntType( + serialized_name="backupRetentionPeriodInDays", + ) + properties.character_set = AAZStrType( + serialized_name="characterSet", + ) + properties.compute_count = AAZFloatType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.connection_strings = AAZObjectType( + serialized_name="connectionStrings", + flags={"read_only": True}, + ) + properties.connection_urls = AAZObjectType( + serialized_name="connectionUrls", + flags={"read_only": True}, + ) + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", + ) + properties.customer_contacts = AAZListType( + serialized_name="customerContacts", + ) + properties.data_safe_status = AAZStrType( + serialized_name="dataSafeStatus", + flags={"read_only": True}, + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + ) + properties.data_storage_size_in_tbs = AAZIntType( + serialized_name="dataStorageSizeInTbs", + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + ) + properties.db_workload = AAZStrType( + serialized_name="dbWorkload", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.failed_data_recovery_in_seconds = AAZIntType( + serialized_name="failedDataRecoveryInSeconds", + flags={"read_only": True}, + ) + properties.in_memory_area_in_gbs = AAZIntType( + serialized_name="inMemoryAreaInGbs", + flags={"read_only": True}, + ) + properties.is_auto_scaling_enabled = AAZBoolType( + serialized_name="isAutoScalingEnabled", + ) + properties.is_auto_scaling_for_storage_enabled = AAZBoolType( + serialized_name="isAutoScalingForStorageEnabled", + ) + properties.is_local_data_guard_enabled = AAZBoolType( + serialized_name="isLocalDataGuardEnabled", + ) + properties.is_mtls_connection_required = AAZBoolType( + serialized_name="isMtlsConnectionRequired", + ) + properties.is_preview = AAZBoolType( + serialized_name="isPreview", + flags={"read_only": True}, + ) + properties.is_remote_data_guard_enabled = AAZBoolType( + serialized_name="isRemoteDataGuardEnabled", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( + serialized_name="localAdgAutoFailoverMaxDataLossLimit", + ) + properties.local_disaster_recovery_type = AAZStrType( + serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, + ) + properties.local_standby_db = AAZObjectType( + serialized_name="localStandbyDb", + flags={"read_only": True}, + ) + properties.long_term_backup_schedule = AAZObjectType( + serialized_name="longTermBackupSchedule", + ) + properties.memory_per_oracle_compute_unit_in_gbs = AAZIntType( + serialized_name="memoryPerOracleComputeUnitInGbs", + flags={"read_only": True}, + ) + properties.ncharacter_set = AAZStrType( + serialized_name="ncharacterSet", + ) + properties.next_long_term_backup_time_stamp = AAZStrType( + serialized_name="nextLongTermBackupTimeStamp", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.open_mode = AAZStrType( + serialized_name="openMode", + ) + properties.operations_insights_status = AAZStrType( + serialized_name="operationsInsightsStatus", + flags={"read_only": True}, + ) + properties.peer_db_ids = AAZListType( + serialized_name="peerDbIds", + flags={"read_only": True}, + ) + properties.permission_level = AAZStrType( + serialized_name="permissionLevel", + ) + properties.private_endpoint = AAZStrType( + serialized_name="privateEndpoint", + flags={"read_only": True}, + ) + properties.private_endpoint_ip = AAZStrType( + serialized_name="privateEndpointIp", + ) + properties.private_endpoint_label = AAZStrType( + serialized_name="privateEndpointLabel", + ) + properties.provisionable_cpus = AAZListType( + serialized_name="provisionableCpus", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) + properties.role = AAZStrType() + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", + ) + properties.service_console_url = AAZStrType( + serialized_name="serviceConsoleUrl", + flags={"read_only": True}, + ) + properties.sql_web_developer_url = AAZStrType( + serialized_name="sqlWebDeveloperUrl", + flags={"read_only": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + ) + properties.supported_regions_to_clone_to = AAZListType( + serialized_name="supportedRegionsToCloneTo", + flags={"read_only": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.time_data_guard_role_changed = AAZStrType( + serialized_name="timeDataGuardRoleChanged", + flags={"read_only": True}, + ) + properties.time_deletion_of_free_autonomous_database = AAZStrType( + serialized_name="timeDeletionOfFreeAutonomousDatabase", + flags={"read_only": True}, + ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) + properties.time_local_data_guard_enabled = AAZStrType( + serialized_name="timeLocalDataGuardEnabled", + flags={"read_only": True}, + ) + properties.time_maintenance_begin = AAZStrType( + serialized_name="timeMaintenanceBegin", + flags={"read_only": True}, + ) + properties.time_maintenance_end = AAZStrType( + serialized_name="timeMaintenanceEnd", + flags={"read_only": True}, + ) + properties.time_of_last_failover = AAZStrType( + serialized_name="timeOfLastFailover", + flags={"read_only": True}, + ) + properties.time_of_last_refresh = AAZStrType( + serialized_name="timeOfLastRefresh", + flags={"read_only": True}, + ) + properties.time_of_last_refresh_point = AAZStrType( + serialized_name="timeOfLastRefreshPoint", + flags={"read_only": True}, + ) + properties.time_of_last_switchover = AAZStrType( + serialized_name="timeOfLastSwitchover", + flags={"read_only": True}, + ) + properties.time_reclamation_of_free_autonomous_database = AAZStrType( + serialized_name="timeReclamationOfFreeAutonomousDatabase", + flags={"read_only": True}, + ) + properties.used_data_storage_size_in_gbs = AAZIntType( + serialized_name="usedDataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.used_data_storage_size_in_tbs = AAZIntType( + serialized_name="usedDataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + ) + properties.whitelisted_ips = AAZListType( + serialized_name="whitelistedIps", + ) + + apex_details = cls._schema_on_200.properties.apex_details + apex_details.apex_version = AAZStrType( + serialized_name="apexVersion", + ) + apex_details.ords_version = AAZStrType( + serialized_name="ordsVersion", + ) + + available_upgrade_versions = cls._schema_on_200.properties.available_upgrade_versions + available_upgrade_versions.Element = AAZStrType() + + connection_strings = cls._schema_on_200.properties.connection_strings + connection_strings.all_connection_strings = AAZObjectType( + serialized_name="allConnectionStrings", + ) + connection_strings.dedicated = AAZStrType() + connection_strings.high = AAZStrType() + connection_strings.low = AAZStrType() + connection_strings.medium = AAZStrType() + connection_strings.profiles = AAZListType() + + all_connection_strings = cls._schema_on_200.properties.connection_strings.all_connection_strings + all_connection_strings.high = AAZStrType() + all_connection_strings.low = AAZStrType() + all_connection_strings.medium = AAZStrType() + + profiles = cls._schema_on_200.properties.connection_strings.profiles + profiles.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.connection_strings.profiles.Element + _element.consumer_group = AAZStrType( + serialized_name="consumerGroup", + ) + _element.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + _element.host_format = AAZStrType( + serialized_name="hostFormat", + flags={"required": True}, + ) + _element.is_regional = AAZBoolType( + serialized_name="isRegional", + ) + _element.protocol = AAZStrType( + flags={"required": True}, + ) + _element.session_mode = AAZStrType( + serialized_name="sessionMode", + flags={"required": True}, + ) + _element.syntax_format = AAZStrType( + serialized_name="syntaxFormat", + flags={"required": True}, + ) + _element.tls_authentication = AAZStrType( + serialized_name="tlsAuthentication", + ) + _element.value = AAZStrType( + flags={"required": True}, + ) + + connection_urls = cls._schema_on_200.properties.connection_urls + connection_urls.apex_url = AAZStrType( + serialized_name="apexUrl", + ) + connection_urls.database_transforms_url = AAZStrType( + serialized_name="databaseTransformsUrl", + ) + connection_urls.graph_studio_url = AAZStrType( + serialized_name="graphStudioUrl", + ) + connection_urls.machine_learning_notebook_url = AAZStrType( + serialized_name="machineLearningNotebookUrl", + ) + connection_urls.mongo_db_url = AAZStrType( + serialized_name="mongoDbUrl", + ) + connection_urls.ords_url = AAZStrType( + serialized_name="ordsUrl", + ) + connection_urls.sql_dev_web_url = AAZStrType( + serialized_name="sqlDevWebUrl", + ) + + customer_contacts = cls._schema_on_200.properties.customer_contacts + customer_contacts.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.customer_contacts.Element + _element.email = AAZStrType( + flags={"required": True}, + ) + + local_standby_db = cls._schema_on_200.properties.local_standby_db + local_standby_db.lag_time_in_seconds = AAZIntType( + serialized_name="lagTimeInSeconds", + ) + local_standby_db.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + local_standby_db.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + local_standby_db.time_data_guard_role_changed = AAZStrType( + serialized_name="timeDataGuardRoleChanged", + ) + local_standby_db.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + ) + + long_term_backup_schedule = cls._schema_on_200.properties.long_term_backup_schedule + long_term_backup_schedule.is_disabled = AAZBoolType( + serialized_name="isDisabled", + ) + long_term_backup_schedule.repeat_cadence = AAZStrType( + serialized_name="repeatCadence", + ) + long_term_backup_schedule.retention_period_in_days = AAZIntType( + serialized_name="retentionPeriodInDays", + ) + long_term_backup_schedule.time_of_backup = AAZStrType( + serialized_name="timeOfBackup", + ) + + peer_db_ids = cls._schema_on_200.properties.peer_db_ids + peer_db_ids.Element = AAZStrType() + + provisionable_cpus = cls._schema_on_200.properties.provisionable_cpus + provisionable_cpus.Element = AAZIntType() + + remote_disaster_recovery_configuration = cls._schema_on_200.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( + serialized_name="dayOfWeek", + flags={"required": True}, + ) + _element.scheduled_start_time = AAZStrType( + serialized_name="scheduledStartTime", + ) + _element.scheduled_stop_time = AAZStrType( + serialized_name="scheduledStopTime", + ) + + day_of_week = cls._schema_on_200.properties.scheduled_operations_list.Element.day_of_week + day_of_week.name = AAZStrType( + flags={"required": True}, + ) + + supported_regions_to_clone_to = cls._schema_on_200.properties.supported_regions_to_clone_to + supported_regions_to_clone_to.Element = AAZStrType() + + whitelisted_ips = cls._schema_on_200.properties.whitelisted_ips + whitelisted_ips.Element = AAZStrType() + + disc_clone = cls._schema_on_200.properties.discriminate_by("data_base_type", "Clone") + disc_clone.is_reconnect_clone_enabled = AAZBoolType( + serialized_name="isReconnectCloneEnabled", + flags={"read_only": True}, + ) + disc_clone.is_refreshable_clone = AAZBoolType( + serialized_name="isRefreshableClone", + flags={"read_only": True}, + ) + disc_clone.refreshable_status = AAZStrType( + serialized_name="refreshableStatus", + flags={"read_only": True}, + ) + disc_clone.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + disc_clone.time_until_reconnect_clone_enabled = AAZStrType( + serialized_name="timeUntilReconnectCloneEnabled", + ) + + disc_clone_from_backup_timestamp = cls._schema_on_200.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ActionHelper: + """Helper class for Action""" + + +__all__ = ["Action"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_change_disaster_recovery_configuration.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_change_disaster_recovery_configuration.py new file mode 100644 index 00000000000..bab97b1070e --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_change_disaster_recovery_configuration.py @@ -0,0 +1,739 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database autonomous-database change-disaster-recovery-configuration", +) +class ChangeDisasterRecoveryConfiguration(AAZCommand): + """Perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + + :example: AutonomousDatabases_ChangeDisasterRecoveryConfiguration + az oracle-database autonomous-database change-disaster-recovery-configuration --resource-group rg000 --autonomousdatabasename databasedb1 --disaster-recovery-type Adg --is-replicate-automatic-backups False + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/changedisasterrecoveryconfiguration", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.autonomousdatabasename = AAZStrArg( + options=["--autonomousdatabasename"], + help="The database name.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + max_length=30, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Body" + + _args_schema = cls._args_schema + _args_schema.disaster_recovery_type = AAZStrArg( + options=["--disaster-recovery-type"], + arg_group="Body", + help="Indicates the disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.", + enum={"Adg": "Adg", "BackupBased": "BackupBased"}, + ) + _args_schema.is_replicate_automatic_backups = AAZBoolArg( + options=["--is-replicate-automatic-backups"], + arg_group="Body", + help="If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.", + ) + _args_schema.is_snapshot_standby = AAZBoolArg( + options=["--is-snapshot-standby"], + arg_group="Body", + help="Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.", + ) + _args_schema.time_snapshot_standby_enabled_till = AAZDateTimeArg( + options=["--time-snapshot-standby-enabled-till"], + arg_group="Body", + help="Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.AutonomousDatabasesChangeDisasterRecoveryConfiguration(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class AutonomousDatabasesChangeDisasterRecoveryConfiguration(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/changeDisasterRecoveryConfiguration", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "autonomousdatabasename", self.ctx.args.autonomousdatabasename, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("disasterRecoveryType", AAZStrType, ".disaster_recovery_type") + _builder.set_prop("isReplicateAutomaticBackups", AAZBoolType, ".is_replicate_automatic_backups") + _builder.set_prop("isSnapshotStandby", AAZBoolType, ".is_snapshot_standby") + _builder.set_prop("timeSnapshotStandbyEnabledTill", AAZStrType, ".time_snapshot_standby_enabled_till") + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.actual_used_data_storage_size_in_tbs = AAZFloatType( + serialized_name="actualUsedDataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.allocated_storage_size_in_tbs = AAZFloatType( + serialized_name="allocatedStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.apex_details = AAZObjectType( + serialized_name="apexDetails", + flags={"read_only": True}, + ) + properties.autonomous_database_id = AAZStrType( + serialized_name="autonomousDatabaseId", + ) + properties.autonomous_maintenance_schedule_type = AAZStrType( + serialized_name="autonomousMaintenanceScheduleType", + ) + properties.available_upgrade_versions = AAZListType( + serialized_name="availableUpgradeVersions", + flags={"read_only": True}, + ) + properties.backup_retention_period_in_days = AAZIntType( + serialized_name="backupRetentionPeriodInDays", + ) + properties.character_set = AAZStrType( + serialized_name="characterSet", + ) + properties.compute_count = AAZFloatType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.connection_strings = AAZObjectType( + serialized_name="connectionStrings", + flags={"read_only": True}, + ) + properties.connection_urls = AAZObjectType( + serialized_name="connectionUrls", + flags={"read_only": True}, + ) + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", + ) + properties.customer_contacts = AAZListType( + serialized_name="customerContacts", + ) + properties.data_safe_status = AAZStrType( + serialized_name="dataSafeStatus", + flags={"read_only": True}, + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + ) + properties.data_storage_size_in_tbs = AAZIntType( + serialized_name="dataStorageSizeInTbs", + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + ) + properties.db_workload = AAZStrType( + serialized_name="dbWorkload", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.failed_data_recovery_in_seconds = AAZIntType( + serialized_name="failedDataRecoveryInSeconds", + flags={"read_only": True}, + ) + properties.in_memory_area_in_gbs = AAZIntType( + serialized_name="inMemoryAreaInGbs", + flags={"read_only": True}, + ) + properties.is_auto_scaling_enabled = AAZBoolType( + serialized_name="isAutoScalingEnabled", + ) + properties.is_auto_scaling_for_storage_enabled = AAZBoolType( + serialized_name="isAutoScalingForStorageEnabled", + ) + properties.is_local_data_guard_enabled = AAZBoolType( + serialized_name="isLocalDataGuardEnabled", + ) + properties.is_mtls_connection_required = AAZBoolType( + serialized_name="isMtlsConnectionRequired", + ) + properties.is_preview = AAZBoolType( + serialized_name="isPreview", + flags={"read_only": True}, + ) + properties.is_remote_data_guard_enabled = AAZBoolType( + serialized_name="isRemoteDataGuardEnabled", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( + serialized_name="localAdgAutoFailoverMaxDataLossLimit", + ) + properties.local_disaster_recovery_type = AAZStrType( + serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, + ) + properties.local_standby_db = AAZObjectType( + serialized_name="localStandbyDb", + flags={"read_only": True}, + ) + properties.long_term_backup_schedule = AAZObjectType( + serialized_name="longTermBackupSchedule", + ) + properties.memory_per_oracle_compute_unit_in_gbs = AAZIntType( + serialized_name="memoryPerOracleComputeUnitInGbs", + flags={"read_only": True}, + ) + properties.ncharacter_set = AAZStrType( + serialized_name="ncharacterSet", + ) + properties.next_long_term_backup_time_stamp = AAZStrType( + serialized_name="nextLongTermBackupTimeStamp", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.open_mode = AAZStrType( + serialized_name="openMode", + ) + properties.operations_insights_status = AAZStrType( + serialized_name="operationsInsightsStatus", + flags={"read_only": True}, + ) + properties.peer_db_ids = AAZListType( + serialized_name="peerDbIds", + flags={"read_only": True}, + ) + properties.permission_level = AAZStrType( + serialized_name="permissionLevel", + ) + properties.private_endpoint = AAZStrType( + serialized_name="privateEndpoint", + flags={"read_only": True}, + ) + properties.private_endpoint_ip = AAZStrType( + serialized_name="privateEndpointIp", + ) + properties.private_endpoint_label = AAZStrType( + serialized_name="privateEndpointLabel", + ) + properties.provisionable_cpus = AAZListType( + serialized_name="provisionableCpus", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) + properties.role = AAZStrType() + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", + ) + properties.service_console_url = AAZStrType( + serialized_name="serviceConsoleUrl", + flags={"read_only": True}, + ) + properties.sql_web_developer_url = AAZStrType( + serialized_name="sqlWebDeveloperUrl", + flags={"read_only": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + ) + properties.supported_regions_to_clone_to = AAZListType( + serialized_name="supportedRegionsToCloneTo", + flags={"read_only": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.time_data_guard_role_changed = AAZStrType( + serialized_name="timeDataGuardRoleChanged", + flags={"read_only": True}, + ) + properties.time_deletion_of_free_autonomous_database = AAZStrType( + serialized_name="timeDeletionOfFreeAutonomousDatabase", + flags={"read_only": True}, + ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) + properties.time_local_data_guard_enabled = AAZStrType( + serialized_name="timeLocalDataGuardEnabled", + flags={"read_only": True}, + ) + properties.time_maintenance_begin = AAZStrType( + serialized_name="timeMaintenanceBegin", + flags={"read_only": True}, + ) + properties.time_maintenance_end = AAZStrType( + serialized_name="timeMaintenanceEnd", + flags={"read_only": True}, + ) + properties.time_of_last_failover = AAZStrType( + serialized_name="timeOfLastFailover", + flags={"read_only": True}, + ) + properties.time_of_last_refresh = AAZStrType( + serialized_name="timeOfLastRefresh", + flags={"read_only": True}, + ) + properties.time_of_last_refresh_point = AAZStrType( + serialized_name="timeOfLastRefreshPoint", + flags={"read_only": True}, + ) + properties.time_of_last_switchover = AAZStrType( + serialized_name="timeOfLastSwitchover", + flags={"read_only": True}, + ) + properties.time_reclamation_of_free_autonomous_database = AAZStrType( + serialized_name="timeReclamationOfFreeAutonomousDatabase", + flags={"read_only": True}, + ) + properties.used_data_storage_size_in_gbs = AAZIntType( + serialized_name="usedDataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.used_data_storage_size_in_tbs = AAZIntType( + serialized_name="usedDataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + ) + properties.whitelisted_ips = AAZListType( + serialized_name="whitelistedIps", + ) + + apex_details = cls._schema_on_200.properties.apex_details + apex_details.apex_version = AAZStrType( + serialized_name="apexVersion", + ) + apex_details.ords_version = AAZStrType( + serialized_name="ordsVersion", + ) + + available_upgrade_versions = cls._schema_on_200.properties.available_upgrade_versions + available_upgrade_versions.Element = AAZStrType() + + connection_strings = cls._schema_on_200.properties.connection_strings + connection_strings.all_connection_strings = AAZObjectType( + serialized_name="allConnectionStrings", + ) + connection_strings.dedicated = AAZStrType() + connection_strings.high = AAZStrType() + connection_strings.low = AAZStrType() + connection_strings.medium = AAZStrType() + connection_strings.profiles = AAZListType() + + all_connection_strings = cls._schema_on_200.properties.connection_strings.all_connection_strings + all_connection_strings.high = AAZStrType() + all_connection_strings.low = AAZStrType() + all_connection_strings.medium = AAZStrType() + + profiles = cls._schema_on_200.properties.connection_strings.profiles + profiles.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.connection_strings.profiles.Element + _element.consumer_group = AAZStrType( + serialized_name="consumerGroup", + ) + _element.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + _element.host_format = AAZStrType( + serialized_name="hostFormat", + flags={"required": True}, + ) + _element.is_regional = AAZBoolType( + serialized_name="isRegional", + ) + _element.protocol = AAZStrType( + flags={"required": True}, + ) + _element.session_mode = AAZStrType( + serialized_name="sessionMode", + flags={"required": True}, + ) + _element.syntax_format = AAZStrType( + serialized_name="syntaxFormat", + flags={"required": True}, + ) + _element.tls_authentication = AAZStrType( + serialized_name="tlsAuthentication", + ) + _element.value = AAZStrType( + flags={"required": True}, + ) + + connection_urls = cls._schema_on_200.properties.connection_urls + connection_urls.apex_url = AAZStrType( + serialized_name="apexUrl", + ) + connection_urls.database_transforms_url = AAZStrType( + serialized_name="databaseTransformsUrl", + ) + connection_urls.graph_studio_url = AAZStrType( + serialized_name="graphStudioUrl", + ) + connection_urls.machine_learning_notebook_url = AAZStrType( + serialized_name="machineLearningNotebookUrl", + ) + connection_urls.mongo_db_url = AAZStrType( + serialized_name="mongoDbUrl", + ) + connection_urls.ords_url = AAZStrType( + serialized_name="ordsUrl", + ) + connection_urls.sql_dev_web_url = AAZStrType( + serialized_name="sqlDevWebUrl", + ) + + customer_contacts = cls._schema_on_200.properties.customer_contacts + customer_contacts.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.customer_contacts.Element + _element.email = AAZStrType( + flags={"required": True}, + ) + + local_standby_db = cls._schema_on_200.properties.local_standby_db + local_standby_db.lag_time_in_seconds = AAZIntType( + serialized_name="lagTimeInSeconds", + ) + local_standby_db.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + local_standby_db.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + local_standby_db.time_data_guard_role_changed = AAZStrType( + serialized_name="timeDataGuardRoleChanged", + ) + local_standby_db.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + ) + + long_term_backup_schedule = cls._schema_on_200.properties.long_term_backup_schedule + long_term_backup_schedule.is_disabled = AAZBoolType( + serialized_name="isDisabled", + ) + long_term_backup_schedule.repeat_cadence = AAZStrType( + serialized_name="repeatCadence", + ) + long_term_backup_schedule.retention_period_in_days = AAZIntType( + serialized_name="retentionPeriodInDays", + ) + long_term_backup_schedule.time_of_backup = AAZStrType( + serialized_name="timeOfBackup", + ) + + peer_db_ids = cls._schema_on_200.properties.peer_db_ids + peer_db_ids.Element = AAZStrType() + + provisionable_cpus = cls._schema_on_200.properties.provisionable_cpus + provisionable_cpus.Element = AAZIntType() + + remote_disaster_recovery_configuration = cls._schema_on_200.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( + serialized_name="dayOfWeek", + flags={"required": True}, + ) + _element.scheduled_start_time = AAZStrType( + serialized_name="scheduledStartTime", + ) + _element.scheduled_stop_time = AAZStrType( + serialized_name="scheduledStopTime", + ) + + day_of_week = cls._schema_on_200.properties.scheduled_operations_list.Element.day_of_week + day_of_week.name = AAZStrType( + flags={"required": True}, + ) + + supported_regions_to_clone_to = cls._schema_on_200.properties.supported_regions_to_clone_to + supported_regions_to_clone_to.Element = AAZStrType() + + whitelisted_ips = cls._schema_on_200.properties.whitelisted_ips + whitelisted_ips.Element = AAZStrType() + + disc_clone = cls._schema_on_200.properties.discriminate_by("data_base_type", "Clone") + disc_clone.is_reconnect_clone_enabled = AAZBoolType( + serialized_name="isReconnectCloneEnabled", + flags={"read_only": True}, + ) + disc_clone.is_refreshable_clone = AAZBoolType( + serialized_name="isRefreshableClone", + flags={"read_only": True}, + ) + disc_clone.refreshable_status = AAZStrType( + serialized_name="refreshableStatus", + flags={"read_only": True}, + ) + disc_clone.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + disc_clone.time_until_reconnect_clone_enabled = AAZStrType( + serialized_name="timeUntilReconnectCloneEnabled", + ) + + disc_clone_from_backup_timestamp = cls._schema_on_200.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ChangeDisasterRecoveryConfigurationHelper: + """Helper class for ChangeDisasterRecoveryConfiguration""" + + +__all__ = ["ChangeDisasterRecoveryConfiguration"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_create.py index cfde4f5845e..45e1f9fab64 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_create.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_create.py @@ -22,9 +22,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}", "2025-09-01"], ] } @@ -66,12 +66,20 @@ def _build_arguments_schema(cls, *args, **kwargs): options=["--clone"], arg_group="Properties", ) + _args_schema.clone_from_backup_timestamp = AAZObjectArg( + options=["--clone-from-backup-timestamp"], + arg_group="Properties", + ) + _args_schema.cross_region_disaster_recovery = AAZObjectArg( + options=["--cross-region-disaster-recovery"], + arg_group="Properties", + ) _args_schema.regular = AAZObjectArg( options=["--regular"], arg_group="Properties", blank={}, ) - _args_schema.admin_password = AAZPasswordArg( + _args_schema.admin_password = AAZStrArg( options=["--admin-password"], arg_group="Properties", help="Admin password.", @@ -79,11 +87,11 @@ def _build_arguments_schema(cls, *args, **kwargs): max_length=30, min_length=12, ), - blank=AAZPromptPasswordInput( + blank=AAZPromptInput( msg="Password:", ), ) - _args_schema.autonomous_database_id = AAZResourceIdArg( + _args_schema.autonomous_database_id = AAZStrArg( options=["--autonomous-database-id"], arg_group="Properties", help="Autonomous Database ID", @@ -114,7 +122,7 @@ def _build_arguments_schema(cls, *args, **kwargs): help="The compute amount (CPUs) available to the database.", fmt=AAZFloatArgFormat( maximum=512.0, - minimum=0.0, + minimum=0.1, ), ) _args_schema.compute_model = AAZStrArg( @@ -235,17 +243,17 @@ def _build_arguments_schema(cls, *args, **kwargs): arg_group="Properties", help="The resource's private endpoint label.", ) - _args_schema.scheduled_operations = AAZObjectArg( - options=["--scheduled-operations"], + _args_schema.scheduled_operations_list = AAZListArg( + options=["--scheduled-operations-list"], arg_group="Properties", help="The list of scheduled operations.", ) - _args_schema.subnet_id = AAZResourceIdArg( + _args_schema.subnet_id = AAZStrArg( options=["--subnet-id"], arg_group="Properties", help="Client subnet", ) - _args_schema.vnet_id = AAZResourceIdArg( + _args_schema.vnet_id = AAZStrArg( options=["--vnet-id"], arg_group="Properties", help="VNET for network connectivity", @@ -273,12 +281,74 @@ def _build_arguments_schema(cls, *args, **kwargs): help="The source of the database.", enum={"BackupFromId": "BackupFromId", "BackupFromTimestamp": "BackupFromTimestamp", "CloneToRefreshable": "CloneToRefreshable", "CrossRegionDataguard": "CrossRegionDataguard", "CrossRegionDisasterRecovery": "CrossRegionDisasterRecovery", "Database": "Database", "None": "None"}, ) - clone.source_id = AAZResourceIdArg( + clone.source_id = AAZStrArg( options=["source-id"], help="The Azure ID of the Autonomous Database that was cloned to create the current Autonomous Database.", required=True, ) + clone_from_backup_timestamp = cls._args_schema.clone_from_backup_timestamp + clone_from_backup_timestamp.clone_type = AAZStrArg( + options=["clone-type"], + help="The Autonomous Database clone type.", + required=True, + enum={"Full": "Full", "Metadata": "Metadata"}, + ) + clone_from_backup_timestamp.source = AAZStrArg( + options=["source"], + help="The source of the database.", + required=True, + enum={"BackupFromTimestamp": "BackupFromTimestamp"}, + ) + clone_from_backup_timestamp.source_id = AAZStrArg( + options=["source-id"], + help="The ID of the source Autonomous Database that you will clone to create a new Autonomous Database.", + required=True, + ) + clone_from_backup_timestamp.timestamp = AAZDateTimeArg( + options=["timestamp"], + help="The timestamp specified for the point-in-time clone of the source Autonomous Database. The timestamp must be in the past.", + ) + clone_from_backup_timestamp.use_latest_available_backup_time_stamp = AAZBoolArg( + options=["use-latest-available-backup-time-stamp"], + help="Clone from latest available backup timestamp.", + ) + + cross_region_disaster_recovery = cls._args_schema.cross_region_disaster_recovery + cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolArg( + options=["is-replicate-automatic-backups"], + help="If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.", + ) + cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrArg( + options=["remote-disaster-recovery-type"], + help="Indicates the cross-region disaster recovery (DR) type of the standby Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.", + required=True, + enum={"Adg": "Adg", "BackupBased": "BackupBased"}, + ) + cross_region_disaster_recovery.source = AAZStrArg( + options=["source"], + help="The source of the database.", + required=True, + enum={"CrossRegionDisasterRecovery": "CrossRegionDisasterRecovery"}, + ) + cross_region_disaster_recovery.source_id = AAZStrArg( + options=["source-id"], + help="The Azure ID of the source Autonomous Database that will be used to create a new peer database for the DR association.", + required=True, + ) + cross_region_disaster_recovery.source_location = AAZStrArg( + options=["source-location"], + help="The name of the region where source Autonomous Database exists.", + ) + cross_region_disaster_recovery.source_ocid = AAZStrArg( + options=["source-ocid"], + help="The source database ocid", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + customer_contacts = cls._args_schema.customer_contacts customer_contacts.Element = AAZObjectArg() @@ -293,13 +363,16 @@ def _build_arguments_schema(cls, *args, **kwargs): ), ) - scheduled_operations = cls._args_schema.scheduled_operations - scheduled_operations.day_of_week = AAZObjectArg( + scheduled_operations_list = cls._args_schema.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectArg() + + _element = cls._args_schema.scheduled_operations_list.Element + _element.day_of_week = AAZObjectArg( options=["day-of-week"], help="Day of week", required=True, ) - scheduled_operations.scheduled_start_time = AAZStrArg( + _element.scheduled_start_time = AAZStrArg( options=["scheduled-start-time"], help="auto start time. value must be of ISO-8601 format HH:mm", fmt=AAZStrArgFormat( @@ -307,7 +380,7 @@ def _build_arguments_schema(cls, *args, **kwargs): min_length=1, ), ) - scheduled_operations.scheduled_stop_time = AAZStrArg( + _element.scheduled_stop_time = AAZStrArg( options=["scheduled-stop-time"], help="auto stop time. value must be of ISO-8601 format HH:mm", fmt=AAZStrArgFormat( @@ -316,7 +389,7 @@ def _build_arguments_schema(cls, *args, **kwargs): ), ) - day_of_week = cls._args_schema.scheduled_operations.day_of_week + day_of_week = cls._args_schema.scheduled_operations_list.Element.day_of_week day_of_week.name = AAZStrArg( options=["name"], help="Name of the day of the week.", @@ -434,7 +507,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -460,12 +533,12 @@ def content(self): typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("properties", AAZObjectType) _builder.set_prop("tags", AAZDictType, ".tags") properties = _builder.get(".properties") if properties is not None: - properties.set_prop("adminPassword", AAZStrType, ".admin_password", typ_kwargs={"flags": {"secret": True}}) + properties.set_prop("adminPassword", AAZStrType, ".admin_password") properties.set_prop("autonomousDatabaseId", AAZStrType, ".autonomous_database_id") properties.set_prop("autonomousMaintenanceScheduleType", AAZStrType, ".autonomous_maintenance_schedule_type") properties.set_prop("backupRetentionPeriodInDays", AAZIntType, ".backup_retention_period_in_days") @@ -475,6 +548,8 @@ def content(self): properties.set_prop("cpuCoreCount", AAZIntType, ".cpu_core_count") properties.set_prop("customerContacts", AAZListType, ".customer_contacts") properties.set_const("dataBaseType", "Clone", AAZStrType, ".clone", typ_kwargs={"flags": {"required": True}}) + properties.set_const("dataBaseType", "CloneFromBackupTimestamp", AAZStrType, ".clone_from_backup_timestamp", typ_kwargs={"flags": {"required": True}}) + properties.set_const("dataBaseType", "CrossRegionDisasterRecovery", AAZStrType, ".cross_region_disaster_recovery", typ_kwargs={"flags": {"required": True}}) properties.set_const("dataBaseType", "Regular", AAZStrType, ".regular", typ_kwargs={"flags": {"required": True}}) properties.set_prop("dataStorageSizeInGbs", AAZIntType, ".data_storage_size_in_gbs") properties.set_prop("dataStorageSizeInTbs", AAZIntType, ".data_storage_size_in_tbs") @@ -491,11 +566,13 @@ def content(self): properties.set_prop("ncharacterSet", AAZStrType, ".ncharacter_set") properties.set_prop("privateEndpointIp", AAZStrType, ".private_endpoint_ip") properties.set_prop("privateEndpointLabel", AAZStrType, ".private_endpoint_label") - properties.set_prop("scheduledOperations", AAZObjectType, ".scheduled_operations") + properties.set_prop("scheduledOperationsList", AAZListType, ".scheduled_operations_list") properties.set_prop("subnetId", AAZStrType, ".subnet_id") properties.set_prop("vnetId", AAZStrType, ".vnet_id") properties.set_prop("whitelistedIps", AAZListType, ".whitelisted_ips") properties.discriminate_by("dataBaseType", "Clone") + properties.discriminate_by("dataBaseType", "CloneFromBackupTimestamp") + properties.discriminate_by("dataBaseType", "CrossRegionDisasterRecovery") properties.discriminate_by("dataBaseType", "Regular") customer_contacts = _builder.get(".properties.customerContacts") @@ -506,13 +583,17 @@ def content(self): if _elements is not None: _elements.set_prop("email", AAZStrType, ".email", typ_kwargs={"flags": {"required": True}}) - scheduled_operations = _builder.get(".properties.scheduledOperations") - if scheduled_operations is not None: - scheduled_operations.set_prop("dayOfWeek", AAZObjectType, ".day_of_week", typ_kwargs={"flags": {"required": True}}) - scheduled_operations.set_prop("scheduledStartTime", AAZStrType, ".scheduled_start_time") - scheduled_operations.set_prop("scheduledStopTime", AAZStrType, ".scheduled_stop_time") + scheduled_operations_list = _builder.get(".properties.scheduledOperationsList") + if scheduled_operations_list is not None: + scheduled_operations_list.set_elements(AAZObjectType, ".") - day_of_week = _builder.get(".properties.scheduledOperations.dayOfWeek") + _elements = _builder.get(".properties.scheduledOperationsList[]") + if _elements is not None: + _elements.set_prop("dayOfWeek", AAZObjectType, ".day_of_week", typ_kwargs={"flags": {"required": True}}) + _elements.set_prop("scheduledStartTime", AAZStrType, ".scheduled_start_time") + _elements.set_prop("scheduledStopTime", AAZStrType, ".scheduled_stop_time") + + day_of_week = _builder.get(".properties.scheduledOperationsList[].dayOfWeek") if day_of_week is not None: day_of_week.set_prop("name", AAZStrType, ".name", typ_kwargs={"flags": {"required": True}}) @@ -527,6 +608,23 @@ def content(self): disc_clone.set_prop("source", AAZStrType, ".clone.source") disc_clone.set_prop("sourceId", AAZStrType, ".clone.source_id", typ_kwargs={"flags": {"required": True}}) + disc_clone_from_backup_timestamp = _builder.get(".properties{dataBaseType:CloneFromBackupTimestamp}") + if disc_clone_from_backup_timestamp is not None: + disc_clone_from_backup_timestamp.set_prop("cloneType", AAZStrType, ".clone_from_backup_timestamp.clone_type", typ_kwargs={"flags": {"required": True}}) + disc_clone_from_backup_timestamp.set_prop("source", AAZStrType, ".clone_from_backup_timestamp.source", typ_kwargs={"flags": {"required": True}}) + disc_clone_from_backup_timestamp.set_prop("sourceId", AAZStrType, ".clone_from_backup_timestamp.source_id", typ_kwargs={"flags": {"required": True}}) + disc_clone_from_backup_timestamp.set_prop("timestamp", AAZStrType, ".clone_from_backup_timestamp.timestamp") + disc_clone_from_backup_timestamp.set_prop("useLatestAvailableBackupTimeStamp", AAZBoolType, ".clone_from_backup_timestamp.use_latest_available_backup_time_stamp") + + disc_cross_region_disaster_recovery = _builder.get(".properties{dataBaseType:CrossRegionDisasterRecovery}") + if disc_cross_region_disaster_recovery is not None: + disc_cross_region_disaster_recovery.set_prop("isReplicateAutomaticBackups", AAZBoolType, ".cross_region_disaster_recovery.is_replicate_automatic_backups") + disc_cross_region_disaster_recovery.set_prop("remoteDisasterRecoveryType", AAZStrType, ".cross_region_disaster_recovery.remote_disaster_recovery_type", typ_kwargs={"flags": {"required": True}}) + disc_cross_region_disaster_recovery.set_prop("source", AAZStrType, ".cross_region_disaster_recovery.source", typ_kwargs={"flags": {"required": True}}) + disc_cross_region_disaster_recovery.set_prop("sourceId", AAZStrType, ".cross_region_disaster_recovery.source_id", typ_kwargs={"flags": {"required": True}}) + disc_cross_region_disaster_recovery.set_prop("sourceLocation", AAZStrType, ".cross_region_disaster_recovery.source_location") + disc_cross_region_disaster_recovery.set_prop("sourceOcid", AAZStrType, ".cross_region_disaster_recovery.source_ocid") + tags = _builder.get(".tags") if tags is not None: tags.set_elements(AAZStrType, ".") @@ -560,9 +658,7 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200_201.properties = AAZObjectType() _schema_on_200_201.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -583,6 +679,7 @@ def _build_schema_on_200_201(cls): ) properties.apex_details = AAZObjectType( serialized_name="apexDetails", + flags={"read_only": True}, ) properties.autonomous_database_id = AAZStrType( serialized_name="autonomousDatabaseId", @@ -608,9 +705,11 @@ def _build_schema_on_200_201(cls): ) properties.connection_strings = AAZObjectType( serialized_name="connectionStrings", + flags={"read_only": True}, ) properties.connection_urls = AAZObjectType( serialized_name="connectionUrls", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -618,11 +717,9 @@ def _build_schema_on_200_201(cls): properties.customer_contacts = AAZListType( serialized_name="customerContacts", ) - properties.data_base_type = AAZStrType( - serialized_name="dataBaseType", - ) properties.data_safe_status = AAZStrType( serialized_name="dataSafeStatus", + flags={"read_only": True}, ) properties.data_storage_size_in_gbs = AAZIntType( serialized_name="dataStorageSizeInGbs", @@ -679,15 +776,18 @@ def _build_schema_on_200_201(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( serialized_name="localAdgAutoFailoverMaxDataLossLimit", ) properties.local_disaster_recovery_type = AAZStrType( serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, ) properties.local_standby_db = AAZObjectType( serialized_name="localStandbyDb", + flags={"read_only": True}, ) properties.long_term_backup_schedule = AAZObjectType( serialized_name="longTermBackupSchedule", @@ -707,12 +807,15 @@ def _build_schema_on_200_201(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.open_mode = AAZStrType( serialized_name="openMode", ) properties.operations_insights_status = AAZStrType( serialized_name="operationsInsightsStatus", + flags={"read_only": True}, ) properties.peer_db_ids = AAZListType( serialized_name="peerDbIds", @@ -739,9 +842,13 @@ def _build_schema_on_200_201(cls): serialized_name="provisioningState", flags={"read_only": True}, ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) properties.role = AAZStrType() - properties.scheduled_operations = AAZObjectType( - serialized_name="scheduledOperations", + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", ) properties.service_console_url = AAZStrType( serialized_name="serviceConsoleUrl", @@ -770,6 +877,10 @@ def _build_schema_on_200_201(cls): serialized_name="timeDeletionOfFreeAutonomousDatabase", flags={"read_only": True}, ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) properties.time_local_data_guard_enabled = AAZStrType( serialized_name="timeLocalDataGuardEnabled", flags={"read_only": True}, @@ -947,19 +1058,36 @@ def _build_schema_on_200_201(cls): provisionable_cpus = cls._schema_on_200_201.properties.provisionable_cpus provisionable_cpus.Element = AAZIntType() - scheduled_operations = cls._schema_on_200_201.properties.scheduled_operations - scheduled_operations.day_of_week = AAZObjectType( + remote_disaster_recovery_configuration = cls._schema_on_200_201.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200_201.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( serialized_name="dayOfWeek", flags={"required": True}, ) - scheduled_operations.scheduled_start_time = AAZStrType( + _element.scheduled_start_time = AAZStrType( serialized_name="scheduledStartTime", ) - scheduled_operations.scheduled_stop_time = AAZStrType( + _element.scheduled_stop_time = AAZStrType( serialized_name="scheduledStopTime", ) - day_of_week = cls._schema_on_200_201.properties.scheduled_operations.day_of_week + day_of_week = cls._schema_on_200_201.properties.scheduled_operations_list.Element.day_of_week day_of_week.name = AAZStrType( flags={"required": True}, ) @@ -981,6 +1109,7 @@ def _build_schema_on_200_201(cls): ) disc_clone.refreshable_status = AAZStrType( serialized_name="refreshableStatus", + flags={"read_only": True}, ) disc_clone.source_id = AAZStrType( serialized_name="sourceId", @@ -990,6 +1119,25 @@ def _build_schema_on_200_201(cls): serialized_name="timeUntilReconnectCloneEnabled", ) + disc_clone_from_backup_timestamp = cls._schema_on_200_201.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200_201.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + system_data = cls._schema_on_200_201.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_delete.py index bd6a8ff0a56..0fd62d334c0 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_delete.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_delete.py @@ -23,9 +23,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}", "2025-09-01"], ] } @@ -148,7 +148,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_failover.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_failover.py index c53264bcac5..dbf6980f20e 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_failover.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_failover.py @@ -22,9 +22,9 @@ class Failover(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/failover", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/failover", "2025-09-01"], ] } @@ -72,6 +72,16 @@ def _build_arguments_schema(cls, *args, **kwargs): min_length=1, ), ) + _args_schema.peer_db_location = AAZStrArg( + options=["--peer-db-location"], + arg_group="Body", + help="The location of the Disaster Recovery peer database.", + ) + _args_schema.peer_db_ocid = AAZStrArg( + options=["--peer-db-ocid"], + arg_group="Body", + help="Ocid of the Disaster Recovery peer database, which is located in a different region from the current peer database.", + ) return cls._args_schema def _execute_operations(self): @@ -155,7 +165,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -181,6 +191,8 @@ def content(self): typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) _builder.set_prop("peerDbId", AAZStrType, ".peer_db_id") + _builder.set_prop("peerDbLocation", AAZStrType, ".peer_db_location") + _builder.set_prop("peerDbOcid", AAZStrType, ".peer_db_ocid") return self.serialize_content(_content_value) @@ -211,9 +223,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -234,6 +244,7 @@ def _build_schema_on_200(cls): ) properties.apex_details = AAZObjectType( serialized_name="apexDetails", + flags={"read_only": True}, ) properties.autonomous_database_id = AAZStrType( serialized_name="autonomousDatabaseId", @@ -259,9 +270,11 @@ def _build_schema_on_200(cls): ) properties.connection_strings = AAZObjectType( serialized_name="connectionStrings", + flags={"read_only": True}, ) properties.connection_urls = AAZObjectType( serialized_name="connectionUrls", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -271,6 +284,7 @@ def _build_schema_on_200(cls): ) properties.data_safe_status = AAZStrType( serialized_name="dataSafeStatus", + flags={"read_only": True}, ) properties.data_storage_size_in_gbs = AAZIntType( serialized_name="dataStorageSizeInGbs", @@ -327,15 +341,18 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( serialized_name="localAdgAutoFailoverMaxDataLossLimit", ) properties.local_disaster_recovery_type = AAZStrType( serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, ) properties.local_standby_db = AAZObjectType( serialized_name="localStandbyDb", + flags={"read_only": True}, ) properties.long_term_backup_schedule = AAZObjectType( serialized_name="longTermBackupSchedule", @@ -355,12 +372,15 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.open_mode = AAZStrType( serialized_name="openMode", ) properties.operations_insights_status = AAZStrType( serialized_name="operationsInsightsStatus", + flags={"read_only": True}, ) properties.peer_db_ids = AAZListType( serialized_name="peerDbIds", @@ -387,9 +407,13 @@ def _build_schema_on_200(cls): serialized_name="provisioningState", flags={"read_only": True}, ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) properties.role = AAZStrType() - properties.scheduled_operations = AAZObjectType( - serialized_name="scheduledOperations", + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", ) properties.service_console_url = AAZStrType( serialized_name="serviceConsoleUrl", @@ -418,6 +442,10 @@ def _build_schema_on_200(cls): serialized_name="timeDeletionOfFreeAutonomousDatabase", flags={"read_only": True}, ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) properties.time_local_data_guard_enabled = AAZStrType( serialized_name="timeLocalDataGuardEnabled", flags={"read_only": True}, @@ -595,19 +623,36 @@ def _build_schema_on_200(cls): provisionable_cpus = cls._schema_on_200.properties.provisionable_cpus provisionable_cpus.Element = AAZIntType() - scheduled_operations = cls._schema_on_200.properties.scheduled_operations - scheduled_operations.day_of_week = AAZObjectType( + remote_disaster_recovery_configuration = cls._schema_on_200.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( serialized_name="dayOfWeek", flags={"required": True}, ) - scheduled_operations.scheduled_start_time = AAZStrType( + _element.scheduled_start_time = AAZStrType( serialized_name="scheduledStartTime", ) - scheduled_operations.scheduled_stop_time = AAZStrType( + _element.scheduled_stop_time = AAZStrType( serialized_name="scheduledStopTime", ) - day_of_week = cls._schema_on_200.properties.scheduled_operations.day_of_week + day_of_week = cls._schema_on_200.properties.scheduled_operations_list.Element.day_of_week day_of_week.name = AAZStrType( flags={"required": True}, ) @@ -629,6 +674,7 @@ def _build_schema_on_200(cls): ) disc_clone.refreshable_status = AAZStrType( serialized_name="refreshableStatus", + flags={"read_only": True}, ) disc_clone.source_id = AAZStrType( serialized_name="sourceId", @@ -638,6 +684,25 @@ def _build_schema_on_200(cls): serialized_name="timeUntilReconnectCloneEnabled", ) + disc_clone_from_backup_timestamp = cls._schema_on_200.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_generate_wallet.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_generate_wallet.py new file mode 100644 index 00000000000..58a4455a8b2 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_generate_wallet.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. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database autonomous-database generate-wallet", +) +class GenerateWallet(AAZCommand): + """Generate wallet action on Autonomous Database + + :example: Generate Wallet + az oracle-database autonomous-database generate-wallet --autonomousdatabasename --resource-group --password --is-regional True + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/generatewallet", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.autonomousdatabasename = AAZStrArg( + options=["--autonomousdatabasename"], + help="The database name.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + max_length=30, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Body" + + _args_schema = cls._args_schema + _args_schema.generate_type = AAZStrArg( + options=["--generate-type"], + arg_group="Body", + help="The type of wallet to generate.", + enum={"All": "All", "Single": "Single"}, + ) + _args_schema.is_regional = AAZBoolArg( + options=["--is-regional"], + arg_group="Body", + help="True when requesting regional connection strings in PDB connect info, applicable to cross-region DG only.", + ) + _args_schema.password = AAZStrArg( + options=["--password"], + arg_group="Body", + help="The password to encrypt the keys inside the wallet", + required=True, + fmt=AAZStrArgFormat( + min_length=8, + ), + blank=AAZPromptInput( + msg="Password:", + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.AutonomousDatabasesGenerateWallet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class AutonomousDatabasesGenerateWallet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/generateWallet", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "autonomousdatabasename", self.ctx.args.autonomousdatabasename, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("generateType", AAZStrType, ".generate_type") + _builder.set_prop("isRegional", AAZBoolType, ".is_regional") + _builder.set_prop("password", AAZStrType, ".password", typ_kwargs={"flags": {"required": True}}) + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.wallet_files = AAZStrType( + serialized_name="walletFiles", + flags={"required": True}, + ) + + return cls._schema_on_200 + + +class _GenerateWalletHelper: + """Helper class for GenerateWallet""" + + +__all__ = ["GenerateWallet"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_list.py index da3eba6fbb8..2fba84bbc5c 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_list.py @@ -22,10 +22,10 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/autonomousdatabases", "2023-09-01"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/autonomousdatabases", "2025-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases", "2025-09-01"], ] } @@ -51,12 +51,12 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - condition_0 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) - condition_1 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_0 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_1 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) if condition_0: - self.AutonomousDatabasesListByResourceGroup(ctx=self.ctx)() - if condition_1: self.AutonomousDatabasesListBySubscription(ctx=self.ctx)() + if condition_1: + self.AutonomousDatabasesListByResourceGroup(ctx=self.ctx)() self.post_operations() @register_callback @@ -72,7 +72,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class AutonomousDatabasesListByResourceGroup(AAZHttpOperation): + class AutonomousDatabasesListBySubscription(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -86,7 +86,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/autonomousDatabases", **self.url_parameters ) @@ -101,10 +101,6 @@ def error_format(self): @property def url_parameters(self): parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -116,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -169,9 +165,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -192,6 +186,7 @@ def _build_schema_on_200(cls): ) properties.apex_details = AAZObjectType( serialized_name="apexDetails", + flags={"read_only": True}, ) properties.autonomous_database_id = AAZStrType( serialized_name="autonomousDatabaseId", @@ -217,9 +212,11 @@ def _build_schema_on_200(cls): ) properties.connection_strings = AAZObjectType( serialized_name="connectionStrings", + flags={"read_only": True}, ) properties.connection_urls = AAZObjectType( serialized_name="connectionUrls", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -227,11 +224,9 @@ def _build_schema_on_200(cls): properties.customer_contacts = AAZListType( serialized_name="customerContacts", ) - properties.data_base_type = AAZStrType( - serialized_name="dataBaseType", - ) properties.data_safe_status = AAZStrType( serialized_name="dataSafeStatus", + flags={"read_only": True}, ) properties.data_storage_size_in_gbs = AAZIntType( serialized_name="dataStorageSizeInGbs", @@ -288,15 +283,18 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( serialized_name="localAdgAutoFailoverMaxDataLossLimit", ) properties.local_disaster_recovery_type = AAZStrType( serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, ) properties.local_standby_db = AAZObjectType( serialized_name="localStandbyDb", + flags={"read_only": True}, ) properties.long_term_backup_schedule = AAZObjectType( serialized_name="longTermBackupSchedule", @@ -316,12 +314,15 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.open_mode = AAZStrType( serialized_name="openMode", ) properties.operations_insights_status = AAZStrType( serialized_name="operationsInsightsStatus", + flags={"read_only": True}, ) properties.peer_db_ids = AAZListType( serialized_name="peerDbIds", @@ -348,9 +349,13 @@ def _build_schema_on_200(cls): serialized_name="provisioningState", flags={"read_only": True}, ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) properties.role = AAZStrType() - properties.scheduled_operations = AAZObjectType( - serialized_name="scheduledOperations", + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", ) properties.service_console_url = AAZStrType( serialized_name="serviceConsoleUrl", @@ -379,6 +384,10 @@ def _build_schema_on_200(cls): serialized_name="timeDeletionOfFreeAutonomousDatabase", flags={"read_only": True}, ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) properties.time_local_data_guard_enabled = AAZStrType( serialized_name="timeLocalDataGuardEnabled", flags={"read_only": True}, @@ -556,19 +565,36 @@ def _build_schema_on_200(cls): provisionable_cpus = cls._schema_on_200.value.Element.properties.provisionable_cpus provisionable_cpus.Element = AAZIntType() - scheduled_operations = cls._schema_on_200.value.Element.properties.scheduled_operations - scheduled_operations.day_of_week = AAZObjectType( + remote_disaster_recovery_configuration = cls._schema_on_200.value.Element.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.value.Element.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( serialized_name="dayOfWeek", flags={"required": True}, ) - scheduled_operations.scheduled_start_time = AAZStrType( + _element.scheduled_start_time = AAZStrType( serialized_name="scheduledStartTime", ) - scheduled_operations.scheduled_stop_time = AAZStrType( + _element.scheduled_stop_time = AAZStrType( serialized_name="scheduledStopTime", ) - day_of_week = cls._schema_on_200.value.Element.properties.scheduled_operations.day_of_week + day_of_week = cls._schema_on_200.value.Element.properties.scheduled_operations_list.Element.day_of_week day_of_week.name = AAZStrType( flags={"required": True}, ) @@ -590,6 +616,7 @@ def _build_schema_on_200(cls): ) disc_clone.refreshable_status = AAZStrType( serialized_name="refreshableStatus", + flags={"read_only": True}, ) disc_clone.source_id = AAZStrType( serialized_name="sourceId", @@ -599,6 +626,25 @@ def _build_schema_on_200(cls): serialized_name="timeUntilReconnectCloneEnabled", ) + disc_clone_from_backup_timestamp = cls._schema_on_200.value.Element.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.value.Element.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + system_data = cls._schema_on_200.value.Element.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", @@ -624,7 +670,7 @@ def _build_schema_on_200(cls): return cls._schema_on_200 - class AutonomousDatabasesListBySubscription(AAZHttpOperation): + class AutonomousDatabasesListByResourceGroup(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -638,7 +684,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/providers/Oracle.Database/autonomousDatabases", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases", **self.url_parameters ) @@ -653,6 +699,10 @@ def error_format(self): @property def url_parameters(self): parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -664,7 +714,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -717,9 +767,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -740,6 +788,7 @@ def _build_schema_on_200(cls): ) properties.apex_details = AAZObjectType( serialized_name="apexDetails", + flags={"read_only": True}, ) properties.autonomous_database_id = AAZStrType( serialized_name="autonomousDatabaseId", @@ -765,9 +814,11 @@ def _build_schema_on_200(cls): ) properties.connection_strings = AAZObjectType( serialized_name="connectionStrings", + flags={"read_only": True}, ) properties.connection_urls = AAZObjectType( serialized_name="connectionUrls", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -775,11 +826,9 @@ def _build_schema_on_200(cls): properties.customer_contacts = AAZListType( serialized_name="customerContacts", ) - properties.data_base_type = AAZStrType( - serialized_name="dataBaseType", - ) properties.data_safe_status = AAZStrType( serialized_name="dataSafeStatus", + flags={"read_only": True}, ) properties.data_storage_size_in_gbs = AAZIntType( serialized_name="dataStorageSizeInGbs", @@ -836,15 +885,18 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( serialized_name="localAdgAutoFailoverMaxDataLossLimit", ) properties.local_disaster_recovery_type = AAZStrType( serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, ) properties.local_standby_db = AAZObjectType( serialized_name="localStandbyDb", + flags={"read_only": True}, ) properties.long_term_backup_schedule = AAZObjectType( serialized_name="longTermBackupSchedule", @@ -864,12 +916,15 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.open_mode = AAZStrType( serialized_name="openMode", ) properties.operations_insights_status = AAZStrType( serialized_name="operationsInsightsStatus", + flags={"read_only": True}, ) properties.peer_db_ids = AAZListType( serialized_name="peerDbIds", @@ -896,9 +951,13 @@ def _build_schema_on_200(cls): serialized_name="provisioningState", flags={"read_only": True}, ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) properties.role = AAZStrType() - properties.scheduled_operations = AAZObjectType( - serialized_name="scheduledOperations", + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", ) properties.service_console_url = AAZStrType( serialized_name="serviceConsoleUrl", @@ -927,6 +986,10 @@ def _build_schema_on_200(cls): serialized_name="timeDeletionOfFreeAutonomousDatabase", flags={"read_only": True}, ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) properties.time_local_data_guard_enabled = AAZStrType( serialized_name="timeLocalDataGuardEnabled", flags={"read_only": True}, @@ -1104,19 +1167,36 @@ def _build_schema_on_200(cls): provisionable_cpus = cls._schema_on_200.value.Element.properties.provisionable_cpus provisionable_cpus.Element = AAZIntType() - scheduled_operations = cls._schema_on_200.value.Element.properties.scheduled_operations - scheduled_operations.day_of_week = AAZObjectType( + remote_disaster_recovery_configuration = cls._schema_on_200.value.Element.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.value.Element.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( serialized_name="dayOfWeek", flags={"required": True}, ) - scheduled_operations.scheduled_start_time = AAZStrType( + _element.scheduled_start_time = AAZStrType( serialized_name="scheduledStartTime", ) - scheduled_operations.scheduled_stop_time = AAZStrType( + _element.scheduled_stop_time = AAZStrType( serialized_name="scheduledStopTime", ) - day_of_week = cls._schema_on_200.value.Element.properties.scheduled_operations.day_of_week + day_of_week = cls._schema_on_200.value.Element.properties.scheduled_operations_list.Element.day_of_week day_of_week.name = AAZStrType( flags={"required": True}, ) @@ -1138,6 +1218,7 @@ def _build_schema_on_200(cls): ) disc_clone.refreshable_status = AAZStrType( serialized_name="refreshableStatus", + flags={"read_only": True}, ) disc_clone.source_id = AAZStrType( serialized_name="sourceId", @@ -1147,6 +1228,25 @@ def _build_schema_on_200(cls): serialized_name="timeUntilReconnectCloneEnabled", ) + disc_clone_from_backup_timestamp = cls._schema_on_200.value.Element.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.value.Element.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + system_data = cls._schema_on_200.value.Element.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_restore.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_restore.py index 03b7d533ca9..0763a986f60 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_restore.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_restore.py @@ -22,9 +22,9 @@ class Restore(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/restore", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/restore", "2025-09-01"], ] } @@ -152,7 +152,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -208,9 +208,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -231,6 +229,7 @@ def _build_schema_on_200(cls): ) properties.apex_details = AAZObjectType( serialized_name="apexDetails", + flags={"read_only": True}, ) properties.autonomous_database_id = AAZStrType( serialized_name="autonomousDatabaseId", @@ -256,9 +255,11 @@ def _build_schema_on_200(cls): ) properties.connection_strings = AAZObjectType( serialized_name="connectionStrings", + flags={"read_only": True}, ) properties.connection_urls = AAZObjectType( serialized_name="connectionUrls", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -268,6 +269,7 @@ def _build_schema_on_200(cls): ) properties.data_safe_status = AAZStrType( serialized_name="dataSafeStatus", + flags={"read_only": True}, ) properties.data_storage_size_in_gbs = AAZIntType( serialized_name="dataStorageSizeInGbs", @@ -324,15 +326,18 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( serialized_name="localAdgAutoFailoverMaxDataLossLimit", ) properties.local_disaster_recovery_type = AAZStrType( serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, ) properties.local_standby_db = AAZObjectType( serialized_name="localStandbyDb", + flags={"read_only": True}, ) properties.long_term_backup_schedule = AAZObjectType( serialized_name="longTermBackupSchedule", @@ -352,12 +357,15 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.open_mode = AAZStrType( serialized_name="openMode", ) properties.operations_insights_status = AAZStrType( serialized_name="operationsInsightsStatus", + flags={"read_only": True}, ) properties.peer_db_ids = AAZListType( serialized_name="peerDbIds", @@ -384,9 +392,13 @@ def _build_schema_on_200(cls): serialized_name="provisioningState", flags={"read_only": True}, ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) properties.role = AAZStrType() - properties.scheduled_operations = AAZObjectType( - serialized_name="scheduledOperations", + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", ) properties.service_console_url = AAZStrType( serialized_name="serviceConsoleUrl", @@ -415,6 +427,10 @@ def _build_schema_on_200(cls): serialized_name="timeDeletionOfFreeAutonomousDatabase", flags={"read_only": True}, ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) properties.time_local_data_guard_enabled = AAZStrType( serialized_name="timeLocalDataGuardEnabled", flags={"read_only": True}, @@ -592,19 +608,36 @@ def _build_schema_on_200(cls): provisionable_cpus = cls._schema_on_200.properties.provisionable_cpus provisionable_cpus.Element = AAZIntType() - scheduled_operations = cls._schema_on_200.properties.scheduled_operations - scheduled_operations.day_of_week = AAZObjectType( + remote_disaster_recovery_configuration = cls._schema_on_200.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( serialized_name="dayOfWeek", flags={"required": True}, ) - scheduled_operations.scheduled_start_time = AAZStrType( + _element.scheduled_start_time = AAZStrType( serialized_name="scheduledStartTime", ) - scheduled_operations.scheduled_stop_time = AAZStrType( + _element.scheduled_stop_time = AAZStrType( serialized_name="scheduledStopTime", ) - day_of_week = cls._schema_on_200.properties.scheduled_operations.day_of_week + day_of_week = cls._schema_on_200.properties.scheduled_operations_list.Element.day_of_week day_of_week.name = AAZStrType( flags={"required": True}, ) @@ -626,6 +659,7 @@ def _build_schema_on_200(cls): ) disc_clone.refreshable_status = AAZStrType( serialized_name="refreshableStatus", + flags={"read_only": True}, ) disc_clone.source_id = AAZStrType( serialized_name="sourceId", @@ -635,6 +669,25 @@ def _build_schema_on_200(cls): serialized_name="timeUntilReconnectCloneEnabled", ) + disc_clone_from_backup_timestamp = cls._schema_on_200.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_show.py index cea723003e0..8b1561d04e3 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}", "2025-09-01"], ] } @@ -125,7 +125,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -167,9 +167,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -190,6 +188,7 @@ def _build_schema_on_200(cls): ) properties.apex_details = AAZObjectType( serialized_name="apexDetails", + flags={"read_only": True}, ) properties.autonomous_database_id = AAZStrType( serialized_name="autonomousDatabaseId", @@ -215,9 +214,11 @@ def _build_schema_on_200(cls): ) properties.connection_strings = AAZObjectType( serialized_name="connectionStrings", + flags={"read_only": True}, ) properties.connection_urls = AAZObjectType( serialized_name="connectionUrls", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -225,11 +226,9 @@ def _build_schema_on_200(cls): properties.customer_contacts = AAZListType( serialized_name="customerContacts", ) - properties.data_base_type = AAZStrType( - serialized_name="dataBaseType", - ) properties.data_safe_status = AAZStrType( serialized_name="dataSafeStatus", + flags={"read_only": True}, ) properties.data_storage_size_in_gbs = AAZIntType( serialized_name="dataStorageSizeInGbs", @@ -286,15 +285,18 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( serialized_name="localAdgAutoFailoverMaxDataLossLimit", ) properties.local_disaster_recovery_type = AAZStrType( serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, ) properties.local_standby_db = AAZObjectType( serialized_name="localStandbyDb", + flags={"read_only": True}, ) properties.long_term_backup_schedule = AAZObjectType( serialized_name="longTermBackupSchedule", @@ -314,12 +316,15 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.open_mode = AAZStrType( serialized_name="openMode", ) properties.operations_insights_status = AAZStrType( serialized_name="operationsInsightsStatus", + flags={"read_only": True}, ) properties.peer_db_ids = AAZListType( serialized_name="peerDbIds", @@ -346,9 +351,13 @@ def _build_schema_on_200(cls): serialized_name="provisioningState", flags={"read_only": True}, ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) properties.role = AAZStrType() - properties.scheduled_operations = AAZObjectType( - serialized_name="scheduledOperations", + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", ) properties.service_console_url = AAZStrType( serialized_name="serviceConsoleUrl", @@ -377,6 +386,10 @@ def _build_schema_on_200(cls): serialized_name="timeDeletionOfFreeAutonomousDatabase", flags={"read_only": True}, ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) properties.time_local_data_guard_enabled = AAZStrType( serialized_name="timeLocalDataGuardEnabled", flags={"read_only": True}, @@ -554,19 +567,36 @@ def _build_schema_on_200(cls): provisionable_cpus = cls._schema_on_200.properties.provisionable_cpus provisionable_cpus.Element = AAZIntType() - scheduled_operations = cls._schema_on_200.properties.scheduled_operations - scheduled_operations.day_of_week = AAZObjectType( + remote_disaster_recovery_configuration = cls._schema_on_200.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( serialized_name="dayOfWeek", flags={"required": True}, ) - scheduled_operations.scheduled_start_time = AAZStrType( + _element.scheduled_start_time = AAZStrType( serialized_name="scheduledStartTime", ) - scheduled_operations.scheduled_stop_time = AAZStrType( + _element.scheduled_stop_time = AAZStrType( serialized_name="scheduledStopTime", ) - day_of_week = cls._schema_on_200.properties.scheduled_operations.day_of_week + day_of_week = cls._schema_on_200.properties.scheduled_operations_list.Element.day_of_week day_of_week.name = AAZStrType( flags={"required": True}, ) @@ -588,6 +618,7 @@ def _build_schema_on_200(cls): ) disc_clone.refreshable_status = AAZStrType( serialized_name="refreshableStatus", + flags={"read_only": True}, ) disc_clone.source_id = AAZStrType( serialized_name="sourceId", @@ -597,6 +628,25 @@ def _build_schema_on_200(cls): serialized_name="timeUntilReconnectCloneEnabled", ) + disc_clone_from_backup_timestamp = cls._schema_on_200.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_shrink.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_shrink.py new file mode 100644 index 00000000000..a35648be021 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_shrink.py @@ -0,0 +1,697 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database autonomous-database shrink", +) +class Shrink(AAZCommand): + """This operation shrinks the current allocated storage down to the current actual used data storage. + + :example: Shrink + az oracle-database autonomous-database shrink --autonomousdatabasename --resource-group + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/shrink", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.autonomousdatabasename = AAZStrArg( + options=["--autonomousdatabasename"], + help="The database name.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + max_length=30, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.AutonomousDatabasesShrink(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class AutonomousDatabasesShrink(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/shrink", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "autonomousdatabasename", self.ctx.args.autonomousdatabasename, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.actual_used_data_storage_size_in_tbs = AAZFloatType( + serialized_name="actualUsedDataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.allocated_storage_size_in_tbs = AAZFloatType( + serialized_name="allocatedStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.apex_details = AAZObjectType( + serialized_name="apexDetails", + flags={"read_only": True}, + ) + properties.autonomous_database_id = AAZStrType( + serialized_name="autonomousDatabaseId", + ) + properties.autonomous_maintenance_schedule_type = AAZStrType( + serialized_name="autonomousMaintenanceScheduleType", + ) + properties.available_upgrade_versions = AAZListType( + serialized_name="availableUpgradeVersions", + flags={"read_only": True}, + ) + properties.backup_retention_period_in_days = AAZIntType( + serialized_name="backupRetentionPeriodInDays", + ) + properties.character_set = AAZStrType( + serialized_name="characterSet", + ) + properties.compute_count = AAZFloatType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.connection_strings = AAZObjectType( + serialized_name="connectionStrings", + flags={"read_only": True}, + ) + properties.connection_urls = AAZObjectType( + serialized_name="connectionUrls", + flags={"read_only": True}, + ) + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", + ) + properties.customer_contacts = AAZListType( + serialized_name="customerContacts", + ) + properties.data_safe_status = AAZStrType( + serialized_name="dataSafeStatus", + flags={"read_only": True}, + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + ) + properties.data_storage_size_in_tbs = AAZIntType( + serialized_name="dataStorageSizeInTbs", + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + ) + properties.db_workload = AAZStrType( + serialized_name="dbWorkload", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.failed_data_recovery_in_seconds = AAZIntType( + serialized_name="failedDataRecoveryInSeconds", + flags={"read_only": True}, + ) + properties.in_memory_area_in_gbs = AAZIntType( + serialized_name="inMemoryAreaInGbs", + flags={"read_only": True}, + ) + properties.is_auto_scaling_enabled = AAZBoolType( + serialized_name="isAutoScalingEnabled", + ) + properties.is_auto_scaling_for_storage_enabled = AAZBoolType( + serialized_name="isAutoScalingForStorageEnabled", + ) + properties.is_local_data_guard_enabled = AAZBoolType( + serialized_name="isLocalDataGuardEnabled", + ) + properties.is_mtls_connection_required = AAZBoolType( + serialized_name="isMtlsConnectionRequired", + ) + properties.is_preview = AAZBoolType( + serialized_name="isPreview", + flags={"read_only": True}, + ) + properties.is_remote_data_guard_enabled = AAZBoolType( + serialized_name="isRemoteDataGuardEnabled", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( + serialized_name="localAdgAutoFailoverMaxDataLossLimit", + ) + properties.local_disaster_recovery_type = AAZStrType( + serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, + ) + properties.local_standby_db = AAZObjectType( + serialized_name="localStandbyDb", + flags={"read_only": True}, + ) + properties.long_term_backup_schedule = AAZObjectType( + serialized_name="longTermBackupSchedule", + ) + properties.memory_per_oracle_compute_unit_in_gbs = AAZIntType( + serialized_name="memoryPerOracleComputeUnitInGbs", + flags={"read_only": True}, + ) + properties.ncharacter_set = AAZStrType( + serialized_name="ncharacterSet", + ) + properties.next_long_term_backup_time_stamp = AAZStrType( + serialized_name="nextLongTermBackupTimeStamp", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.open_mode = AAZStrType( + serialized_name="openMode", + ) + properties.operations_insights_status = AAZStrType( + serialized_name="operationsInsightsStatus", + flags={"read_only": True}, + ) + properties.peer_db_ids = AAZListType( + serialized_name="peerDbIds", + flags={"read_only": True}, + ) + properties.permission_level = AAZStrType( + serialized_name="permissionLevel", + ) + properties.private_endpoint = AAZStrType( + serialized_name="privateEndpoint", + flags={"read_only": True}, + ) + properties.private_endpoint_ip = AAZStrType( + serialized_name="privateEndpointIp", + ) + properties.private_endpoint_label = AAZStrType( + serialized_name="privateEndpointLabel", + ) + properties.provisionable_cpus = AAZListType( + serialized_name="provisionableCpus", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) + properties.role = AAZStrType() + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", + ) + properties.service_console_url = AAZStrType( + serialized_name="serviceConsoleUrl", + flags={"read_only": True}, + ) + properties.sql_web_developer_url = AAZStrType( + serialized_name="sqlWebDeveloperUrl", + flags={"read_only": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + ) + properties.supported_regions_to_clone_to = AAZListType( + serialized_name="supportedRegionsToCloneTo", + flags={"read_only": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.time_data_guard_role_changed = AAZStrType( + serialized_name="timeDataGuardRoleChanged", + flags={"read_only": True}, + ) + properties.time_deletion_of_free_autonomous_database = AAZStrType( + serialized_name="timeDeletionOfFreeAutonomousDatabase", + flags={"read_only": True}, + ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) + properties.time_local_data_guard_enabled = AAZStrType( + serialized_name="timeLocalDataGuardEnabled", + flags={"read_only": True}, + ) + properties.time_maintenance_begin = AAZStrType( + serialized_name="timeMaintenanceBegin", + flags={"read_only": True}, + ) + properties.time_maintenance_end = AAZStrType( + serialized_name="timeMaintenanceEnd", + flags={"read_only": True}, + ) + properties.time_of_last_failover = AAZStrType( + serialized_name="timeOfLastFailover", + flags={"read_only": True}, + ) + properties.time_of_last_refresh = AAZStrType( + serialized_name="timeOfLastRefresh", + flags={"read_only": True}, + ) + properties.time_of_last_refresh_point = AAZStrType( + serialized_name="timeOfLastRefreshPoint", + flags={"read_only": True}, + ) + properties.time_of_last_switchover = AAZStrType( + serialized_name="timeOfLastSwitchover", + flags={"read_only": True}, + ) + properties.time_reclamation_of_free_autonomous_database = AAZStrType( + serialized_name="timeReclamationOfFreeAutonomousDatabase", + flags={"read_only": True}, + ) + properties.used_data_storage_size_in_gbs = AAZIntType( + serialized_name="usedDataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.used_data_storage_size_in_tbs = AAZIntType( + serialized_name="usedDataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + ) + properties.whitelisted_ips = AAZListType( + serialized_name="whitelistedIps", + ) + + apex_details = cls._schema_on_200.properties.apex_details + apex_details.apex_version = AAZStrType( + serialized_name="apexVersion", + ) + apex_details.ords_version = AAZStrType( + serialized_name="ordsVersion", + ) + + available_upgrade_versions = cls._schema_on_200.properties.available_upgrade_versions + available_upgrade_versions.Element = AAZStrType() + + connection_strings = cls._schema_on_200.properties.connection_strings + connection_strings.all_connection_strings = AAZObjectType( + serialized_name="allConnectionStrings", + ) + connection_strings.dedicated = AAZStrType() + connection_strings.high = AAZStrType() + connection_strings.low = AAZStrType() + connection_strings.medium = AAZStrType() + connection_strings.profiles = AAZListType() + + all_connection_strings = cls._schema_on_200.properties.connection_strings.all_connection_strings + all_connection_strings.high = AAZStrType() + all_connection_strings.low = AAZStrType() + all_connection_strings.medium = AAZStrType() + + profiles = cls._schema_on_200.properties.connection_strings.profiles + profiles.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.connection_strings.profiles.Element + _element.consumer_group = AAZStrType( + serialized_name="consumerGroup", + ) + _element.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + _element.host_format = AAZStrType( + serialized_name="hostFormat", + flags={"required": True}, + ) + _element.is_regional = AAZBoolType( + serialized_name="isRegional", + ) + _element.protocol = AAZStrType( + flags={"required": True}, + ) + _element.session_mode = AAZStrType( + serialized_name="sessionMode", + flags={"required": True}, + ) + _element.syntax_format = AAZStrType( + serialized_name="syntaxFormat", + flags={"required": True}, + ) + _element.tls_authentication = AAZStrType( + serialized_name="tlsAuthentication", + ) + _element.value = AAZStrType( + flags={"required": True}, + ) + + connection_urls = cls._schema_on_200.properties.connection_urls + connection_urls.apex_url = AAZStrType( + serialized_name="apexUrl", + ) + connection_urls.database_transforms_url = AAZStrType( + serialized_name="databaseTransformsUrl", + ) + connection_urls.graph_studio_url = AAZStrType( + serialized_name="graphStudioUrl", + ) + connection_urls.machine_learning_notebook_url = AAZStrType( + serialized_name="machineLearningNotebookUrl", + ) + connection_urls.mongo_db_url = AAZStrType( + serialized_name="mongoDbUrl", + ) + connection_urls.ords_url = AAZStrType( + serialized_name="ordsUrl", + ) + connection_urls.sql_dev_web_url = AAZStrType( + serialized_name="sqlDevWebUrl", + ) + + customer_contacts = cls._schema_on_200.properties.customer_contacts + customer_contacts.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.customer_contacts.Element + _element.email = AAZStrType( + flags={"required": True}, + ) + + local_standby_db = cls._schema_on_200.properties.local_standby_db + local_standby_db.lag_time_in_seconds = AAZIntType( + serialized_name="lagTimeInSeconds", + ) + local_standby_db.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + local_standby_db.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + local_standby_db.time_data_guard_role_changed = AAZStrType( + serialized_name="timeDataGuardRoleChanged", + ) + local_standby_db.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + ) + + long_term_backup_schedule = cls._schema_on_200.properties.long_term_backup_schedule + long_term_backup_schedule.is_disabled = AAZBoolType( + serialized_name="isDisabled", + ) + long_term_backup_schedule.repeat_cadence = AAZStrType( + serialized_name="repeatCadence", + ) + long_term_backup_schedule.retention_period_in_days = AAZIntType( + serialized_name="retentionPeriodInDays", + ) + long_term_backup_schedule.time_of_backup = AAZStrType( + serialized_name="timeOfBackup", + ) + + peer_db_ids = cls._schema_on_200.properties.peer_db_ids + peer_db_ids.Element = AAZStrType() + + provisionable_cpus = cls._schema_on_200.properties.provisionable_cpus + provisionable_cpus.Element = AAZIntType() + + remote_disaster_recovery_configuration = cls._schema_on_200.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( + serialized_name="dayOfWeek", + flags={"required": True}, + ) + _element.scheduled_start_time = AAZStrType( + serialized_name="scheduledStartTime", + ) + _element.scheduled_stop_time = AAZStrType( + serialized_name="scheduledStopTime", + ) + + day_of_week = cls._schema_on_200.properties.scheduled_operations_list.Element.day_of_week + day_of_week.name = AAZStrType( + flags={"required": True}, + ) + + supported_regions_to_clone_to = cls._schema_on_200.properties.supported_regions_to_clone_to + supported_regions_to_clone_to.Element = AAZStrType() + + whitelisted_ips = cls._schema_on_200.properties.whitelisted_ips + whitelisted_ips.Element = AAZStrType() + + disc_clone = cls._schema_on_200.properties.discriminate_by("data_base_type", "Clone") + disc_clone.is_reconnect_clone_enabled = AAZBoolType( + serialized_name="isReconnectCloneEnabled", + flags={"read_only": True}, + ) + disc_clone.is_refreshable_clone = AAZBoolType( + serialized_name="isRefreshableClone", + flags={"read_only": True}, + ) + disc_clone.refreshable_status = AAZStrType( + serialized_name="refreshableStatus", + flags={"read_only": True}, + ) + disc_clone.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + disc_clone.time_until_reconnect_clone_enabled = AAZStrType( + serialized_name="timeUntilReconnectCloneEnabled", + ) + + disc_clone_from_backup_timestamp = cls._schema_on_200.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ShrinkHelper: + """Helper class for Shrink""" + + +__all__ = ["Shrink"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_switchover.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_switchover.py index 8e9292bc581..aeffc072ad0 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_switchover.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_switchover.py @@ -22,9 +22,9 @@ class Switchover(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/switchover", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/switchover", "2025-09-01"], ] } @@ -72,6 +72,16 @@ def _build_arguments_schema(cls, *args, **kwargs): min_length=1, ), ) + _args_schema.peer_db_location = AAZStrArg( + options=["--peer-db-location"], + arg_group="Body", + help="The location of the Disaster Recovery peer database.", + ) + _args_schema.peer_db_ocid = AAZStrArg( + options=["--peer-db-ocid"], + arg_group="Body", + help="Ocid of the Disaster Recovery peer database, which is located in a different region from the current peer database.", + ) return cls._args_schema def _execute_operations(self): @@ -155,7 +165,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -181,6 +191,8 @@ def content(self): typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) _builder.set_prop("peerDbId", AAZStrType, ".peer_db_id") + _builder.set_prop("peerDbLocation", AAZStrType, ".peer_db_location") + _builder.set_prop("peerDbOcid", AAZStrType, ".peer_db_ocid") return self.serialize_content(_content_value) @@ -211,9 +223,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -234,6 +244,7 @@ def _build_schema_on_200(cls): ) properties.apex_details = AAZObjectType( serialized_name="apexDetails", + flags={"read_only": True}, ) properties.autonomous_database_id = AAZStrType( serialized_name="autonomousDatabaseId", @@ -259,9 +270,11 @@ def _build_schema_on_200(cls): ) properties.connection_strings = AAZObjectType( serialized_name="connectionStrings", + flags={"read_only": True}, ) properties.connection_urls = AAZObjectType( serialized_name="connectionUrls", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -269,11 +282,9 @@ def _build_schema_on_200(cls): properties.customer_contacts = AAZListType( serialized_name="customerContacts", ) - properties.data_base_type = AAZStrType( - serialized_name="dataBaseType", - ) properties.data_safe_status = AAZStrType( serialized_name="dataSafeStatus", + flags={"read_only": True}, ) properties.data_storage_size_in_gbs = AAZIntType( serialized_name="dataStorageSizeInGbs", @@ -330,15 +341,18 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( serialized_name="localAdgAutoFailoverMaxDataLossLimit", ) properties.local_disaster_recovery_type = AAZStrType( serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, ) properties.local_standby_db = AAZObjectType( serialized_name="localStandbyDb", + flags={"read_only": True}, ) properties.long_term_backup_schedule = AAZObjectType( serialized_name="longTermBackupSchedule", @@ -358,12 +372,15 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.open_mode = AAZStrType( serialized_name="openMode", ) properties.operations_insights_status = AAZStrType( serialized_name="operationsInsightsStatus", + flags={"read_only": True}, ) properties.peer_db_ids = AAZListType( serialized_name="peerDbIds", @@ -390,9 +407,13 @@ def _build_schema_on_200(cls): serialized_name="provisioningState", flags={"read_only": True}, ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) properties.role = AAZStrType() - properties.scheduled_operations = AAZObjectType( - serialized_name="scheduledOperations", + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", ) properties.service_console_url = AAZStrType( serialized_name="serviceConsoleUrl", @@ -421,6 +442,10 @@ def _build_schema_on_200(cls): serialized_name="timeDeletionOfFreeAutonomousDatabase", flags={"read_only": True}, ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) properties.time_local_data_guard_enabled = AAZStrType( serialized_name="timeLocalDataGuardEnabled", flags={"read_only": True}, @@ -598,19 +623,36 @@ def _build_schema_on_200(cls): provisionable_cpus = cls._schema_on_200.properties.provisionable_cpus provisionable_cpus.Element = AAZIntType() - scheduled_operations = cls._schema_on_200.properties.scheduled_operations - scheduled_operations.day_of_week = AAZObjectType( + remote_disaster_recovery_configuration = cls._schema_on_200.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( serialized_name="dayOfWeek", flags={"required": True}, ) - scheduled_operations.scheduled_start_time = AAZStrType( + _element.scheduled_start_time = AAZStrType( serialized_name="scheduledStartTime", ) - scheduled_operations.scheduled_stop_time = AAZStrType( + _element.scheduled_stop_time = AAZStrType( serialized_name="scheduledStopTime", ) - day_of_week = cls._schema_on_200.properties.scheduled_operations.day_of_week + day_of_week = cls._schema_on_200.properties.scheduled_operations_list.Element.day_of_week day_of_week.name = AAZStrType( flags={"required": True}, ) @@ -632,6 +674,7 @@ def _build_schema_on_200(cls): ) disc_clone.refreshable_status = AAZStrType( serialized_name="refreshableStatus", + flags={"read_only": True}, ) disc_clone.source_id = AAZStrType( serialized_name="sourceId", @@ -641,6 +684,25 @@ def _build_schema_on_200(cls): serialized_name="timeUntilReconnectCloneEnabled", ) + disc_clone_from_backup_timestamp = cls._schema_on_200.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_update.py index 8579dc208b3..d89a8f895c0 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_update.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_update.py @@ -22,9 +22,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}", "2025-09-01"], ] } @@ -69,12 +69,22 @@ def _build_arguments_schema(cls, *args, **kwargs): options=["--clone"], arg_group="Properties", ) + _args_schema.clone_from_backup_timestamp = AAZObjectArg( + options=["--clone-from-backup-timestamp"], + arg_group="Properties", + blank={}, + ) + _args_schema.cross_region_disaster_recovery = AAZObjectArg( + options=["--cross-region-disaster-recovery"], + arg_group="Properties", + blank={}, + ) _args_schema.regular = AAZObjectArg( options=["--regular"], arg_group="Properties", blank={}, ) - _args_schema.admin_password = AAZPasswordArg( + _args_schema.admin_password = AAZStrArg( options=["--admin-password"], arg_group="Properties", help="Admin password.", @@ -83,7 +93,7 @@ def _build_arguments_schema(cls, *args, **kwargs): max_length=30, min_length=12, ), - blank=AAZPromptPasswordInput( + blank=AAZPromptInput( msg="Password:", ), ) @@ -107,7 +117,7 @@ def _build_arguments_schema(cls, *args, **kwargs): nullable=True, fmt=AAZFloatArgFormat( maximum=512.0, - minimum=0.0, + minimum=0.1, ), ) _args_schema.cpu_core_count = AAZIntArg( @@ -241,8 +251,8 @@ def _build_arguments_schema(cls, *args, **kwargs): nullable=True, enum={"BackupCopy": "BackupCopy", "DisabledStandby": "DisabledStandby", "Primary": "Primary", "SnapshotStandby": "SnapshotStandby", "Standby": "Standby"}, ) - _args_schema.scheduled_operations = AAZObjectArg( - options=["--scheduled-operations"], + _args_schema.scheduled_operations_list = AAZListArg( + options=["--scheduled-operations-list"], arg_group="Properties", help="The list of scheduled operations.", nullable=True, @@ -303,12 +313,17 @@ def _build_arguments_schema(cls, *args, **kwargs): nullable=True, ) - scheduled_operations = cls._args_schema.scheduled_operations - scheduled_operations.day_of_week = AAZObjectArg( + scheduled_operations_list = cls._args_schema.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.scheduled_operations_list.Element + _element.day_of_week = AAZObjectArg( options=["day-of-week"], help="Day of week", ) - scheduled_operations.scheduled_start_time = AAZStrArg( + _element.scheduled_start_time = AAZStrArg( options=["scheduled-start-time"], help="auto start time. value must be of ISO-8601 format HH:mm", nullable=True, @@ -317,7 +332,7 @@ def _build_arguments_schema(cls, *args, **kwargs): min_length=1, ), ) - scheduled_operations.scheduled_stop_time = AAZStrArg( + _element.scheduled_stop_time = AAZStrArg( options=["scheduled-stop-time"], help="auto stop time. value must be of ISO-8601 format HH:mm", nullable=True, @@ -327,7 +342,7 @@ def _build_arguments_schema(cls, *args, **kwargs): ), ) - day_of_week = cls._args_schema.scheduled_operations.day_of_week + day_of_week = cls._args_schema.scheduled_operations_list.Element.day_of_week day_of_week.name = AAZStrArg( options=["name"], help="Name of the day of the week.", @@ -437,7 +452,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -468,7 +483,519 @@ def _build_schema_on_200(cls): return cls._schema_on_200 cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_autonomous_database_read(cls._schema_on_200) + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.actual_used_data_storage_size_in_tbs = AAZFloatType( + serialized_name="actualUsedDataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.allocated_storage_size_in_tbs = AAZFloatType( + serialized_name="allocatedStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.apex_details = AAZObjectType( + serialized_name="apexDetails", + flags={"read_only": True}, + ) + properties.autonomous_database_id = AAZStrType( + serialized_name="autonomousDatabaseId", + ) + properties.autonomous_maintenance_schedule_type = AAZStrType( + serialized_name="autonomousMaintenanceScheduleType", + ) + properties.available_upgrade_versions = AAZListType( + serialized_name="availableUpgradeVersions", + flags={"read_only": True}, + ) + properties.backup_retention_period_in_days = AAZIntType( + serialized_name="backupRetentionPeriodInDays", + ) + properties.character_set = AAZStrType( + serialized_name="characterSet", + ) + properties.compute_count = AAZFloatType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.connection_strings = AAZObjectType( + serialized_name="connectionStrings", + flags={"read_only": True}, + ) + properties.connection_urls = AAZObjectType( + serialized_name="connectionUrls", + flags={"read_only": True}, + ) + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", + ) + properties.customer_contacts = AAZListType( + serialized_name="customerContacts", + ) + properties.data_safe_status = AAZStrType( + serialized_name="dataSafeStatus", + flags={"read_only": True}, + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + ) + properties.data_storage_size_in_tbs = AAZIntType( + serialized_name="dataStorageSizeInTbs", + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + ) + properties.db_workload = AAZStrType( + serialized_name="dbWorkload", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.failed_data_recovery_in_seconds = AAZIntType( + serialized_name="failedDataRecoveryInSeconds", + flags={"read_only": True}, + ) + properties.in_memory_area_in_gbs = AAZIntType( + serialized_name="inMemoryAreaInGbs", + flags={"read_only": True}, + ) + properties.is_auto_scaling_enabled = AAZBoolType( + serialized_name="isAutoScalingEnabled", + ) + properties.is_auto_scaling_for_storage_enabled = AAZBoolType( + serialized_name="isAutoScalingForStorageEnabled", + ) + properties.is_local_data_guard_enabled = AAZBoolType( + serialized_name="isLocalDataGuardEnabled", + ) + properties.is_mtls_connection_required = AAZBoolType( + serialized_name="isMtlsConnectionRequired", + ) + properties.is_preview = AAZBoolType( + serialized_name="isPreview", + flags={"read_only": True}, + ) + properties.is_remote_data_guard_enabled = AAZBoolType( + serialized_name="isRemoteDataGuardEnabled", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( + serialized_name="localAdgAutoFailoverMaxDataLossLimit", + ) + properties.local_disaster_recovery_type = AAZStrType( + serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, + ) + properties.local_standby_db = AAZObjectType( + serialized_name="localStandbyDb", + flags={"read_only": True}, + ) + properties.long_term_backup_schedule = AAZObjectType( + serialized_name="longTermBackupSchedule", + ) + properties.memory_per_oracle_compute_unit_in_gbs = AAZIntType( + serialized_name="memoryPerOracleComputeUnitInGbs", + flags={"read_only": True}, + ) + properties.ncharacter_set = AAZStrType( + serialized_name="ncharacterSet", + ) + properties.next_long_term_backup_time_stamp = AAZStrType( + serialized_name="nextLongTermBackupTimeStamp", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.open_mode = AAZStrType( + serialized_name="openMode", + ) + properties.operations_insights_status = AAZStrType( + serialized_name="operationsInsightsStatus", + flags={"read_only": True}, + ) + properties.peer_db_ids = AAZListType( + serialized_name="peerDbIds", + flags={"read_only": True}, + ) + properties.permission_level = AAZStrType( + serialized_name="permissionLevel", + ) + properties.private_endpoint = AAZStrType( + serialized_name="privateEndpoint", + flags={"read_only": True}, + ) + properties.private_endpoint_ip = AAZStrType( + serialized_name="privateEndpointIp", + ) + properties.private_endpoint_label = AAZStrType( + serialized_name="privateEndpointLabel", + ) + properties.provisionable_cpus = AAZListType( + serialized_name="provisionableCpus", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) + properties.role = AAZStrType() + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", + ) + properties.service_console_url = AAZStrType( + serialized_name="serviceConsoleUrl", + flags={"read_only": True}, + ) + properties.sql_web_developer_url = AAZStrType( + serialized_name="sqlWebDeveloperUrl", + flags={"read_only": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + ) + properties.supported_regions_to_clone_to = AAZListType( + serialized_name="supportedRegionsToCloneTo", + flags={"read_only": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.time_data_guard_role_changed = AAZStrType( + serialized_name="timeDataGuardRoleChanged", + flags={"read_only": True}, + ) + properties.time_deletion_of_free_autonomous_database = AAZStrType( + serialized_name="timeDeletionOfFreeAutonomousDatabase", + flags={"read_only": True}, + ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) + properties.time_local_data_guard_enabled = AAZStrType( + serialized_name="timeLocalDataGuardEnabled", + flags={"read_only": True}, + ) + properties.time_maintenance_begin = AAZStrType( + serialized_name="timeMaintenanceBegin", + flags={"read_only": True}, + ) + properties.time_maintenance_end = AAZStrType( + serialized_name="timeMaintenanceEnd", + flags={"read_only": True}, + ) + properties.time_of_last_failover = AAZStrType( + serialized_name="timeOfLastFailover", + flags={"read_only": True}, + ) + properties.time_of_last_refresh = AAZStrType( + serialized_name="timeOfLastRefresh", + flags={"read_only": True}, + ) + properties.time_of_last_refresh_point = AAZStrType( + serialized_name="timeOfLastRefreshPoint", + flags={"read_only": True}, + ) + properties.time_of_last_switchover = AAZStrType( + serialized_name="timeOfLastSwitchover", + flags={"read_only": True}, + ) + properties.time_reclamation_of_free_autonomous_database = AAZStrType( + serialized_name="timeReclamationOfFreeAutonomousDatabase", + flags={"read_only": True}, + ) + properties.used_data_storage_size_in_gbs = AAZIntType( + serialized_name="usedDataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.used_data_storage_size_in_tbs = AAZIntType( + serialized_name="usedDataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + ) + properties.whitelisted_ips = AAZListType( + serialized_name="whitelistedIps", + ) + + apex_details = cls._schema_on_200.properties.apex_details + apex_details.apex_version = AAZStrType( + serialized_name="apexVersion", + ) + apex_details.ords_version = AAZStrType( + serialized_name="ordsVersion", + ) + + available_upgrade_versions = cls._schema_on_200.properties.available_upgrade_versions + available_upgrade_versions.Element = AAZStrType() + + connection_strings = cls._schema_on_200.properties.connection_strings + connection_strings.all_connection_strings = AAZObjectType( + serialized_name="allConnectionStrings", + ) + connection_strings.dedicated = AAZStrType() + connection_strings.high = AAZStrType() + connection_strings.low = AAZStrType() + connection_strings.medium = AAZStrType() + connection_strings.profiles = AAZListType() + + all_connection_strings = cls._schema_on_200.properties.connection_strings.all_connection_strings + all_connection_strings.high = AAZStrType() + all_connection_strings.low = AAZStrType() + all_connection_strings.medium = AAZStrType() + + profiles = cls._schema_on_200.properties.connection_strings.profiles + profiles.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.connection_strings.profiles.Element + _element.consumer_group = AAZStrType( + serialized_name="consumerGroup", + ) + _element.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + _element.host_format = AAZStrType( + serialized_name="hostFormat", + flags={"required": True}, + ) + _element.is_regional = AAZBoolType( + serialized_name="isRegional", + ) + _element.protocol = AAZStrType( + flags={"required": True}, + ) + _element.session_mode = AAZStrType( + serialized_name="sessionMode", + flags={"required": True}, + ) + _element.syntax_format = AAZStrType( + serialized_name="syntaxFormat", + flags={"required": True}, + ) + _element.tls_authentication = AAZStrType( + serialized_name="tlsAuthentication", + ) + _element.value = AAZStrType( + flags={"required": True}, + ) + + connection_urls = cls._schema_on_200.properties.connection_urls + connection_urls.apex_url = AAZStrType( + serialized_name="apexUrl", + ) + connection_urls.database_transforms_url = AAZStrType( + serialized_name="databaseTransformsUrl", + ) + connection_urls.graph_studio_url = AAZStrType( + serialized_name="graphStudioUrl", + ) + connection_urls.machine_learning_notebook_url = AAZStrType( + serialized_name="machineLearningNotebookUrl", + ) + connection_urls.mongo_db_url = AAZStrType( + serialized_name="mongoDbUrl", + ) + connection_urls.ords_url = AAZStrType( + serialized_name="ordsUrl", + ) + connection_urls.sql_dev_web_url = AAZStrType( + serialized_name="sqlDevWebUrl", + ) + + customer_contacts = cls._schema_on_200.properties.customer_contacts + customer_contacts.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.customer_contacts.Element + _element.email = AAZStrType( + flags={"required": True}, + ) + + local_standby_db = cls._schema_on_200.properties.local_standby_db + local_standby_db.lag_time_in_seconds = AAZIntType( + serialized_name="lagTimeInSeconds", + ) + local_standby_db.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + local_standby_db.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + local_standby_db.time_data_guard_role_changed = AAZStrType( + serialized_name="timeDataGuardRoleChanged", + ) + local_standby_db.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + ) + + long_term_backup_schedule = cls._schema_on_200.properties.long_term_backup_schedule + long_term_backup_schedule.is_disabled = AAZBoolType( + serialized_name="isDisabled", + ) + long_term_backup_schedule.repeat_cadence = AAZStrType( + serialized_name="repeatCadence", + ) + long_term_backup_schedule.retention_period_in_days = AAZIntType( + serialized_name="retentionPeriodInDays", + ) + long_term_backup_schedule.time_of_backup = AAZStrType( + serialized_name="timeOfBackup", + ) + + peer_db_ids = cls._schema_on_200.properties.peer_db_ids + peer_db_ids.Element = AAZStrType() + + provisionable_cpus = cls._schema_on_200.properties.provisionable_cpus + provisionable_cpus.Element = AAZIntType() + + remote_disaster_recovery_configuration = cls._schema_on_200.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( + serialized_name="dayOfWeek", + flags={"required": True}, + ) + _element.scheduled_start_time = AAZStrType( + serialized_name="scheduledStartTime", + ) + _element.scheduled_stop_time = AAZStrType( + serialized_name="scheduledStopTime", + ) + + day_of_week = cls._schema_on_200.properties.scheduled_operations_list.Element.day_of_week + day_of_week.name = AAZStrType( + flags={"required": True}, + ) + + supported_regions_to_clone_to = cls._schema_on_200.properties.supported_regions_to_clone_to + supported_regions_to_clone_to.Element = AAZStrType() + + whitelisted_ips = cls._schema_on_200.properties.whitelisted_ips + whitelisted_ips.Element = AAZStrType() + + disc_clone = cls._schema_on_200.properties.discriminate_by("data_base_type", "Clone") + disc_clone.is_reconnect_clone_enabled = AAZBoolType( + serialized_name="isReconnectCloneEnabled", + flags={"read_only": True}, + ) + disc_clone.is_refreshable_clone = AAZBoolType( + serialized_name="isRefreshableClone", + flags={"read_only": True}, + ) + disc_clone.refreshable_status = AAZStrType( + serialized_name="refreshableStatus", + flags={"read_only": True}, + ) + disc_clone.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + disc_clone.time_until_reconnect_clone_enabled = AAZStrType( + serialized_name="timeUntilReconnectCloneEnabled", + ) + + disc_clone_from_backup_timestamp = cls._schema_on_200.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() return cls._schema_on_200 @@ -536,7 +1063,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -579,7 +1106,519 @@ def _build_schema_on_200_201(cls): return cls._schema_on_200_201 cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_autonomous_database_read(cls._schema_on_200_201) + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.actual_used_data_storage_size_in_tbs = AAZFloatType( + serialized_name="actualUsedDataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.allocated_storage_size_in_tbs = AAZFloatType( + serialized_name="allocatedStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.apex_details = AAZObjectType( + serialized_name="apexDetails", + flags={"read_only": True}, + ) + properties.autonomous_database_id = AAZStrType( + serialized_name="autonomousDatabaseId", + ) + properties.autonomous_maintenance_schedule_type = AAZStrType( + serialized_name="autonomousMaintenanceScheduleType", + ) + properties.available_upgrade_versions = AAZListType( + serialized_name="availableUpgradeVersions", + flags={"read_only": True}, + ) + properties.backup_retention_period_in_days = AAZIntType( + serialized_name="backupRetentionPeriodInDays", + ) + properties.character_set = AAZStrType( + serialized_name="characterSet", + ) + properties.compute_count = AAZFloatType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.connection_strings = AAZObjectType( + serialized_name="connectionStrings", + flags={"read_only": True}, + ) + properties.connection_urls = AAZObjectType( + serialized_name="connectionUrls", + flags={"read_only": True}, + ) + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", + ) + properties.customer_contacts = AAZListType( + serialized_name="customerContacts", + ) + properties.data_safe_status = AAZStrType( + serialized_name="dataSafeStatus", + flags={"read_only": True}, + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + ) + properties.data_storage_size_in_tbs = AAZIntType( + serialized_name="dataStorageSizeInTbs", + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + ) + properties.db_workload = AAZStrType( + serialized_name="dbWorkload", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.failed_data_recovery_in_seconds = AAZIntType( + serialized_name="failedDataRecoveryInSeconds", + flags={"read_only": True}, + ) + properties.in_memory_area_in_gbs = AAZIntType( + serialized_name="inMemoryAreaInGbs", + flags={"read_only": True}, + ) + properties.is_auto_scaling_enabled = AAZBoolType( + serialized_name="isAutoScalingEnabled", + ) + properties.is_auto_scaling_for_storage_enabled = AAZBoolType( + serialized_name="isAutoScalingForStorageEnabled", + ) + properties.is_local_data_guard_enabled = AAZBoolType( + serialized_name="isLocalDataGuardEnabled", + ) + properties.is_mtls_connection_required = AAZBoolType( + serialized_name="isMtlsConnectionRequired", + ) + properties.is_preview = AAZBoolType( + serialized_name="isPreview", + flags={"read_only": True}, + ) + properties.is_remote_data_guard_enabled = AAZBoolType( + serialized_name="isRemoteDataGuardEnabled", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( + serialized_name="localAdgAutoFailoverMaxDataLossLimit", + ) + properties.local_disaster_recovery_type = AAZStrType( + serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, + ) + properties.local_standby_db = AAZObjectType( + serialized_name="localStandbyDb", + flags={"read_only": True}, + ) + properties.long_term_backup_schedule = AAZObjectType( + serialized_name="longTermBackupSchedule", + ) + properties.memory_per_oracle_compute_unit_in_gbs = AAZIntType( + serialized_name="memoryPerOracleComputeUnitInGbs", + flags={"read_only": True}, + ) + properties.ncharacter_set = AAZStrType( + serialized_name="ncharacterSet", + ) + properties.next_long_term_backup_time_stamp = AAZStrType( + serialized_name="nextLongTermBackupTimeStamp", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.open_mode = AAZStrType( + serialized_name="openMode", + ) + properties.operations_insights_status = AAZStrType( + serialized_name="operationsInsightsStatus", + flags={"read_only": True}, + ) + properties.peer_db_ids = AAZListType( + serialized_name="peerDbIds", + flags={"read_only": True}, + ) + properties.permission_level = AAZStrType( + serialized_name="permissionLevel", + ) + properties.private_endpoint = AAZStrType( + serialized_name="privateEndpoint", + flags={"read_only": True}, + ) + properties.private_endpoint_ip = AAZStrType( + serialized_name="privateEndpointIp", + ) + properties.private_endpoint_label = AAZStrType( + serialized_name="privateEndpointLabel", + ) + properties.provisionable_cpus = AAZListType( + serialized_name="provisionableCpus", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) + properties.role = AAZStrType() + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", + ) + properties.service_console_url = AAZStrType( + serialized_name="serviceConsoleUrl", + flags={"read_only": True}, + ) + properties.sql_web_developer_url = AAZStrType( + serialized_name="sqlWebDeveloperUrl", + flags={"read_only": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + ) + properties.supported_regions_to_clone_to = AAZListType( + serialized_name="supportedRegionsToCloneTo", + flags={"read_only": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.time_data_guard_role_changed = AAZStrType( + serialized_name="timeDataGuardRoleChanged", + flags={"read_only": True}, + ) + properties.time_deletion_of_free_autonomous_database = AAZStrType( + serialized_name="timeDeletionOfFreeAutonomousDatabase", + flags={"read_only": True}, + ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) + properties.time_local_data_guard_enabled = AAZStrType( + serialized_name="timeLocalDataGuardEnabled", + flags={"read_only": True}, + ) + properties.time_maintenance_begin = AAZStrType( + serialized_name="timeMaintenanceBegin", + flags={"read_only": True}, + ) + properties.time_maintenance_end = AAZStrType( + serialized_name="timeMaintenanceEnd", + flags={"read_only": True}, + ) + properties.time_of_last_failover = AAZStrType( + serialized_name="timeOfLastFailover", + flags={"read_only": True}, + ) + properties.time_of_last_refresh = AAZStrType( + serialized_name="timeOfLastRefresh", + flags={"read_only": True}, + ) + properties.time_of_last_refresh_point = AAZStrType( + serialized_name="timeOfLastRefreshPoint", + flags={"read_only": True}, + ) + properties.time_of_last_switchover = AAZStrType( + serialized_name="timeOfLastSwitchover", + flags={"read_only": True}, + ) + properties.time_reclamation_of_free_autonomous_database = AAZStrType( + serialized_name="timeReclamationOfFreeAutonomousDatabase", + flags={"read_only": True}, + ) + properties.used_data_storage_size_in_gbs = AAZIntType( + serialized_name="usedDataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.used_data_storage_size_in_tbs = AAZIntType( + serialized_name="usedDataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + ) + properties.whitelisted_ips = AAZListType( + serialized_name="whitelistedIps", + ) + + apex_details = cls._schema_on_200_201.properties.apex_details + apex_details.apex_version = AAZStrType( + serialized_name="apexVersion", + ) + apex_details.ords_version = AAZStrType( + serialized_name="ordsVersion", + ) + + available_upgrade_versions = cls._schema_on_200_201.properties.available_upgrade_versions + available_upgrade_versions.Element = AAZStrType() + + connection_strings = cls._schema_on_200_201.properties.connection_strings + connection_strings.all_connection_strings = AAZObjectType( + serialized_name="allConnectionStrings", + ) + connection_strings.dedicated = AAZStrType() + connection_strings.high = AAZStrType() + connection_strings.low = AAZStrType() + connection_strings.medium = AAZStrType() + connection_strings.profiles = AAZListType() + + all_connection_strings = cls._schema_on_200_201.properties.connection_strings.all_connection_strings + all_connection_strings.high = AAZStrType() + all_connection_strings.low = AAZStrType() + all_connection_strings.medium = AAZStrType() + + profiles = cls._schema_on_200_201.properties.connection_strings.profiles + profiles.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.connection_strings.profiles.Element + _element.consumer_group = AAZStrType( + serialized_name="consumerGroup", + ) + _element.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + _element.host_format = AAZStrType( + serialized_name="hostFormat", + flags={"required": True}, + ) + _element.is_regional = AAZBoolType( + serialized_name="isRegional", + ) + _element.protocol = AAZStrType( + flags={"required": True}, + ) + _element.session_mode = AAZStrType( + serialized_name="sessionMode", + flags={"required": True}, + ) + _element.syntax_format = AAZStrType( + serialized_name="syntaxFormat", + flags={"required": True}, + ) + _element.tls_authentication = AAZStrType( + serialized_name="tlsAuthentication", + ) + _element.value = AAZStrType( + flags={"required": True}, + ) + + connection_urls = cls._schema_on_200_201.properties.connection_urls + connection_urls.apex_url = AAZStrType( + serialized_name="apexUrl", + ) + connection_urls.database_transforms_url = AAZStrType( + serialized_name="databaseTransformsUrl", + ) + connection_urls.graph_studio_url = AAZStrType( + serialized_name="graphStudioUrl", + ) + connection_urls.machine_learning_notebook_url = AAZStrType( + serialized_name="machineLearningNotebookUrl", + ) + connection_urls.mongo_db_url = AAZStrType( + serialized_name="mongoDbUrl", + ) + connection_urls.ords_url = AAZStrType( + serialized_name="ordsUrl", + ) + connection_urls.sql_dev_web_url = AAZStrType( + serialized_name="sqlDevWebUrl", + ) + + customer_contacts = cls._schema_on_200_201.properties.customer_contacts + customer_contacts.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.customer_contacts.Element + _element.email = AAZStrType( + flags={"required": True}, + ) + + local_standby_db = cls._schema_on_200_201.properties.local_standby_db + local_standby_db.lag_time_in_seconds = AAZIntType( + serialized_name="lagTimeInSeconds", + ) + local_standby_db.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + local_standby_db.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + local_standby_db.time_data_guard_role_changed = AAZStrType( + serialized_name="timeDataGuardRoleChanged", + ) + local_standby_db.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + ) + + long_term_backup_schedule = cls._schema_on_200_201.properties.long_term_backup_schedule + long_term_backup_schedule.is_disabled = AAZBoolType( + serialized_name="isDisabled", + ) + long_term_backup_schedule.repeat_cadence = AAZStrType( + serialized_name="repeatCadence", + ) + long_term_backup_schedule.retention_period_in_days = AAZIntType( + serialized_name="retentionPeriodInDays", + ) + long_term_backup_schedule.time_of_backup = AAZStrType( + serialized_name="timeOfBackup", + ) + + peer_db_ids = cls._schema_on_200_201.properties.peer_db_ids + peer_db_ids.Element = AAZStrType() + + provisionable_cpus = cls._schema_on_200_201.properties.provisionable_cpus + provisionable_cpus.Element = AAZIntType() + + remote_disaster_recovery_configuration = cls._schema_on_200_201.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200_201.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( + serialized_name="dayOfWeek", + flags={"required": True}, + ) + _element.scheduled_start_time = AAZStrType( + serialized_name="scheduledStartTime", + ) + _element.scheduled_stop_time = AAZStrType( + serialized_name="scheduledStopTime", + ) + + day_of_week = cls._schema_on_200_201.properties.scheduled_operations_list.Element.day_of_week + day_of_week.name = AAZStrType( + flags={"required": True}, + ) + + supported_regions_to_clone_to = cls._schema_on_200_201.properties.supported_regions_to_clone_to + supported_regions_to_clone_to.Element = AAZStrType() + + whitelisted_ips = cls._schema_on_200_201.properties.whitelisted_ips + whitelisted_ips.Element = AAZStrType() + + disc_clone = cls._schema_on_200_201.properties.discriminate_by("data_base_type", "Clone") + disc_clone.is_reconnect_clone_enabled = AAZBoolType( + serialized_name="isReconnectCloneEnabled", + flags={"read_only": True}, + ) + disc_clone.is_refreshable_clone = AAZBoolType( + serialized_name="isRefreshableClone", + flags={"read_only": True}, + ) + disc_clone.refreshable_status = AAZStrType( + serialized_name="refreshableStatus", + flags={"read_only": True}, + ) + disc_clone.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + disc_clone.time_until_reconnect_clone_enabled = AAZStrType( + serialized_name="timeUntilReconnectCloneEnabled", + ) + + disc_clone_from_backup_timestamp = cls._schema_on_200_201.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200_201.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() return cls._schema_on_200_201 @@ -594,12 +1633,12 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("properties", AAZObjectType) _builder.set_prop("tags", AAZDictType, ".tags") properties = _builder.get(".properties") if properties is not None: - properties.set_prop("adminPassword", AAZStrType, ".admin_password", typ_kwargs={"flags": {"secret": True}}) + properties.set_prop("adminPassword", AAZStrType, ".admin_password") properties.set_prop("autonomousMaintenanceScheduleType", AAZStrType, ".autonomous_maintenance_schedule_type") properties.set_prop("backupRetentionPeriodInDays", AAZIntType, ".backup_retention_period_in_days") properties.set_prop("computeCount", AAZFloatType, ".compute_count") @@ -620,9 +1659,11 @@ def _update_instance(self, instance): properties.set_prop("peerDbId", AAZStrType, ".peer_db_id") properties.set_prop("permissionLevel", AAZStrType, ".permission_level") properties.set_prop("role", AAZStrType, ".role") - properties.set_prop("scheduledOperations", AAZObjectType, ".scheduled_operations") + properties.set_prop("scheduledOperationsList", AAZListType, ".scheduled_operations_list") properties.set_prop("whitelistedIps", AAZListType, ".whitelisted_ips") properties.discriminate_by("dataBaseType", "Clone") + properties.discriminate_by("dataBaseType", "CloneFromBackupTimestamp") + properties.discriminate_by("dataBaseType", "CrossRegionDisasterRecovery") properties.discriminate_by("dataBaseType", "Regular") customer_contacts = _builder.get(".properties.customerContacts") @@ -640,13 +1681,17 @@ def _update_instance(self, instance): long_term_backup_schedule.set_prop("retentionPeriodInDays", AAZIntType, ".retention_period_in_days") long_term_backup_schedule.set_prop("timeOfBackup", AAZStrType, ".time_of_backup") - scheduled_operations = _builder.get(".properties.scheduledOperations") - if scheduled_operations is not None: - scheduled_operations.set_prop("dayOfWeek", AAZObjectType, ".day_of_week", typ_kwargs={"flags": {"required": True}}) - scheduled_operations.set_prop("scheduledStartTime", AAZStrType, ".scheduled_start_time") - scheduled_operations.set_prop("scheduledStopTime", AAZStrType, ".scheduled_stop_time") + scheduled_operations_list = _builder.get(".properties.scheduledOperationsList") + if scheduled_operations_list is not None: + scheduled_operations_list.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.scheduledOperationsList[]") + if _elements is not None: + _elements.set_prop("dayOfWeek", AAZObjectType, ".day_of_week", typ_kwargs={"flags": {"required": True}}) + _elements.set_prop("scheduledStartTime", AAZStrType, ".scheduled_start_time") + _elements.set_prop("scheduledStopTime", AAZStrType, ".scheduled_stop_time") - day_of_week = _builder.get(".properties.scheduledOperations.dayOfWeek") + day_of_week = _builder.get(".properties.scheduledOperationsList[].dayOfWeek") if day_of_week is not None: day_of_week.set_prop("name", AAZStrType, ".name", typ_kwargs={"flags": {"required": True}}) @@ -676,492 +1721,5 @@ def __call__(self, *args, **kwargs): class _UpdateHelper: """Helper class for Update""" - _schema_autonomous_database_read = None - - @classmethod - def _build_schema_autonomous_database_read(cls, _schema): - if cls._schema_autonomous_database_read is not None: - _schema.id = cls._schema_autonomous_database_read.id - _schema.location = cls._schema_autonomous_database_read.location - _schema.name = cls._schema_autonomous_database_read.name - _schema.properties = cls._schema_autonomous_database_read.properties - _schema.system_data = cls._schema_autonomous_database_read.system_data - _schema.tags = cls._schema_autonomous_database_read.tags - _schema.type = cls._schema_autonomous_database_read.type - return - - cls._schema_autonomous_database_read = _schema_autonomous_database_read = AAZObjectType() - - autonomous_database_read = _schema_autonomous_database_read - autonomous_database_read.id = AAZStrType( - flags={"read_only": True}, - ) - autonomous_database_read.location = AAZStrType( - flags={"required": True}, - ) - autonomous_database_read.name = AAZStrType( - flags={"read_only": True}, - ) - autonomous_database_read.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - autonomous_database_read.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - autonomous_database_read.tags = AAZDictType() - autonomous_database_read.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = _schema_autonomous_database_read.properties - properties.actual_used_data_storage_size_in_tbs = AAZFloatType( - serialized_name="actualUsedDataStorageSizeInTbs", - flags={"read_only": True}, - ) - properties.allocated_storage_size_in_tbs = AAZFloatType( - serialized_name="allocatedStorageSizeInTbs", - flags={"read_only": True}, - ) - properties.apex_details = AAZObjectType( - serialized_name="apexDetails", - ) - properties.autonomous_database_id = AAZStrType( - serialized_name="autonomousDatabaseId", - ) - properties.autonomous_maintenance_schedule_type = AAZStrType( - serialized_name="autonomousMaintenanceScheduleType", - ) - properties.available_upgrade_versions = AAZListType( - serialized_name="availableUpgradeVersions", - flags={"read_only": True}, - ) - properties.backup_retention_period_in_days = AAZIntType( - serialized_name="backupRetentionPeriodInDays", - ) - properties.character_set = AAZStrType( - serialized_name="characterSet", - ) - properties.compute_count = AAZFloatType( - serialized_name="computeCount", - ) - properties.compute_model = AAZStrType( - serialized_name="computeModel", - ) - properties.connection_strings = AAZObjectType( - serialized_name="connectionStrings", - ) - properties.connection_urls = AAZObjectType( - serialized_name="connectionUrls", - ) - properties.cpu_core_count = AAZIntType( - serialized_name="cpuCoreCount", - ) - properties.customer_contacts = AAZListType( - serialized_name="customerContacts", - ) - properties.data_base_type = AAZStrType( - serialized_name="dataBaseType", - ) - properties.data_safe_status = AAZStrType( - serialized_name="dataSafeStatus", - ) - properties.data_storage_size_in_gbs = AAZIntType( - serialized_name="dataStorageSizeInGbs", - ) - properties.data_storage_size_in_tbs = AAZIntType( - serialized_name="dataStorageSizeInTbs", - ) - properties.database_edition = AAZStrType( - serialized_name="databaseEdition", - ) - properties.db_version = AAZStrType( - serialized_name="dbVersion", - ) - properties.db_workload = AAZStrType( - serialized_name="dbWorkload", - ) - properties.display_name = AAZStrType( - serialized_name="displayName", - ) - properties.failed_data_recovery_in_seconds = AAZIntType( - serialized_name="failedDataRecoveryInSeconds", - flags={"read_only": True}, - ) - properties.in_memory_area_in_gbs = AAZIntType( - serialized_name="inMemoryAreaInGbs", - flags={"read_only": True}, - ) - properties.is_auto_scaling_enabled = AAZBoolType( - serialized_name="isAutoScalingEnabled", - ) - properties.is_auto_scaling_for_storage_enabled = AAZBoolType( - serialized_name="isAutoScalingForStorageEnabled", - ) - properties.is_local_data_guard_enabled = AAZBoolType( - serialized_name="isLocalDataGuardEnabled", - ) - properties.is_mtls_connection_required = AAZBoolType( - serialized_name="isMtlsConnectionRequired", - ) - properties.is_preview = AAZBoolType( - serialized_name="isPreview", - flags={"read_only": True}, - ) - properties.is_remote_data_guard_enabled = AAZBoolType( - serialized_name="isRemoteDataGuardEnabled", - flags={"read_only": True}, - ) - properties.license_model = AAZStrType( - serialized_name="licenseModel", - ) - properties.lifecycle_details = AAZStrType( - serialized_name="lifecycleDetails", - flags={"read_only": True}, - ) - properties.lifecycle_state = AAZStrType( - serialized_name="lifecycleState", - ) - properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( - serialized_name="localAdgAutoFailoverMaxDataLossLimit", - ) - properties.local_disaster_recovery_type = AAZStrType( - serialized_name="localDisasterRecoveryType", - ) - properties.local_standby_db = AAZObjectType( - serialized_name="localStandbyDb", - ) - properties.long_term_backup_schedule = AAZObjectType( - serialized_name="longTermBackupSchedule", - ) - properties.memory_per_oracle_compute_unit_in_gbs = AAZIntType( - serialized_name="memoryPerOracleComputeUnitInGbs", - flags={"read_only": True}, - ) - properties.ncharacter_set = AAZStrType( - serialized_name="ncharacterSet", - ) - properties.next_long_term_backup_time_stamp = AAZStrType( - serialized_name="nextLongTermBackupTimeStamp", - flags={"read_only": True}, - ) - properties.oci_url = AAZStrType( - serialized_name="ociUrl", - flags={"read_only": True}, - ) - properties.ocid = AAZStrType() - properties.open_mode = AAZStrType( - serialized_name="openMode", - ) - properties.operations_insights_status = AAZStrType( - serialized_name="operationsInsightsStatus", - ) - properties.peer_db_ids = AAZListType( - serialized_name="peerDbIds", - flags={"read_only": True}, - ) - properties.permission_level = AAZStrType( - serialized_name="permissionLevel", - ) - properties.private_endpoint = AAZStrType( - serialized_name="privateEndpoint", - flags={"read_only": True}, - ) - properties.private_endpoint_ip = AAZStrType( - serialized_name="privateEndpointIp", - ) - properties.private_endpoint_label = AAZStrType( - serialized_name="privateEndpointLabel", - ) - properties.provisionable_cpus = AAZListType( - serialized_name="provisionableCpus", - flags={"read_only": True}, - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.role = AAZStrType() - properties.scheduled_operations = AAZObjectType( - serialized_name="scheduledOperations", - ) - properties.service_console_url = AAZStrType( - serialized_name="serviceConsoleUrl", - flags={"read_only": True}, - ) - properties.sql_web_developer_url = AAZStrType( - serialized_name="sqlWebDeveloperUrl", - flags={"read_only": True}, - ) - properties.subnet_id = AAZStrType( - serialized_name="subnetId", - ) - properties.supported_regions_to_clone_to = AAZListType( - serialized_name="supportedRegionsToCloneTo", - flags={"read_only": True}, - ) - properties.time_created = AAZStrType( - serialized_name="timeCreated", - flags={"read_only": True}, - ) - properties.time_data_guard_role_changed = AAZStrType( - serialized_name="timeDataGuardRoleChanged", - flags={"read_only": True}, - ) - properties.time_deletion_of_free_autonomous_database = AAZStrType( - serialized_name="timeDeletionOfFreeAutonomousDatabase", - flags={"read_only": True}, - ) - properties.time_local_data_guard_enabled = AAZStrType( - serialized_name="timeLocalDataGuardEnabled", - flags={"read_only": True}, - ) - properties.time_maintenance_begin = AAZStrType( - serialized_name="timeMaintenanceBegin", - flags={"read_only": True}, - ) - properties.time_maintenance_end = AAZStrType( - serialized_name="timeMaintenanceEnd", - flags={"read_only": True}, - ) - properties.time_of_last_failover = AAZStrType( - serialized_name="timeOfLastFailover", - flags={"read_only": True}, - ) - properties.time_of_last_refresh = AAZStrType( - serialized_name="timeOfLastRefresh", - flags={"read_only": True}, - ) - properties.time_of_last_refresh_point = AAZStrType( - serialized_name="timeOfLastRefreshPoint", - flags={"read_only": True}, - ) - properties.time_of_last_switchover = AAZStrType( - serialized_name="timeOfLastSwitchover", - flags={"read_only": True}, - ) - properties.time_reclamation_of_free_autonomous_database = AAZStrType( - serialized_name="timeReclamationOfFreeAutonomousDatabase", - flags={"read_only": True}, - ) - properties.used_data_storage_size_in_gbs = AAZIntType( - serialized_name="usedDataStorageSizeInGbs", - flags={"read_only": True}, - ) - properties.used_data_storage_size_in_tbs = AAZIntType( - serialized_name="usedDataStorageSizeInTbs", - flags={"read_only": True}, - ) - properties.vnet_id = AAZStrType( - serialized_name="vnetId", - ) - properties.whitelisted_ips = AAZListType( - serialized_name="whitelistedIps", - ) - - apex_details = _schema_autonomous_database_read.properties.apex_details - apex_details.apex_version = AAZStrType( - serialized_name="apexVersion", - ) - apex_details.ords_version = AAZStrType( - serialized_name="ordsVersion", - ) - - available_upgrade_versions = _schema_autonomous_database_read.properties.available_upgrade_versions - available_upgrade_versions.Element = AAZStrType() - - connection_strings = _schema_autonomous_database_read.properties.connection_strings - connection_strings.all_connection_strings = AAZObjectType( - serialized_name="allConnectionStrings", - ) - connection_strings.dedicated = AAZStrType() - connection_strings.high = AAZStrType() - connection_strings.low = AAZStrType() - connection_strings.medium = AAZStrType() - connection_strings.profiles = AAZListType() - - all_connection_strings = _schema_autonomous_database_read.properties.connection_strings.all_connection_strings - all_connection_strings.high = AAZStrType() - all_connection_strings.low = AAZStrType() - all_connection_strings.medium = AAZStrType() - - profiles = _schema_autonomous_database_read.properties.connection_strings.profiles - profiles.Element = AAZObjectType() - - _element = _schema_autonomous_database_read.properties.connection_strings.profiles.Element - _element.consumer_group = AAZStrType( - serialized_name="consumerGroup", - ) - _element.display_name = AAZStrType( - serialized_name="displayName", - flags={"required": True}, - ) - _element.host_format = AAZStrType( - serialized_name="hostFormat", - flags={"required": True}, - ) - _element.is_regional = AAZBoolType( - serialized_name="isRegional", - ) - _element.protocol = AAZStrType( - flags={"required": True}, - ) - _element.session_mode = AAZStrType( - serialized_name="sessionMode", - flags={"required": True}, - ) - _element.syntax_format = AAZStrType( - serialized_name="syntaxFormat", - flags={"required": True}, - ) - _element.tls_authentication = AAZStrType( - serialized_name="tlsAuthentication", - ) - _element.value = AAZStrType( - flags={"required": True}, - ) - - connection_urls = _schema_autonomous_database_read.properties.connection_urls - connection_urls.apex_url = AAZStrType( - serialized_name="apexUrl", - ) - connection_urls.database_transforms_url = AAZStrType( - serialized_name="databaseTransformsUrl", - ) - connection_urls.graph_studio_url = AAZStrType( - serialized_name="graphStudioUrl", - ) - connection_urls.machine_learning_notebook_url = AAZStrType( - serialized_name="machineLearningNotebookUrl", - ) - connection_urls.mongo_db_url = AAZStrType( - serialized_name="mongoDbUrl", - ) - connection_urls.ords_url = AAZStrType( - serialized_name="ordsUrl", - ) - connection_urls.sql_dev_web_url = AAZStrType( - serialized_name="sqlDevWebUrl", - ) - - customer_contacts = _schema_autonomous_database_read.properties.customer_contacts - customer_contacts.Element = AAZObjectType() - - _element = _schema_autonomous_database_read.properties.customer_contacts.Element - _element.email = AAZStrType( - flags={"required": True}, - ) - - local_standby_db = _schema_autonomous_database_read.properties.local_standby_db - local_standby_db.lag_time_in_seconds = AAZIntType( - serialized_name="lagTimeInSeconds", - ) - local_standby_db.lifecycle_details = AAZStrType( - serialized_name="lifecycleDetails", - ) - local_standby_db.lifecycle_state = AAZStrType( - serialized_name="lifecycleState", - ) - local_standby_db.time_data_guard_role_changed = AAZStrType( - serialized_name="timeDataGuardRoleChanged", - ) - local_standby_db.time_disaster_recovery_role_changed = AAZStrType( - serialized_name="timeDisasterRecoveryRoleChanged", - ) - - long_term_backup_schedule = _schema_autonomous_database_read.properties.long_term_backup_schedule - long_term_backup_schedule.is_disabled = AAZBoolType( - serialized_name="isDisabled", - ) - long_term_backup_schedule.repeat_cadence = AAZStrType( - serialized_name="repeatCadence", - ) - long_term_backup_schedule.retention_period_in_days = AAZIntType( - serialized_name="retentionPeriodInDays", - ) - long_term_backup_schedule.time_of_backup = AAZStrType( - serialized_name="timeOfBackup", - ) - - peer_db_ids = _schema_autonomous_database_read.properties.peer_db_ids - peer_db_ids.Element = AAZStrType() - - provisionable_cpus = _schema_autonomous_database_read.properties.provisionable_cpus - provisionable_cpus.Element = AAZIntType() - - scheduled_operations = _schema_autonomous_database_read.properties.scheduled_operations - scheduled_operations.day_of_week = AAZObjectType( - serialized_name="dayOfWeek", - flags={"required": True}, - ) - scheduled_operations.scheduled_start_time = AAZStrType( - serialized_name="scheduledStartTime", - ) - scheduled_operations.scheduled_stop_time = AAZStrType( - serialized_name="scheduledStopTime", - ) - - day_of_week = _schema_autonomous_database_read.properties.scheduled_operations.day_of_week - day_of_week.name = AAZStrType( - flags={"required": True}, - ) - - supported_regions_to_clone_to = _schema_autonomous_database_read.properties.supported_regions_to_clone_to - supported_regions_to_clone_to.Element = AAZStrType() - - whitelisted_ips = _schema_autonomous_database_read.properties.whitelisted_ips - whitelisted_ips.Element = AAZStrType() - - disc_clone = _schema_autonomous_database_read.properties.discriminate_by("data_base_type", "Clone") - disc_clone.is_reconnect_clone_enabled = AAZBoolType( - serialized_name="isReconnectCloneEnabled", - flags={"read_only": True}, - ) - disc_clone.is_refreshable_clone = AAZBoolType( - serialized_name="isRefreshableClone", - flags={"read_only": True}, - ) - disc_clone.refreshable_status = AAZStrType( - serialized_name="refreshableStatus", - ) - disc_clone.source_id = AAZStrType( - serialized_name="sourceId", - flags={"required": True}, - ) - disc_clone.time_until_reconnect_clone_enabled = AAZStrType( - serialized_name="timeUntilReconnectCloneEnabled", - ) - - system_data = _schema_autonomous_database_read.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = _schema_autonomous_database_read.tags - tags.Element = AAZStrType() - - _schema.id = cls._schema_autonomous_database_read.id - _schema.location = cls._schema_autonomous_database_read.location - _schema.name = cls._schema_autonomous_database_read.name - _schema.properties = cls._schema_autonomous_database_read.properties - _schema.system_data = cls._schema_autonomous_database_read.system_data - _schema.tags = cls._schema_autonomous_database_read.tags - _schema.type = cls._schema_autonomous_database_read.type - __all__ = ["Update"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_wait.py index 6b54ee4c8e6..8545702139e 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}", "2025-09-01"], ] } @@ -121,7 +121,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -163,9 +163,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -186,6 +184,7 @@ def _build_schema_on_200(cls): ) properties.apex_details = AAZObjectType( serialized_name="apexDetails", + flags={"read_only": True}, ) properties.autonomous_database_id = AAZStrType( serialized_name="autonomousDatabaseId", @@ -211,9 +210,11 @@ def _build_schema_on_200(cls): ) properties.connection_strings = AAZObjectType( serialized_name="connectionStrings", + flags={"read_only": True}, ) properties.connection_urls = AAZObjectType( serialized_name="connectionUrls", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -221,11 +222,9 @@ def _build_schema_on_200(cls): properties.customer_contacts = AAZListType( serialized_name="customerContacts", ) - properties.data_base_type = AAZStrType( - serialized_name="dataBaseType", - ) properties.data_safe_status = AAZStrType( serialized_name="dataSafeStatus", + flags={"read_only": True}, ) properties.data_storage_size_in_gbs = AAZIntType( serialized_name="dataStorageSizeInGbs", @@ -282,15 +281,18 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.local_adg_auto_failover_max_data_loss_limit = AAZIntType( serialized_name="localAdgAutoFailoverMaxDataLossLimit", ) properties.local_disaster_recovery_type = AAZStrType( serialized_name="localDisasterRecoveryType", + flags={"read_only": True}, ) properties.local_standby_db = AAZObjectType( serialized_name="localStandbyDb", + flags={"read_only": True}, ) properties.long_term_backup_schedule = AAZObjectType( serialized_name="longTermBackupSchedule", @@ -310,12 +312,15 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.open_mode = AAZStrType( serialized_name="openMode", ) properties.operations_insights_status = AAZStrType( serialized_name="operationsInsightsStatus", + flags={"read_only": True}, ) properties.peer_db_ids = AAZListType( serialized_name="peerDbIds", @@ -342,9 +347,13 @@ def _build_schema_on_200(cls): serialized_name="provisioningState", flags={"read_only": True}, ) + properties.remote_disaster_recovery_configuration = AAZObjectType( + serialized_name="remoteDisasterRecoveryConfiguration", + flags={"read_only": True}, + ) properties.role = AAZStrType() - properties.scheduled_operations = AAZObjectType( - serialized_name="scheduledOperations", + properties.scheduled_operations_list = AAZListType( + serialized_name="scheduledOperationsList", ) properties.service_console_url = AAZStrType( serialized_name="serviceConsoleUrl", @@ -373,6 +382,10 @@ def _build_schema_on_200(cls): serialized_name="timeDeletionOfFreeAutonomousDatabase", flags={"read_only": True}, ) + properties.time_disaster_recovery_role_changed = AAZStrType( + serialized_name="timeDisasterRecoveryRoleChanged", + flags={"read_only": True}, + ) properties.time_local_data_guard_enabled = AAZStrType( serialized_name="timeLocalDataGuardEnabled", flags={"read_only": True}, @@ -550,19 +563,36 @@ def _build_schema_on_200(cls): provisionable_cpus = cls._schema_on_200.properties.provisionable_cpus provisionable_cpus.Element = AAZIntType() - scheduled_operations = cls._schema_on_200.properties.scheduled_operations - scheduled_operations.day_of_week = AAZObjectType( + remote_disaster_recovery_configuration = cls._schema_on_200.properties.remote_disaster_recovery_configuration + remote_disaster_recovery_configuration.disaster_recovery_type = AAZStrType( + serialized_name="disasterRecoveryType", + ) + remote_disaster_recovery_configuration.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + remote_disaster_recovery_configuration.is_snapshot_standby = AAZBoolType( + serialized_name="isSnapshotStandby", + ) + remote_disaster_recovery_configuration.time_snapshot_standby_enabled_till = AAZStrType( + serialized_name="timeSnapshotStandbyEnabledTill", + ) + + scheduled_operations_list = cls._schema_on_200.properties.scheduled_operations_list + scheduled_operations_list.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.scheduled_operations_list.Element + _element.day_of_week = AAZObjectType( serialized_name="dayOfWeek", flags={"required": True}, ) - scheduled_operations.scheduled_start_time = AAZStrType( + _element.scheduled_start_time = AAZStrType( serialized_name="scheduledStartTime", ) - scheduled_operations.scheduled_stop_time = AAZStrType( + _element.scheduled_stop_time = AAZStrType( serialized_name="scheduledStopTime", ) - day_of_week = cls._schema_on_200.properties.scheduled_operations.day_of_week + day_of_week = cls._schema_on_200.properties.scheduled_operations_list.Element.day_of_week day_of_week.name = AAZStrType( flags={"required": True}, ) @@ -584,6 +614,7 @@ def _build_schema_on_200(cls): ) disc_clone.refreshable_status = AAZStrType( serialized_name="refreshableStatus", + flags={"read_only": True}, ) disc_clone.source_id = AAZStrType( serialized_name="sourceId", @@ -593,6 +624,25 @@ def _build_schema_on_200(cls): serialized_name="timeUntilReconnectCloneEnabled", ) + disc_clone_from_backup_timestamp = cls._schema_on_200.properties.discriminate_by("data_base_type", "CloneFromBackupTimestamp") + disc_clone_from_backup_timestamp.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + + disc_cross_region_disaster_recovery = cls._schema_on_200.properties.discriminate_by("data_base_type", "CrossRegionDisasterRecovery") + disc_cross_region_disaster_recovery.is_replicate_automatic_backups = AAZBoolType( + serialized_name="isReplicateAutomaticBackups", + ) + disc_cross_region_disaster_recovery.remote_disaster_recovery_type = AAZStrType( + serialized_name="remoteDisasterRecoveryType", + flags={"required": True}, + ) + disc_cross_region_disaster_recovery.source_id = AAZStrType( + serialized_name="sourceId", + flags={"required": True}, + ) + system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_create.py index 666c69202da..009abdd1868 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_create.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_create.py @@ -22,9 +22,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups/{}", "2025-09-01"], ] } @@ -79,10 +79,6 @@ def _build_arguments_schema(cls, *args, **kwargs): options=["--retention-days", "--retention-period-in-days"], arg_group="Properties", help="Retention period, in days, for long-term backups.", - fmt=AAZIntArgFormat( - maximum=3650, - minimum=60, - ), ) return cls._args_schema @@ -171,7 +167,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -196,7 +192,7 @@ def content(self): typ=AAZObjectType, typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("properties", AAZObjectType) properties = _builder.get(".properties") if properties is not None: @@ -229,9 +225,7 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200_201.properties = AAZObjectType() _schema_on_200_201.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -243,9 +237,11 @@ def _build_schema_on_200_201(cls): properties = cls._schema_on_200_201.properties properties.autonomous_database_ocid = AAZStrType( serialized_name="autonomousDatabaseOcid", + flags={"read_only": True}, ) properties.backup_type = AAZStrType( serialized_name="backupType", + flags={"read_only": True}, ) properties.database_size_in_tbs = AAZFloatType( serialized_name="databaseSizeInTbs", @@ -272,8 +268,11 @@ def _build_schema_on_200_201(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, ) - properties.ocid = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_delete.py index 1de14e75bcd..ebdc742f01b 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_delete.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_delete.py @@ -23,9 +23,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups/{}", "2025-09-01"], ] } @@ -161,7 +161,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_list.py index 5dd93ce2a40..1961201cca9 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups", "2025-09-01"], ] } @@ -62,7 +62,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - self.AutonomousDatabaseBackupsListByAutonomousDatabase(ctx=self.ctx)() + self.AutonomousDatabaseBackupsListByParent(ctx=self.ctx)() self.post_operations() @register_callback @@ -78,7 +78,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class AutonomousDatabaseBackupsListByAutonomousDatabase(AAZHttpOperation): + class AutonomousDatabaseBackupsListByParent(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -126,7 +126,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -176,9 +176,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -190,9 +188,11 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.value.Element.properties properties.autonomous_database_ocid = AAZStrType( serialized_name="autonomousDatabaseOcid", + flags={"read_only": True}, ) properties.backup_type = AAZStrType( serialized_name="backupType", + flags={"read_only": True}, ) properties.database_size_in_tbs = AAZFloatType( serialized_name="databaseSizeInTbs", @@ -219,8 +219,11 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, ) - properties.ocid = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_show.py index 0d3623558ee..ec50f542e4c 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups/{}", "2025-09-01"], ] } @@ -138,7 +138,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -177,9 +177,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -191,9 +189,11 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.properties properties.autonomous_database_ocid = AAZStrType( serialized_name="autonomousDatabaseOcid", + flags={"read_only": True}, ) properties.backup_type = AAZStrType( serialized_name="backupType", + flags={"read_only": True}, ) properties.database_size_in_tbs = AAZFloatType( serialized_name="databaseSizeInTbs", @@ -220,8 +220,11 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, ) - properties.ocid = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_update.py index 068d0616b14..48fd348d68b 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_update.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_update.py @@ -22,9 +22,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups/{}", "2025-09-01"], ] } @@ -79,10 +79,6 @@ def _build_arguments_schema(cls, *args, **kwargs): arg_group="Properties", help="Retention period, in days, for long-term backups.", nullable=True, - fmt=AAZIntArgFormat( - maximum=3650, - minimum=60, - ), ) return cls._args_schema @@ -168,7 +164,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -199,7 +195,105 @@ def _build_schema_on_200(cls): return cls._schema_on_200 cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_autonomous_database_backup_read(cls._schema_on_200) + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.autonomous_database_ocid = AAZStrType( + serialized_name="autonomousDatabaseOcid", + flags={"read_only": True}, + ) + properties.backup_type = AAZStrType( + serialized_name="backupType", + flags={"read_only": True}, + ) + properties.database_size_in_tbs = AAZFloatType( + serialized_name="databaseSizeInTbs", + flags={"read_only": True}, + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.is_automatic = AAZBoolType( + serialized_name="isAutomatic", + flags={"read_only": True}, + ) + properties.is_restorable = AAZBoolType( + serialized_name="isRestorable", + flags={"read_only": True}, + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.retention_period_in_days = AAZIntType( + serialized_name="retentionPeriodInDays", + ) + properties.size_in_tbs = AAZFloatType( + serialized_name="sizeInTbs", + flags={"read_only": True}, + ) + properties.time_available_til = AAZStrType( + serialized_name="timeAvailableTil", + flags={"read_only": True}, + ) + properties.time_ended = AAZStrType( + serialized_name="timeEnded", + flags={"read_only": True}, + ) + properties.time_started = AAZStrType( + serialized_name="timeStarted", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) return cls._schema_on_200 @@ -271,7 +365,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -314,7 +408,105 @@ def _build_schema_on_200_201(cls): return cls._schema_on_200_201 cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_autonomous_database_backup_read(cls._schema_on_200_201) + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.autonomous_database_ocid = AAZStrType( + serialized_name="autonomousDatabaseOcid", + flags={"read_only": True}, + ) + properties.backup_type = AAZStrType( + serialized_name="backupType", + flags={"read_only": True}, + ) + properties.database_size_in_tbs = AAZFloatType( + serialized_name="databaseSizeInTbs", + flags={"read_only": True}, + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.is_automatic = AAZBoolType( + serialized_name="isAutomatic", + flags={"read_only": True}, + ) + properties.is_restorable = AAZBoolType( + serialized_name="isRestorable", + flags={"read_only": True}, + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.retention_period_in_days = AAZIntType( + serialized_name="retentionPeriodInDays", + ) + properties.size_in_tbs = AAZFloatType( + serialized_name="sizeInTbs", + flags={"read_only": True}, + ) + properties.time_available_til = AAZStrType( + serialized_name="timeAvailableTil", + flags={"read_only": True}, + ) + properties.time_ended = AAZStrType( + serialized_name="timeEnded", + flags={"read_only": True}, + ) + properties.time_started = AAZStrType( + serialized_name="timeStarted", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) return cls._schema_on_200_201 @@ -329,7 +521,7 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("properties", AAZObjectType) properties = _builder.get(".properties") if properties is not None: @@ -349,121 +541,5 @@ def __call__(self, *args, **kwargs): class _UpdateHelper: """Helper class for Update""" - _schema_autonomous_database_backup_read = None - - @classmethod - def _build_schema_autonomous_database_backup_read(cls, _schema): - if cls._schema_autonomous_database_backup_read is not None: - _schema.id = cls._schema_autonomous_database_backup_read.id - _schema.name = cls._schema_autonomous_database_backup_read.name - _schema.properties = cls._schema_autonomous_database_backup_read.properties - _schema.system_data = cls._schema_autonomous_database_backup_read.system_data - _schema.type = cls._schema_autonomous_database_backup_read.type - return - - cls._schema_autonomous_database_backup_read = _schema_autonomous_database_backup_read = AAZObjectType() - - autonomous_database_backup_read = _schema_autonomous_database_backup_read - autonomous_database_backup_read.id = AAZStrType( - flags={"read_only": True}, - ) - autonomous_database_backup_read.name = AAZStrType( - flags={"read_only": True}, - ) - autonomous_database_backup_read.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - autonomous_database_backup_read.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - autonomous_database_backup_read.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = _schema_autonomous_database_backup_read.properties - properties.autonomous_database_ocid = AAZStrType( - serialized_name="autonomousDatabaseOcid", - ) - properties.backup_type = AAZStrType( - serialized_name="backupType", - ) - properties.database_size_in_tbs = AAZFloatType( - serialized_name="databaseSizeInTbs", - flags={"read_only": True}, - ) - properties.db_version = AAZStrType( - serialized_name="dbVersion", - flags={"read_only": True}, - ) - properties.display_name = AAZStrType( - serialized_name="displayName", - ) - properties.is_automatic = AAZBoolType( - serialized_name="isAutomatic", - flags={"read_only": True}, - ) - properties.is_restorable = AAZBoolType( - serialized_name="isRestorable", - flags={"read_only": True}, - ) - properties.lifecycle_details = AAZStrType( - serialized_name="lifecycleDetails", - flags={"read_only": True}, - ) - properties.lifecycle_state = AAZStrType( - serialized_name="lifecycleState", - ) - properties.ocid = AAZStrType() - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.retention_period_in_days = AAZIntType( - serialized_name="retentionPeriodInDays", - ) - properties.size_in_tbs = AAZFloatType( - serialized_name="sizeInTbs", - flags={"read_only": True}, - ) - properties.time_available_til = AAZStrType( - serialized_name="timeAvailableTil", - flags={"read_only": True}, - ) - properties.time_ended = AAZStrType( - serialized_name="timeEnded", - flags={"read_only": True}, - ) - properties.time_started = AAZStrType( - serialized_name="timeStarted", - flags={"read_only": True}, - ) - - system_data = _schema_autonomous_database_backup_read.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - _schema.id = cls._schema_autonomous_database_backup_read.id - _schema.name = cls._schema_autonomous_database_backup_read.name - _schema.properties = cls._schema_autonomous_database_backup_read.properties - _schema.system_data = cls._schema_autonomous_database_backup_read.system_data - _schema.type = cls._schema_autonomous_database_backup_read.type - __all__ = ["Update"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_wait.py index fada0d567b9..c1e97853e9a 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/backup/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/autonomousdatabases/{}/autonomousdatabasebackups/{}", "2025-09-01"], ] } @@ -134,7 +134,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -173,9 +173,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -187,9 +185,11 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.properties properties.autonomous_database_ocid = AAZStrType( serialized_name="autonomousDatabaseOcid", + flags={"read_only": True}, ) properties.backup_type = AAZStrType( serialized_name="backupType", + flags={"read_only": True}, ) properties.database_size_in_tbs = AAZFloatType( serialized_name="databaseSizeInTbs", @@ -216,8 +216,11 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, ) - properties.ocid = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/__init__.py index d63ae5a6fc9..2df85698253 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/__init__.py @@ -10,3 +10,4 @@ from .__cmd_group import * from ._list import * +from ._show import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/_list.py index 1d00491b15f..92920dccf2e 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/autonomousdatabasecharactersets", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/autonomousdatabasecharactersets", "2025-09-01"], ] } @@ -112,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -162,9 +162,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -176,7 +174,7 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.value.Element.properties properties.character_set = AAZStrType( serialized_name="characterSet", - flags={"required": True, "read_only": True}, + flags={"required": True}, ) system_data = cls._schema_on_200.value.Element.system_data diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/_show.py new file mode 100644 index 00000000000..39859eba850 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/character_set/_show.py @@ -0,0 +1,208 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database autonomous-database character-set show", +) +class Show(AAZCommand): + """Get a AutonomousDatabaseCharacterSet + + :example: Get ADBS Character Set + az oracle-database autonomous-database character-set show --location --name + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/autonomousdatabasecharactersets/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.adbscharsetname = AAZStrArg( + options=["-n", "--name", "--adbscharsetname"], + help="AutonomousDatabaseCharacterSet name", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.location = AAZResourceLocationArg( + required=True, + id_part="name", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.AutonomousDatabaseCharacterSetsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class AutonomousDatabaseCharacterSetsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/autonomousDatabaseCharacterSets/{adbscharsetname}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "adbscharsetname", self.ctx.args.adbscharsetname, + required=True, + ), + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.character_set = AAZStrType( + serialized_name="characterSet", + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/__init__.py index d63ae5a6fc9..2df85698253 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/__init__.py @@ -10,3 +10,4 @@ from .__cmd_group import * from ._list import * +from ._show import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/_list.py index b2922d2cb1f..93e69d790dd 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/autonomousdatabasenationalcharactersets", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/autonomousdatabasenationalcharactersets", "2025-09-01"], ] } @@ -112,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -162,9 +162,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -176,7 +174,7 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.value.Element.properties properties.character_set = AAZStrType( serialized_name="characterSet", - flags={"required": True, "read_only": True}, + flags={"required": True}, ) system_data = cls._schema_on_200.value.Element.system_data diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/_show.py new file mode 100644 index 00000000000..844fc13bc3f --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/national_character_set/_show.py @@ -0,0 +1,208 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database autonomous-database national-character-set show", +) +class Show(AAZCommand): + """Get a AutonomousDatabaseNationalCharacterSet + + :example: Get ADBS National Character Set + az oracle-database autonomous-database national-character-set show --location --name + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/autonomousdatabasenationalcharactersets/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.adbsncharsetname = AAZStrArg( + options=["-n", "--name", "--adbsncharsetname"], + help="AutonomousDatabaseNationalCharacterSets name", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.location = AAZResourceLocationArg( + required=True, + id_part="name", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.AutonomousDatabaseNationalCharacterSetsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class AutonomousDatabaseNationalCharacterSetsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/autonomousDatabaseNationalCharacterSets/{adbsncharsetname}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "adbsncharsetname", self.ctx.args.adbsncharsetname, + required=True, + ), + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.character_set = AAZStrType( + serialized_name="characterSet", + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/__init__.py index d63ae5a6fc9..2df85698253 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/__init__.py @@ -10,3 +10,4 @@ from .__cmd_group import * from ._list import * +from ._show import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/_list.py index b6227020043..ae731788ca7 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/autonomousdbversions", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/autonomousdbversions", "2025-09-01"], ] } @@ -112,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -162,9 +162,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -179,22 +177,18 @@ def _build_schema_on_200(cls): ) properties.is_default_for_free = AAZBoolType( serialized_name="isDefaultForFree", - flags={"read_only": True}, ) properties.is_default_for_paid = AAZBoolType( serialized_name="isDefaultForPaid", - flags={"read_only": True}, ) properties.is_free_tier_enabled = AAZBoolType( serialized_name="isFreeTierEnabled", - flags={"read_only": True}, ) properties.is_paid_enabled = AAZBoolType( serialized_name="isPaidEnabled", - flags={"read_only": True}, ) properties.version = AAZStrType( - flags={"required": True, "read_only": True}, + flags={"required": True}, ) system_data = cls._schema_on_200.value.Element.system_data diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/_show.py new file mode 100644 index 00000000000..1c30824edd1 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/autonomous_database/version/_show.py @@ -0,0 +1,222 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database autonomous-database version show", +) +class Show(AAZCommand): + """Get a AutonomousDbVersion + + :example: Get ADBS Version + az oracle-database autonomous-database version show --location --name + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/autonomousdbversions/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.autonomousdbversionsname = AAZStrArg( + options=["-n", "--name", "--autonomousdbversionsname"], + help="AutonomousDbVersion name", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.location = AAZResourceLocationArg( + required=True, + id_part="name", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.AutonomousDatabaseVersionsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class AutonomousDatabaseVersionsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/autonomousDbVersions/{autonomousdbversionsname}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "autonomousdbversionsname", self.ctx.args.autonomousdbversionsname, + required=True, + ), + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.db_workload = AAZStrType( + serialized_name="dbWorkload", + ) + properties.is_default_for_free = AAZBoolType( + serialized_name="isDefaultForFree", + ) + properties.is_default_for_paid = AAZBoolType( + serialized_name="isDefaultForPaid", + ) + properties.is_free_tier_enabled = AAZBoolType( + serialized_name="isFreeTierEnabled", + ) + properties.is_paid_enabled = AAZBoolType( + serialized_name="isPaidEnabled", + ) + properties.version = AAZStrType( + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/__init__.py index db73033039b..ec539cee88f 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/__init__.py @@ -9,6 +9,8 @@ # flake8: noqa from .__cmd_group import * +from ._add_storage_capacity import * +from ._configure_exascale import * from ._create import * from ._delete import * from ._list import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_add_storage_capacity.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_add_storage_capacity.py new file mode 100644 index 00000000000..a4f9ef9c6c3 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_add_storage_capacity.py @@ -0,0 +1,471 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database cloud-exadata-infrastructure add-storage-capacity", +) +class AddStorageCapacity(AAZCommand): + """Perform add storage capacity on exadata infra + + :example: Perform add storage capacity on exadata infra + az oracle-database cloud-exadata-infrastructure add-storage-capacity --resource-group rg000 --cloudexadatainfrastructurename infra1 + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}/addstoragecapacity", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.cloudexadatainfrastructurename = AAZStrArg( + options=["--cloudexadatainfrastructurename"], + help="CloudExadataInfrastructure name", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.CloudExadataInfrastructuresAddStorageCapacity(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class CloudExadataInfrastructuresAddStorageCapacity(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}/addStorageCapacity", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "cloudexadatainfrastructurename", self.ctx.args.cloudexadatainfrastructurename, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType( + flags={"required": True}, + ) + + properties = cls._schema_on_200.properties + properties.activated_storage_count = AAZIntType( + serialized_name="activatedStorageCount", + flags={"read_only": True}, + ) + properties.additional_storage_count = AAZIntType( + serialized_name="additionalStorageCount", + flags={"read_only": True}, + ) + properties.available_storage_size_in_gbs = AAZIntType( + serialized_name="availableStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.compute_count = AAZIntType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) + properties.cpu_count = AAZIntType( + serialized_name="cpuCount", + flags={"read_only": True}, + ) + properties.customer_contacts = AAZListType( + serialized_name="customerContacts", + ) + properties.data_storage_size_in_tbs = AAZFloatType( + serialized_name="dataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.database_server_type = AAZStrType( + serialized_name="databaseServerType", + ) + properties.db_node_storage_size_in_gbs = AAZIntType( + serialized_name="dbNodeStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.db_server_version = AAZStrType( + serialized_name="dbServerVersion", + flags={"read_only": True}, + ) + properties.defined_file_system_configuration = AAZListType( + serialized_name="definedFileSystemConfiguration", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.estimated_patching_time = AAZObjectType( + serialized_name="estimatedPatchingTime", + flags={"read_only": True}, + ) + properties.exascale_config = AAZObjectType( + serialized_name="exascaleConfig", + flags={"read_only": True}, + ) + properties.last_maintenance_run_id = AAZStrType( + serialized_name="lastMaintenanceRunId", + flags={"read_only": True}, + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.maintenance_window = AAZObjectType( + serialized_name="maintenanceWindow", + ) + properties.max_cpu_count = AAZIntType( + serialized_name="maxCpuCount", + flags={"read_only": True}, + ) + properties.max_data_storage_in_tbs = AAZFloatType( + serialized_name="maxDataStorageInTbs", + flags={"read_only": True}, + ) + properties.max_db_node_storage_size_in_gbs = AAZIntType( + serialized_name="maxDbNodeStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.max_memory_in_gbs = AAZIntType( + serialized_name="maxMemoryInGbs", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.monthly_db_server_version = AAZStrType( + serialized_name="monthlyDbServerVersion", + flags={"read_only": True}, + ) + properties.monthly_storage_server_version = AAZStrType( + serialized_name="monthlyStorageServerVersion", + flags={"read_only": True}, + ) + properties.next_maintenance_run_id = AAZStrType( + serialized_name="nextMaintenanceRunId", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.storage_count = AAZIntType( + serialized_name="storageCount", + ) + properties.storage_server_type = AAZStrType( + serialized_name="storageServerType", + ) + properties.storage_server_version = AAZStrType( + serialized_name="storageServerVersion", + flags={"read_only": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.total_storage_size_in_gbs = AAZIntType( + serialized_name="totalStorageSizeInGbs", + flags={"read_only": True}, + ) + + customer_contacts = cls._schema_on_200.properties.customer_contacts + customer_contacts.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.customer_contacts.Element + _element.email = AAZStrType( + flags={"required": True}, + ) + + defined_file_system_configuration = cls._schema_on_200.properties.defined_file_system_configuration + defined_file_system_configuration.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.defined_file_system_configuration.Element + _element.is_backup_partition = AAZBoolType( + serialized_name="isBackupPartition", + ) + _element.is_resizable = AAZBoolType( + serialized_name="isResizable", + ) + _element.min_size_gb = AAZIntType( + serialized_name="minSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + + estimated_patching_time = cls._schema_on_200.properties.estimated_patching_time + estimated_patching_time.estimated_db_server_patching_time = AAZIntType( + serialized_name="estimatedDbServerPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.estimated_network_switches_patching_time = AAZIntType( + serialized_name="estimatedNetworkSwitchesPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.estimated_storage_server_patching_time = AAZIntType( + serialized_name="estimatedStorageServerPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.total_estimated_patching_time = AAZIntType( + serialized_name="totalEstimatedPatchingTime", + flags={"read_only": True}, + ) + + exascale_config = cls._schema_on_200.properties.exascale_config + exascale_config.available_storage_in_gbs = AAZIntType( + serialized_name="availableStorageInGbs", + ) + exascale_config.total_storage_in_gbs = AAZIntType( + serialized_name="totalStorageInGbs", + flags={"required": True}, + ) + + maintenance_window = cls._schema_on_200.properties.maintenance_window + maintenance_window.custom_action_timeout_in_mins = AAZIntType( + serialized_name="customActionTimeoutInMins", + ) + maintenance_window.days_of_week = AAZListType( + serialized_name="daysOfWeek", + ) + maintenance_window.hours_of_day = AAZListType( + serialized_name="hoursOfDay", + ) + maintenance_window.is_custom_action_timeout_enabled = AAZBoolType( + serialized_name="isCustomActionTimeoutEnabled", + ) + maintenance_window.is_monthly_patching_enabled = AAZBoolType( + serialized_name="isMonthlyPatchingEnabled", + ) + maintenance_window.lead_time_in_weeks = AAZIntType( + serialized_name="leadTimeInWeeks", + ) + maintenance_window.months = AAZListType() + maintenance_window.patching_mode = AAZStrType( + serialized_name="patchingMode", + ) + maintenance_window.preference = AAZStrType() + maintenance_window.weeks_of_month = AAZListType( + serialized_name="weeksOfMonth", + ) + + days_of_week = cls._schema_on_200.properties.maintenance_window.days_of_week + days_of_week.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.maintenance_window.days_of_week.Element + _element.name = AAZStrType( + flags={"required": True}, + ) + + hours_of_day = cls._schema_on_200.properties.maintenance_window.hours_of_day + hours_of_day.Element = AAZIntType() + + months = cls._schema_on_200.properties.maintenance_window.months + months.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.maintenance_window.months.Element + _element.name = AAZStrType( + flags={"required": True}, + ) + + weeks_of_month = cls._schema_on_200.properties.maintenance_window.weeks_of_month + weeks_of_month.Element = AAZIntType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _AddStorageCapacityHelper: + """Helper class for AddStorageCapacity""" + + +__all__ = ["AddStorageCapacity"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_configure_exascale.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_configure_exascale.py new file mode 100644 index 00000000000..43bc5c8cd2a --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_configure_exascale.py @@ -0,0 +1,495 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database cloud-exadata-infrastructure configure-exascale", +) +class ConfigureExascale(AAZCommand): + """Configures Exascale on Cloud exadata infrastructure resource + + :example: CloudExadataInfrastructures_ConfigureExascale + az oracle-database cloud-exadata-infrastructure configure-exascale --resource-group rgopenapi --cloudexadatainfrastructurename OfakeTest RegExp .* --total-storage-in-gbs 19 + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}/configureexascale", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.cloudexadatainfrastructurename = AAZStrArg( + options=["--cloudexadatainfrastructurename"], + help="CloudExadataInfrastructure name", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Body" + + _args_schema = cls._args_schema + _args_schema.total_storage_in_gbs = AAZIntArg( + options=["--total-storage-in-gbs"], + arg_group="Body", + help="Storage size needed for Exascale in GBs.", + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.CloudExadataInfrastructuresConfigureExascale(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class CloudExadataInfrastructuresConfigureExascale(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}/configureExascale", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "cloudexadatainfrastructurename", self.ctx.args.cloudexadatainfrastructurename, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("totalStorageInGbs", AAZIntType, ".total_storage_in_gbs", typ_kwargs={"flags": {"required": True}}) + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType( + flags={"required": True}, + ) + + properties = cls._schema_on_200.properties + properties.activated_storage_count = AAZIntType( + serialized_name="activatedStorageCount", + flags={"read_only": True}, + ) + properties.additional_storage_count = AAZIntType( + serialized_name="additionalStorageCount", + flags={"read_only": True}, + ) + properties.available_storage_size_in_gbs = AAZIntType( + serialized_name="availableStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.compute_count = AAZIntType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) + properties.cpu_count = AAZIntType( + serialized_name="cpuCount", + flags={"read_only": True}, + ) + properties.customer_contacts = AAZListType( + serialized_name="customerContacts", + ) + properties.data_storage_size_in_tbs = AAZFloatType( + serialized_name="dataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.database_server_type = AAZStrType( + serialized_name="databaseServerType", + ) + properties.db_node_storage_size_in_gbs = AAZIntType( + serialized_name="dbNodeStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.db_server_version = AAZStrType( + serialized_name="dbServerVersion", + flags={"read_only": True}, + ) + properties.defined_file_system_configuration = AAZListType( + serialized_name="definedFileSystemConfiguration", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.estimated_patching_time = AAZObjectType( + serialized_name="estimatedPatchingTime", + flags={"read_only": True}, + ) + properties.exascale_config = AAZObjectType( + serialized_name="exascaleConfig", + flags={"read_only": True}, + ) + properties.last_maintenance_run_id = AAZStrType( + serialized_name="lastMaintenanceRunId", + flags={"read_only": True}, + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.maintenance_window = AAZObjectType( + serialized_name="maintenanceWindow", + ) + properties.max_cpu_count = AAZIntType( + serialized_name="maxCpuCount", + flags={"read_only": True}, + ) + properties.max_data_storage_in_tbs = AAZFloatType( + serialized_name="maxDataStorageInTbs", + flags={"read_only": True}, + ) + properties.max_db_node_storage_size_in_gbs = AAZIntType( + serialized_name="maxDbNodeStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.max_memory_in_gbs = AAZIntType( + serialized_name="maxMemoryInGbs", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.monthly_db_server_version = AAZStrType( + serialized_name="monthlyDbServerVersion", + flags={"read_only": True}, + ) + properties.monthly_storage_server_version = AAZStrType( + serialized_name="monthlyStorageServerVersion", + flags={"read_only": True}, + ) + properties.next_maintenance_run_id = AAZStrType( + serialized_name="nextMaintenanceRunId", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.storage_count = AAZIntType( + serialized_name="storageCount", + ) + properties.storage_server_type = AAZStrType( + serialized_name="storageServerType", + ) + properties.storage_server_version = AAZStrType( + serialized_name="storageServerVersion", + flags={"read_only": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.total_storage_size_in_gbs = AAZIntType( + serialized_name="totalStorageSizeInGbs", + flags={"read_only": True}, + ) + + customer_contacts = cls._schema_on_200.properties.customer_contacts + customer_contacts.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.customer_contacts.Element + _element.email = AAZStrType( + flags={"required": True}, + ) + + defined_file_system_configuration = cls._schema_on_200.properties.defined_file_system_configuration + defined_file_system_configuration.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.defined_file_system_configuration.Element + _element.is_backup_partition = AAZBoolType( + serialized_name="isBackupPartition", + ) + _element.is_resizable = AAZBoolType( + serialized_name="isResizable", + ) + _element.min_size_gb = AAZIntType( + serialized_name="minSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + + estimated_patching_time = cls._schema_on_200.properties.estimated_patching_time + estimated_patching_time.estimated_db_server_patching_time = AAZIntType( + serialized_name="estimatedDbServerPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.estimated_network_switches_patching_time = AAZIntType( + serialized_name="estimatedNetworkSwitchesPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.estimated_storage_server_patching_time = AAZIntType( + serialized_name="estimatedStorageServerPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.total_estimated_patching_time = AAZIntType( + serialized_name="totalEstimatedPatchingTime", + flags={"read_only": True}, + ) + + exascale_config = cls._schema_on_200.properties.exascale_config + exascale_config.available_storage_in_gbs = AAZIntType( + serialized_name="availableStorageInGbs", + ) + exascale_config.total_storage_in_gbs = AAZIntType( + serialized_name="totalStorageInGbs", + flags={"required": True}, + ) + + maintenance_window = cls._schema_on_200.properties.maintenance_window + maintenance_window.custom_action_timeout_in_mins = AAZIntType( + serialized_name="customActionTimeoutInMins", + ) + maintenance_window.days_of_week = AAZListType( + serialized_name="daysOfWeek", + ) + maintenance_window.hours_of_day = AAZListType( + serialized_name="hoursOfDay", + ) + maintenance_window.is_custom_action_timeout_enabled = AAZBoolType( + serialized_name="isCustomActionTimeoutEnabled", + ) + maintenance_window.is_monthly_patching_enabled = AAZBoolType( + serialized_name="isMonthlyPatchingEnabled", + ) + maintenance_window.lead_time_in_weeks = AAZIntType( + serialized_name="leadTimeInWeeks", + ) + maintenance_window.months = AAZListType() + maintenance_window.patching_mode = AAZStrType( + serialized_name="patchingMode", + ) + maintenance_window.preference = AAZStrType() + maintenance_window.weeks_of_month = AAZListType( + serialized_name="weeksOfMonth", + ) + + days_of_week = cls._schema_on_200.properties.maintenance_window.days_of_week + days_of_week.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.maintenance_window.days_of_week.Element + _element.name = AAZStrType( + flags={"required": True}, + ) + + hours_of_day = cls._schema_on_200.properties.maintenance_window.hours_of_day + hours_of_day.Element = AAZIntType() + + months = cls._schema_on_200.properties.maintenance_window.months + months.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.maintenance_window.months.Element + _element.name = AAZStrType( + flags={"required": True}, + ) + + weeks_of_month = cls._schema_on_200.properties.maintenance_window.weeks_of_month + weeks_of_month.Element = AAZIntType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ConfigureExascaleHelper: + """Helper class for ConfigureExascale""" + + +__all__ = ["ConfigureExascale"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_create.py index 89513063f0a..70122260d0e 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_create.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_create.py @@ -22,9 +22,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}", "2025-09-01"], ] } @@ -70,6 +70,15 @@ def _build_arguments_schema(cls, *args, **kwargs): arg_group="Properties", help="The list of customer email addresses that receive information from Oracle about the specified OCI Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance. ", ) + _args_schema.database_server_type = AAZStrArg( + options=["--database-server-type"], + arg_group="Properties", + help="The database server model type of the cloud Exadata infrastructure resource.", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) _args_schema.display_name = AAZStrArg( options=["--display-name"], arg_group="Properties", @@ -94,6 +103,15 @@ def _build_arguments_schema(cls, *args, **kwargs): arg_group="Properties", help="The number of storage servers for the cloud Exadata infrastructure.", ) + _args_schema.storage_server_type = AAZStrArg( + options=["--storage-server-type"], + arg_group="Properties", + help="The storage server model type of the cloud Exadata infrastructure resource.", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) customer_contacts = cls._args_schema.customer_contacts customer_contacts.Element = AAZObjectArg() @@ -296,7 +314,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -322,7 +340,7 @@ def content(self): typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("properties", AAZObjectType) _builder.set_prop("tags", AAZDictType, ".tags") _builder.set_prop("zones", AAZListType, ".zones", typ_kwargs={"flags": {"required": True}}) @@ -330,10 +348,12 @@ def content(self): if properties is not None: properties.set_prop("computeCount", AAZIntType, ".compute_count") properties.set_prop("customerContacts", AAZListType, ".customer_contacts") + properties.set_prop("databaseServerType", AAZStrType, ".database_server_type") properties.set_prop("displayName", AAZStrType, ".display_name", typ_kwargs={"flags": {"required": True}}) properties.set_prop("maintenanceWindow", AAZObjectType, ".maintenance_window") properties.set_prop("shape", AAZStrType, ".shape", typ_kwargs={"flags": {"required": True}}) properties.set_prop("storageCount", AAZIntType, ".storage_count") + properties.set_prop("storageServerType", AAZStrType, ".storage_server_type") customer_contacts = _builder.get(".properties.customerContacts") if customer_contacts is not None: @@ -417,9 +437,7 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200_201.properties = AAZObjectType() _schema_on_200_201.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -448,6 +466,10 @@ def _build_schema_on_200_201(cls): properties.compute_count = AAZIntType( serialized_name="computeCount", ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) properties.cpu_count = AAZIntType( serialized_name="cpuCount", flags={"read_only": True}, @@ -459,6 +481,9 @@ def _build_schema_on_200_201(cls): serialized_name="dataStorageSizeInTbs", flags={"read_only": True}, ) + properties.database_server_type = AAZStrType( + serialized_name="databaseServerType", + ) properties.db_node_storage_size_in_gbs = AAZIntType( serialized_name="dbNodeStorageSizeInGbs", flags={"read_only": True}, @@ -467,15 +492,25 @@ def _build_schema_on_200_201(cls): serialized_name="dbServerVersion", flags={"read_only": True}, ) + properties.defined_file_system_configuration = AAZListType( + serialized_name="definedFileSystemConfiguration", + flags={"read_only": True}, + ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.estimated_patching_time = AAZObjectType( serialized_name="estimatedPatchingTime", + flags={"read_only": True}, + ) + properties.exascale_config = AAZObjectType( + serialized_name="exascaleConfig", + flags={"read_only": True}, ) properties.last_maintenance_run_id = AAZStrType( serialized_name="lastMaintenanceRunId", + flags={"read_only": True}, ) properties.lifecycle_details = AAZStrType( serialized_name="lifecycleDetails", @@ -483,6 +518,7 @@ def _build_schema_on_200_201(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.maintenance_window = AAZObjectType( serialized_name="maintenanceWindow", @@ -517,12 +553,15 @@ def _build_schema_on_200_201(cls): ) properties.next_maintenance_run_id = AAZStrType( serialized_name="nextMaintenanceRunId", + flags={"read_only": True}, ) properties.oci_url = AAZStrType( serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, @@ -533,6 +572,9 @@ def _build_schema_on_200_201(cls): properties.storage_count = AAZIntType( serialized_name="storageCount", ) + properties.storage_server_type = AAZStrType( + serialized_name="storageServerType", + ) properties.storage_server_version = AAZStrType( serialized_name="storageServerVersion", flags={"read_only": True}, @@ -554,6 +596,23 @@ def _build_schema_on_200_201(cls): flags={"required": True}, ) + defined_file_system_configuration = cls._schema_on_200_201.properties.defined_file_system_configuration + defined_file_system_configuration.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.defined_file_system_configuration.Element + _element.is_backup_partition = AAZBoolType( + serialized_name="isBackupPartition", + ) + _element.is_resizable = AAZBoolType( + serialized_name="isResizable", + ) + _element.min_size_gb = AAZIntType( + serialized_name="minSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + estimated_patching_time = cls._schema_on_200_201.properties.estimated_patching_time estimated_patching_time.estimated_db_server_patching_time = AAZIntType( serialized_name="estimatedDbServerPatchingTime", @@ -572,6 +631,15 @@ def _build_schema_on_200_201(cls): flags={"read_only": True}, ) + exascale_config = cls._schema_on_200_201.properties.exascale_config + exascale_config.available_storage_in_gbs = AAZIntType( + serialized_name="availableStorageInGbs", + ) + exascale_config.total_storage_in_gbs = AAZIntType( + serialized_name="totalStorageInGbs", + flags={"required": True}, + ) + maintenance_window = cls._schema_on_200_201.properties.maintenance_window maintenance_window.custom_action_timeout_in_mins = AAZIntType( serialized_name="customActionTimeoutInMins", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_delete.py index 619d3fd4164..d98bbb25e76 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_delete.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_delete.py @@ -23,9 +23,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}", "2025-09-01"], ] } @@ -146,7 +146,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_list.py index 4a0e5fb035b..3d39715a562 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_list.py @@ -22,10 +22,10 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/cloudexadatainfrastructures", "2023-09-01"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/cloudexadatainfrastructures", "2025-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures", "2025-09-01"], ] } @@ -51,12 +51,12 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - condition_0 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) - condition_1 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_0 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_1 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) if condition_0: - self.CloudExadataInfrastructuresListByResourceGroup(ctx=self.ctx)() - if condition_1: self.CloudExadataInfrastructuresListBySubscription(ctx=self.ctx)() + if condition_1: + self.CloudExadataInfrastructuresListByResourceGroup(ctx=self.ctx)() self.post_operations() @register_callback @@ -72,7 +72,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class CloudExadataInfrastructuresListByResourceGroup(AAZHttpOperation): + class CloudExadataInfrastructuresListBySubscription(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -86,7 +86,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/cloudExadataInfrastructures", **self.url_parameters ) @@ -101,10 +101,6 @@ def error_format(self): @property def url_parameters(self): parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -116,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -169,9 +165,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -200,6 +194,10 @@ def _build_schema_on_200(cls): properties.compute_count = AAZIntType( serialized_name="computeCount", ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) properties.cpu_count = AAZIntType( serialized_name="cpuCount", flags={"read_only": True}, @@ -211,6 +209,9 @@ def _build_schema_on_200(cls): serialized_name="dataStorageSizeInTbs", flags={"read_only": True}, ) + properties.database_server_type = AAZStrType( + serialized_name="databaseServerType", + ) properties.db_node_storage_size_in_gbs = AAZIntType( serialized_name="dbNodeStorageSizeInGbs", flags={"read_only": True}, @@ -219,15 +220,25 @@ def _build_schema_on_200(cls): serialized_name="dbServerVersion", flags={"read_only": True}, ) + properties.defined_file_system_configuration = AAZListType( + serialized_name="definedFileSystemConfiguration", + flags={"read_only": True}, + ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.estimated_patching_time = AAZObjectType( serialized_name="estimatedPatchingTime", + flags={"read_only": True}, + ) + properties.exascale_config = AAZObjectType( + serialized_name="exascaleConfig", + flags={"read_only": True}, ) properties.last_maintenance_run_id = AAZStrType( serialized_name="lastMaintenanceRunId", + flags={"read_only": True}, ) properties.lifecycle_details = AAZStrType( serialized_name="lifecycleDetails", @@ -235,6 +246,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.maintenance_window = AAZObjectType( serialized_name="maintenanceWindow", @@ -269,12 +281,15 @@ def _build_schema_on_200(cls): ) properties.next_maintenance_run_id = AAZStrType( serialized_name="nextMaintenanceRunId", + flags={"read_only": True}, ) properties.oci_url = AAZStrType( serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, @@ -285,6 +300,9 @@ def _build_schema_on_200(cls): properties.storage_count = AAZIntType( serialized_name="storageCount", ) + properties.storage_server_type = AAZStrType( + serialized_name="storageServerType", + ) properties.storage_server_version = AAZStrType( serialized_name="storageServerVersion", flags={"read_only": True}, @@ -306,6 +324,23 @@ def _build_schema_on_200(cls): flags={"required": True}, ) + defined_file_system_configuration = cls._schema_on_200.value.Element.properties.defined_file_system_configuration + defined_file_system_configuration.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.defined_file_system_configuration.Element + _element.is_backup_partition = AAZBoolType( + serialized_name="isBackupPartition", + ) + _element.is_resizable = AAZBoolType( + serialized_name="isResizable", + ) + _element.min_size_gb = AAZIntType( + serialized_name="minSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + estimated_patching_time = cls._schema_on_200.value.Element.properties.estimated_patching_time estimated_patching_time.estimated_db_server_patching_time = AAZIntType( serialized_name="estimatedDbServerPatchingTime", @@ -324,6 +359,15 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + exascale_config = cls._schema_on_200.value.Element.properties.exascale_config + exascale_config.available_storage_in_gbs = AAZIntType( + serialized_name="availableStorageInGbs", + ) + exascale_config.total_storage_in_gbs = AAZIntType( + serialized_name="totalStorageInGbs", + flags={"required": True}, + ) + maintenance_window = cls._schema_on_200.value.Element.properties.maintenance_window maintenance_window.custom_action_timeout_in_mins = AAZIntType( serialized_name="customActionTimeoutInMins", @@ -402,7 +446,7 @@ def _build_schema_on_200(cls): return cls._schema_on_200 - class CloudExadataInfrastructuresListBySubscription(AAZHttpOperation): + class CloudExadataInfrastructuresListByResourceGroup(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -416,7 +460,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/providers/Oracle.Database/cloudExadataInfrastructures", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures", **self.url_parameters ) @@ -431,6 +475,10 @@ def error_format(self): @property def url_parameters(self): parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -442,7 +490,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -495,9 +543,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -526,6 +572,10 @@ def _build_schema_on_200(cls): properties.compute_count = AAZIntType( serialized_name="computeCount", ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) properties.cpu_count = AAZIntType( serialized_name="cpuCount", flags={"read_only": True}, @@ -537,6 +587,9 @@ def _build_schema_on_200(cls): serialized_name="dataStorageSizeInTbs", flags={"read_only": True}, ) + properties.database_server_type = AAZStrType( + serialized_name="databaseServerType", + ) properties.db_node_storage_size_in_gbs = AAZIntType( serialized_name="dbNodeStorageSizeInGbs", flags={"read_only": True}, @@ -545,15 +598,25 @@ def _build_schema_on_200(cls): serialized_name="dbServerVersion", flags={"read_only": True}, ) + properties.defined_file_system_configuration = AAZListType( + serialized_name="definedFileSystemConfiguration", + flags={"read_only": True}, + ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.estimated_patching_time = AAZObjectType( serialized_name="estimatedPatchingTime", + flags={"read_only": True}, + ) + properties.exascale_config = AAZObjectType( + serialized_name="exascaleConfig", + flags={"read_only": True}, ) properties.last_maintenance_run_id = AAZStrType( serialized_name="lastMaintenanceRunId", + flags={"read_only": True}, ) properties.lifecycle_details = AAZStrType( serialized_name="lifecycleDetails", @@ -561,6 +624,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.maintenance_window = AAZObjectType( serialized_name="maintenanceWindow", @@ -595,12 +659,15 @@ def _build_schema_on_200(cls): ) properties.next_maintenance_run_id = AAZStrType( serialized_name="nextMaintenanceRunId", + flags={"read_only": True}, ) properties.oci_url = AAZStrType( serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, @@ -611,6 +678,9 @@ def _build_schema_on_200(cls): properties.storage_count = AAZIntType( serialized_name="storageCount", ) + properties.storage_server_type = AAZStrType( + serialized_name="storageServerType", + ) properties.storage_server_version = AAZStrType( serialized_name="storageServerVersion", flags={"read_only": True}, @@ -632,6 +702,23 @@ def _build_schema_on_200(cls): flags={"required": True}, ) + defined_file_system_configuration = cls._schema_on_200.value.Element.properties.defined_file_system_configuration + defined_file_system_configuration.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.defined_file_system_configuration.Element + _element.is_backup_partition = AAZBoolType( + serialized_name="isBackupPartition", + ) + _element.is_resizable = AAZBoolType( + serialized_name="isResizable", + ) + _element.min_size_gb = AAZIntType( + serialized_name="minSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + estimated_patching_time = cls._schema_on_200.value.Element.properties.estimated_patching_time estimated_patching_time.estimated_db_server_patching_time = AAZIntType( serialized_name="estimatedDbServerPatchingTime", @@ -650,6 +737,15 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + exascale_config = cls._schema_on_200.value.Element.properties.exascale_config + exascale_config.available_storage_in_gbs = AAZIntType( + serialized_name="availableStorageInGbs", + ) + exascale_config.total_storage_in_gbs = AAZIntType( + serialized_name="totalStorageInGbs", + flags={"required": True}, + ) + maintenance_window = cls._schema_on_200.value.Element.properties.maintenance_window maintenance_window.custom_action_timeout_in_mins = AAZIntType( serialized_name="customActionTimeoutInMins", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_show.py index daa0b2daf55..14f5096b4b0 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}", "2025-09-01"], ] } @@ -123,7 +123,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -165,9 +165,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -196,6 +194,10 @@ def _build_schema_on_200(cls): properties.compute_count = AAZIntType( serialized_name="computeCount", ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) properties.cpu_count = AAZIntType( serialized_name="cpuCount", flags={"read_only": True}, @@ -207,6 +209,9 @@ def _build_schema_on_200(cls): serialized_name="dataStorageSizeInTbs", flags={"read_only": True}, ) + properties.database_server_type = AAZStrType( + serialized_name="databaseServerType", + ) properties.db_node_storage_size_in_gbs = AAZIntType( serialized_name="dbNodeStorageSizeInGbs", flags={"read_only": True}, @@ -215,15 +220,25 @@ def _build_schema_on_200(cls): serialized_name="dbServerVersion", flags={"read_only": True}, ) + properties.defined_file_system_configuration = AAZListType( + serialized_name="definedFileSystemConfiguration", + flags={"read_only": True}, + ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.estimated_patching_time = AAZObjectType( serialized_name="estimatedPatchingTime", + flags={"read_only": True}, + ) + properties.exascale_config = AAZObjectType( + serialized_name="exascaleConfig", + flags={"read_only": True}, ) properties.last_maintenance_run_id = AAZStrType( serialized_name="lastMaintenanceRunId", + flags={"read_only": True}, ) properties.lifecycle_details = AAZStrType( serialized_name="lifecycleDetails", @@ -231,6 +246,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.maintenance_window = AAZObjectType( serialized_name="maintenanceWindow", @@ -265,12 +281,15 @@ def _build_schema_on_200(cls): ) properties.next_maintenance_run_id = AAZStrType( serialized_name="nextMaintenanceRunId", + flags={"read_only": True}, ) properties.oci_url = AAZStrType( serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, @@ -281,6 +300,9 @@ def _build_schema_on_200(cls): properties.storage_count = AAZIntType( serialized_name="storageCount", ) + properties.storage_server_type = AAZStrType( + serialized_name="storageServerType", + ) properties.storage_server_version = AAZStrType( serialized_name="storageServerVersion", flags={"read_only": True}, @@ -302,6 +324,23 @@ def _build_schema_on_200(cls): flags={"required": True}, ) + defined_file_system_configuration = cls._schema_on_200.properties.defined_file_system_configuration + defined_file_system_configuration.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.defined_file_system_configuration.Element + _element.is_backup_partition = AAZBoolType( + serialized_name="isBackupPartition", + ) + _element.is_resizable = AAZBoolType( + serialized_name="isResizable", + ) + _element.min_size_gb = AAZIntType( + serialized_name="minSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + estimated_patching_time = cls._schema_on_200.properties.estimated_patching_time estimated_patching_time.estimated_db_server_patching_time = AAZIntType( serialized_name="estimatedDbServerPatchingTime", @@ -320,6 +359,15 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + exascale_config = cls._schema_on_200.properties.exascale_config + exascale_config.available_storage_in_gbs = AAZIntType( + serialized_name="availableStorageInGbs", + ) + exascale_config.total_storage_in_gbs = AAZIntType( + serialized_name="totalStorageInGbs", + flags={"required": True}, + ) + maintenance_window = cls._schema_on_200.properties.maintenance_window maintenance_window.custom_action_timeout_in_mins = AAZIntType( serialized_name="customActionTimeoutInMins", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_update.py index 6c59e738cbc..41a6927a9bb 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_update.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_update.py @@ -22,9 +22,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}", "2025-09-01"], ] } @@ -308,7 +308,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -339,7 +339,295 @@ def _build_schema_on_200(cls): return cls._schema_on_200 cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_cloud_exadata_infrastructure_read(cls._schema_on_200) + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType( + flags={"required": True}, + ) + + properties = cls._schema_on_200.properties + properties.activated_storage_count = AAZIntType( + serialized_name="activatedStorageCount", + flags={"read_only": True}, + ) + properties.additional_storage_count = AAZIntType( + serialized_name="additionalStorageCount", + flags={"read_only": True}, + ) + properties.available_storage_size_in_gbs = AAZIntType( + serialized_name="availableStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.compute_count = AAZIntType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) + properties.cpu_count = AAZIntType( + serialized_name="cpuCount", + flags={"read_only": True}, + ) + properties.customer_contacts = AAZListType( + serialized_name="customerContacts", + ) + properties.data_storage_size_in_tbs = AAZFloatType( + serialized_name="dataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.database_server_type = AAZStrType( + serialized_name="databaseServerType", + ) + properties.db_node_storage_size_in_gbs = AAZIntType( + serialized_name="dbNodeStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.db_server_version = AAZStrType( + serialized_name="dbServerVersion", + flags={"read_only": True}, + ) + properties.defined_file_system_configuration = AAZListType( + serialized_name="definedFileSystemConfiguration", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.estimated_patching_time = AAZObjectType( + serialized_name="estimatedPatchingTime", + flags={"read_only": True}, + ) + properties.exascale_config = AAZObjectType( + serialized_name="exascaleConfig", + flags={"read_only": True}, + ) + properties.last_maintenance_run_id = AAZStrType( + serialized_name="lastMaintenanceRunId", + flags={"read_only": True}, + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.maintenance_window = AAZObjectType( + serialized_name="maintenanceWindow", + ) + properties.max_cpu_count = AAZIntType( + serialized_name="maxCpuCount", + flags={"read_only": True}, + ) + properties.max_data_storage_in_tbs = AAZFloatType( + serialized_name="maxDataStorageInTbs", + flags={"read_only": True}, + ) + properties.max_db_node_storage_size_in_gbs = AAZIntType( + serialized_name="maxDbNodeStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.max_memory_in_gbs = AAZIntType( + serialized_name="maxMemoryInGbs", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.monthly_db_server_version = AAZStrType( + serialized_name="monthlyDbServerVersion", + flags={"read_only": True}, + ) + properties.monthly_storage_server_version = AAZStrType( + serialized_name="monthlyStorageServerVersion", + flags={"read_only": True}, + ) + properties.next_maintenance_run_id = AAZStrType( + serialized_name="nextMaintenanceRunId", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.storage_count = AAZIntType( + serialized_name="storageCount", + ) + properties.storage_server_type = AAZStrType( + serialized_name="storageServerType", + ) + properties.storage_server_version = AAZStrType( + serialized_name="storageServerVersion", + flags={"read_only": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.total_storage_size_in_gbs = AAZIntType( + serialized_name="totalStorageSizeInGbs", + flags={"read_only": True}, + ) + + customer_contacts = cls._schema_on_200.properties.customer_contacts + customer_contacts.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.customer_contacts.Element + _element.email = AAZStrType( + flags={"required": True}, + ) + + defined_file_system_configuration = cls._schema_on_200.properties.defined_file_system_configuration + defined_file_system_configuration.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.defined_file_system_configuration.Element + _element.is_backup_partition = AAZBoolType( + serialized_name="isBackupPartition", + ) + _element.is_resizable = AAZBoolType( + serialized_name="isResizable", + ) + _element.min_size_gb = AAZIntType( + serialized_name="minSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + + estimated_patching_time = cls._schema_on_200.properties.estimated_patching_time + estimated_patching_time.estimated_db_server_patching_time = AAZIntType( + serialized_name="estimatedDbServerPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.estimated_network_switches_patching_time = AAZIntType( + serialized_name="estimatedNetworkSwitchesPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.estimated_storage_server_patching_time = AAZIntType( + serialized_name="estimatedStorageServerPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.total_estimated_patching_time = AAZIntType( + serialized_name="totalEstimatedPatchingTime", + flags={"read_only": True}, + ) + + exascale_config = cls._schema_on_200.properties.exascale_config + exascale_config.available_storage_in_gbs = AAZIntType( + serialized_name="availableStorageInGbs", + ) + exascale_config.total_storage_in_gbs = AAZIntType( + serialized_name="totalStorageInGbs", + flags={"required": True}, + ) + + maintenance_window = cls._schema_on_200.properties.maintenance_window + maintenance_window.custom_action_timeout_in_mins = AAZIntType( + serialized_name="customActionTimeoutInMins", + ) + maintenance_window.days_of_week = AAZListType( + serialized_name="daysOfWeek", + ) + maintenance_window.hours_of_day = AAZListType( + serialized_name="hoursOfDay", + ) + maintenance_window.is_custom_action_timeout_enabled = AAZBoolType( + serialized_name="isCustomActionTimeoutEnabled", + ) + maintenance_window.is_monthly_patching_enabled = AAZBoolType( + serialized_name="isMonthlyPatchingEnabled", + ) + maintenance_window.lead_time_in_weeks = AAZIntType( + serialized_name="leadTimeInWeeks", + ) + maintenance_window.months = AAZListType() + maintenance_window.patching_mode = AAZStrType( + serialized_name="patchingMode", + ) + maintenance_window.preference = AAZStrType() + maintenance_window.weeks_of_month = AAZListType( + serialized_name="weeksOfMonth", + ) + + days_of_week = cls._schema_on_200.properties.maintenance_window.days_of_week + days_of_week.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.maintenance_window.days_of_week.Element + _element.name = AAZStrType( + flags={"required": True}, + ) + + hours_of_day = cls._schema_on_200.properties.maintenance_window.hours_of_day + hours_of_day.Element = AAZIntType() + + months = cls._schema_on_200.properties.maintenance_window.months + months.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.maintenance_window.months.Element + _element.name = AAZStrType( + flags={"required": True}, + ) + + weeks_of_month = cls._schema_on_200.properties.maintenance_window.weeks_of_month + weeks_of_month.Element = AAZIntType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() return cls._schema_on_200 @@ -407,7 +695,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -450,7 +738,295 @@ def _build_schema_on_200_201(cls): return cls._schema_on_200_201 cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_cloud_exadata_infrastructure_read(cls._schema_on_200_201) + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.zones = AAZListType( + flags={"required": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.activated_storage_count = AAZIntType( + serialized_name="activatedStorageCount", + flags={"read_only": True}, + ) + properties.additional_storage_count = AAZIntType( + serialized_name="additionalStorageCount", + flags={"read_only": True}, + ) + properties.available_storage_size_in_gbs = AAZIntType( + serialized_name="availableStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.compute_count = AAZIntType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) + properties.cpu_count = AAZIntType( + serialized_name="cpuCount", + flags={"read_only": True}, + ) + properties.customer_contacts = AAZListType( + serialized_name="customerContacts", + ) + properties.data_storage_size_in_tbs = AAZFloatType( + serialized_name="dataStorageSizeInTbs", + flags={"read_only": True}, + ) + properties.database_server_type = AAZStrType( + serialized_name="databaseServerType", + ) + properties.db_node_storage_size_in_gbs = AAZIntType( + serialized_name="dbNodeStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.db_server_version = AAZStrType( + serialized_name="dbServerVersion", + flags={"read_only": True}, + ) + properties.defined_file_system_configuration = AAZListType( + serialized_name="definedFileSystemConfiguration", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.estimated_patching_time = AAZObjectType( + serialized_name="estimatedPatchingTime", + flags={"read_only": True}, + ) + properties.exascale_config = AAZObjectType( + serialized_name="exascaleConfig", + flags={"read_only": True}, + ) + properties.last_maintenance_run_id = AAZStrType( + serialized_name="lastMaintenanceRunId", + flags={"read_only": True}, + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.maintenance_window = AAZObjectType( + serialized_name="maintenanceWindow", + ) + properties.max_cpu_count = AAZIntType( + serialized_name="maxCpuCount", + flags={"read_only": True}, + ) + properties.max_data_storage_in_tbs = AAZFloatType( + serialized_name="maxDataStorageInTbs", + flags={"read_only": True}, + ) + properties.max_db_node_storage_size_in_gbs = AAZIntType( + serialized_name="maxDbNodeStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.max_memory_in_gbs = AAZIntType( + serialized_name="maxMemoryInGbs", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.monthly_db_server_version = AAZStrType( + serialized_name="monthlyDbServerVersion", + flags={"read_only": True}, + ) + properties.monthly_storage_server_version = AAZStrType( + serialized_name="monthlyStorageServerVersion", + flags={"read_only": True}, + ) + properties.next_maintenance_run_id = AAZStrType( + serialized_name="nextMaintenanceRunId", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.storage_count = AAZIntType( + serialized_name="storageCount", + ) + properties.storage_server_type = AAZStrType( + serialized_name="storageServerType", + ) + properties.storage_server_version = AAZStrType( + serialized_name="storageServerVersion", + flags={"read_only": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.total_storage_size_in_gbs = AAZIntType( + serialized_name="totalStorageSizeInGbs", + flags={"read_only": True}, + ) + + customer_contacts = cls._schema_on_200_201.properties.customer_contacts + customer_contacts.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.customer_contacts.Element + _element.email = AAZStrType( + flags={"required": True}, + ) + + defined_file_system_configuration = cls._schema_on_200_201.properties.defined_file_system_configuration + defined_file_system_configuration.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.defined_file_system_configuration.Element + _element.is_backup_partition = AAZBoolType( + serialized_name="isBackupPartition", + ) + _element.is_resizable = AAZBoolType( + serialized_name="isResizable", + ) + _element.min_size_gb = AAZIntType( + serialized_name="minSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + + estimated_patching_time = cls._schema_on_200_201.properties.estimated_patching_time + estimated_patching_time.estimated_db_server_patching_time = AAZIntType( + serialized_name="estimatedDbServerPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.estimated_network_switches_patching_time = AAZIntType( + serialized_name="estimatedNetworkSwitchesPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.estimated_storage_server_patching_time = AAZIntType( + serialized_name="estimatedStorageServerPatchingTime", + flags={"read_only": True}, + ) + estimated_patching_time.total_estimated_patching_time = AAZIntType( + serialized_name="totalEstimatedPatchingTime", + flags={"read_only": True}, + ) + + exascale_config = cls._schema_on_200_201.properties.exascale_config + exascale_config.available_storage_in_gbs = AAZIntType( + serialized_name="availableStorageInGbs", + ) + exascale_config.total_storage_in_gbs = AAZIntType( + serialized_name="totalStorageInGbs", + flags={"required": True}, + ) + + maintenance_window = cls._schema_on_200_201.properties.maintenance_window + maintenance_window.custom_action_timeout_in_mins = AAZIntType( + serialized_name="customActionTimeoutInMins", + ) + maintenance_window.days_of_week = AAZListType( + serialized_name="daysOfWeek", + ) + maintenance_window.hours_of_day = AAZListType( + serialized_name="hoursOfDay", + ) + maintenance_window.is_custom_action_timeout_enabled = AAZBoolType( + serialized_name="isCustomActionTimeoutEnabled", + ) + maintenance_window.is_monthly_patching_enabled = AAZBoolType( + serialized_name="isMonthlyPatchingEnabled", + ) + maintenance_window.lead_time_in_weeks = AAZIntType( + serialized_name="leadTimeInWeeks", + ) + maintenance_window.months = AAZListType() + maintenance_window.patching_mode = AAZStrType( + serialized_name="patchingMode", + ) + maintenance_window.preference = AAZStrType() + maintenance_window.weeks_of_month = AAZListType( + serialized_name="weeksOfMonth", + ) + + days_of_week = cls._schema_on_200_201.properties.maintenance_window.days_of_week + days_of_week.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.maintenance_window.days_of_week.Element + _element.name = AAZStrType( + flags={"required": True}, + ) + + hours_of_day = cls._schema_on_200_201.properties.maintenance_window.hours_of_day + hours_of_day.Element = AAZIntType() + + months = cls._schema_on_200_201.properties.maintenance_window.months + months.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.maintenance_window.months.Element + _element.name = AAZStrType( + flags={"required": True}, + ) + + weeks_of_month = cls._schema_on_200_201.properties.maintenance_window.weeks_of_month + weeks_of_month.Element = AAZIntType() + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200_201.zones + zones.Element = AAZStrType() return cls._schema_on_200_201 @@ -465,7 +1041,7 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("properties", AAZObjectType) _builder.set_prop("tags", AAZDictType, ".tags") _builder.set_prop("zones", AAZListType, ".zones", typ_kwargs={"flags": {"required": True}}) @@ -544,272 +1120,5 @@ def __call__(self, *args, **kwargs): class _UpdateHelper: """Helper class for Update""" - _schema_cloud_exadata_infrastructure_read = None - - @classmethod - def _build_schema_cloud_exadata_infrastructure_read(cls, _schema): - if cls._schema_cloud_exadata_infrastructure_read is not None: - _schema.id = cls._schema_cloud_exadata_infrastructure_read.id - _schema.location = cls._schema_cloud_exadata_infrastructure_read.location - _schema.name = cls._schema_cloud_exadata_infrastructure_read.name - _schema.properties = cls._schema_cloud_exadata_infrastructure_read.properties - _schema.system_data = cls._schema_cloud_exadata_infrastructure_read.system_data - _schema.tags = cls._schema_cloud_exadata_infrastructure_read.tags - _schema.type = cls._schema_cloud_exadata_infrastructure_read.type - _schema.zones = cls._schema_cloud_exadata_infrastructure_read.zones - return - - cls._schema_cloud_exadata_infrastructure_read = _schema_cloud_exadata_infrastructure_read = AAZObjectType() - - cloud_exadata_infrastructure_read = _schema_cloud_exadata_infrastructure_read - cloud_exadata_infrastructure_read.id = AAZStrType( - flags={"read_only": True}, - ) - cloud_exadata_infrastructure_read.location = AAZStrType( - flags={"required": True}, - ) - cloud_exadata_infrastructure_read.name = AAZStrType( - flags={"read_only": True}, - ) - cloud_exadata_infrastructure_read.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - cloud_exadata_infrastructure_read.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - cloud_exadata_infrastructure_read.tags = AAZDictType() - cloud_exadata_infrastructure_read.type = AAZStrType( - flags={"read_only": True}, - ) - cloud_exadata_infrastructure_read.zones = AAZListType( - flags={"required": True}, - ) - - properties = _schema_cloud_exadata_infrastructure_read.properties - properties.activated_storage_count = AAZIntType( - serialized_name="activatedStorageCount", - flags={"read_only": True}, - ) - properties.additional_storage_count = AAZIntType( - serialized_name="additionalStorageCount", - flags={"read_only": True}, - ) - properties.available_storage_size_in_gbs = AAZIntType( - serialized_name="availableStorageSizeInGbs", - flags={"read_only": True}, - ) - properties.compute_count = AAZIntType( - serialized_name="computeCount", - ) - properties.cpu_count = AAZIntType( - serialized_name="cpuCount", - flags={"read_only": True}, - ) - properties.customer_contacts = AAZListType( - serialized_name="customerContacts", - ) - properties.data_storage_size_in_tbs = AAZFloatType( - serialized_name="dataStorageSizeInTbs", - flags={"read_only": True}, - ) - properties.db_node_storage_size_in_gbs = AAZIntType( - serialized_name="dbNodeStorageSizeInGbs", - flags={"read_only": True}, - ) - properties.db_server_version = AAZStrType( - serialized_name="dbServerVersion", - flags={"read_only": True}, - ) - properties.display_name = AAZStrType( - serialized_name="displayName", - flags={"required": True}, - ) - properties.estimated_patching_time = AAZObjectType( - serialized_name="estimatedPatchingTime", - ) - properties.last_maintenance_run_id = AAZStrType( - serialized_name="lastMaintenanceRunId", - ) - properties.lifecycle_details = AAZStrType( - serialized_name="lifecycleDetails", - flags={"read_only": True}, - ) - properties.lifecycle_state = AAZStrType( - serialized_name="lifecycleState", - ) - properties.maintenance_window = AAZObjectType( - serialized_name="maintenanceWindow", - ) - properties.max_cpu_count = AAZIntType( - serialized_name="maxCpuCount", - flags={"read_only": True}, - ) - properties.max_data_storage_in_tbs = AAZFloatType( - serialized_name="maxDataStorageInTbs", - flags={"read_only": True}, - ) - properties.max_db_node_storage_size_in_gbs = AAZIntType( - serialized_name="maxDbNodeStorageSizeInGbs", - flags={"read_only": True}, - ) - properties.max_memory_in_gbs = AAZIntType( - serialized_name="maxMemoryInGbs", - flags={"read_only": True}, - ) - properties.memory_size_in_gbs = AAZIntType( - serialized_name="memorySizeInGbs", - flags={"read_only": True}, - ) - properties.monthly_db_server_version = AAZStrType( - serialized_name="monthlyDbServerVersion", - flags={"read_only": True}, - ) - properties.monthly_storage_server_version = AAZStrType( - serialized_name="monthlyStorageServerVersion", - flags={"read_only": True}, - ) - properties.next_maintenance_run_id = AAZStrType( - serialized_name="nextMaintenanceRunId", - ) - properties.oci_url = AAZStrType( - serialized_name="ociUrl", - flags={"read_only": True}, - ) - properties.ocid = AAZStrType() - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.shape = AAZStrType( - flags={"required": True}, - ) - properties.storage_count = AAZIntType( - serialized_name="storageCount", - ) - properties.storage_server_version = AAZStrType( - serialized_name="storageServerVersion", - flags={"read_only": True}, - ) - properties.time_created = AAZStrType( - serialized_name="timeCreated", - flags={"read_only": True}, - ) - properties.total_storage_size_in_gbs = AAZIntType( - serialized_name="totalStorageSizeInGbs", - flags={"read_only": True}, - ) - - customer_contacts = _schema_cloud_exadata_infrastructure_read.properties.customer_contacts - customer_contacts.Element = AAZObjectType() - - _element = _schema_cloud_exadata_infrastructure_read.properties.customer_contacts.Element - _element.email = AAZStrType( - flags={"required": True}, - ) - - estimated_patching_time = _schema_cloud_exadata_infrastructure_read.properties.estimated_patching_time - estimated_patching_time.estimated_db_server_patching_time = AAZIntType( - serialized_name="estimatedDbServerPatchingTime", - flags={"read_only": True}, - ) - estimated_patching_time.estimated_network_switches_patching_time = AAZIntType( - serialized_name="estimatedNetworkSwitchesPatchingTime", - flags={"read_only": True}, - ) - estimated_patching_time.estimated_storage_server_patching_time = AAZIntType( - serialized_name="estimatedStorageServerPatchingTime", - flags={"read_only": True}, - ) - estimated_patching_time.total_estimated_patching_time = AAZIntType( - serialized_name="totalEstimatedPatchingTime", - flags={"read_only": True}, - ) - - maintenance_window = _schema_cloud_exadata_infrastructure_read.properties.maintenance_window - maintenance_window.custom_action_timeout_in_mins = AAZIntType( - serialized_name="customActionTimeoutInMins", - ) - maintenance_window.days_of_week = AAZListType( - serialized_name="daysOfWeek", - ) - maintenance_window.hours_of_day = AAZListType( - serialized_name="hoursOfDay", - ) - maintenance_window.is_custom_action_timeout_enabled = AAZBoolType( - serialized_name="isCustomActionTimeoutEnabled", - ) - maintenance_window.is_monthly_patching_enabled = AAZBoolType( - serialized_name="isMonthlyPatchingEnabled", - ) - maintenance_window.lead_time_in_weeks = AAZIntType( - serialized_name="leadTimeInWeeks", - ) - maintenance_window.months = AAZListType() - maintenance_window.patching_mode = AAZStrType( - serialized_name="patchingMode", - ) - maintenance_window.preference = AAZStrType() - maintenance_window.weeks_of_month = AAZListType( - serialized_name="weeksOfMonth", - ) - - days_of_week = _schema_cloud_exadata_infrastructure_read.properties.maintenance_window.days_of_week - days_of_week.Element = AAZObjectType() - - _element = _schema_cloud_exadata_infrastructure_read.properties.maintenance_window.days_of_week.Element - _element.name = AAZStrType( - flags={"required": True}, - ) - - hours_of_day = _schema_cloud_exadata_infrastructure_read.properties.maintenance_window.hours_of_day - hours_of_day.Element = AAZIntType() - - months = _schema_cloud_exadata_infrastructure_read.properties.maintenance_window.months - months.Element = AAZObjectType() - - _element = _schema_cloud_exadata_infrastructure_read.properties.maintenance_window.months.Element - _element.name = AAZStrType( - flags={"required": True}, - ) - - weeks_of_month = _schema_cloud_exadata_infrastructure_read.properties.maintenance_window.weeks_of_month - weeks_of_month.Element = AAZIntType() - - system_data = _schema_cloud_exadata_infrastructure_read.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = _schema_cloud_exadata_infrastructure_read.tags - tags.Element = AAZStrType() - - zones = _schema_cloud_exadata_infrastructure_read.zones - zones.Element = AAZStrType() - - _schema.id = cls._schema_cloud_exadata_infrastructure_read.id - _schema.location = cls._schema_cloud_exadata_infrastructure_read.location - _schema.name = cls._schema_cloud_exadata_infrastructure_read.name - _schema.properties = cls._schema_cloud_exadata_infrastructure_read.properties - _schema.system_data = cls._schema_cloud_exadata_infrastructure_read.system_data - _schema.tags = cls._schema_cloud_exadata_infrastructure_read.tags - _schema.type = cls._schema_cloud_exadata_infrastructure_read.type - _schema.zones = cls._schema_cloud_exadata_infrastructure_read.zones - __all__ = ["Update"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_wait.py index 1359200470c..e5974885076 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}", "2025-09-01"], ] } @@ -119,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -161,9 +161,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -192,6 +190,10 @@ def _build_schema_on_200(cls): properties.compute_count = AAZIntType( serialized_name="computeCount", ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) properties.cpu_count = AAZIntType( serialized_name="cpuCount", flags={"read_only": True}, @@ -203,6 +205,9 @@ def _build_schema_on_200(cls): serialized_name="dataStorageSizeInTbs", flags={"read_only": True}, ) + properties.database_server_type = AAZStrType( + serialized_name="databaseServerType", + ) properties.db_node_storage_size_in_gbs = AAZIntType( serialized_name="dbNodeStorageSizeInGbs", flags={"read_only": True}, @@ -211,15 +216,25 @@ def _build_schema_on_200(cls): serialized_name="dbServerVersion", flags={"read_only": True}, ) + properties.defined_file_system_configuration = AAZListType( + serialized_name="definedFileSystemConfiguration", + flags={"read_only": True}, + ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.estimated_patching_time = AAZObjectType( serialized_name="estimatedPatchingTime", + flags={"read_only": True}, + ) + properties.exascale_config = AAZObjectType( + serialized_name="exascaleConfig", + flags={"read_only": True}, ) properties.last_maintenance_run_id = AAZStrType( serialized_name="lastMaintenanceRunId", + flags={"read_only": True}, ) properties.lifecycle_details = AAZStrType( serialized_name="lifecycleDetails", @@ -227,6 +242,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.maintenance_window = AAZObjectType( serialized_name="maintenanceWindow", @@ -261,12 +277,15 @@ def _build_schema_on_200(cls): ) properties.next_maintenance_run_id = AAZStrType( serialized_name="nextMaintenanceRunId", + flags={"read_only": True}, ) properties.oci_url = AAZStrType( serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, @@ -277,6 +296,9 @@ def _build_schema_on_200(cls): properties.storage_count = AAZIntType( serialized_name="storageCount", ) + properties.storage_server_type = AAZStrType( + serialized_name="storageServerType", + ) properties.storage_server_version = AAZStrType( serialized_name="storageServerVersion", flags={"read_only": True}, @@ -298,6 +320,23 @@ def _build_schema_on_200(cls): flags={"required": True}, ) + defined_file_system_configuration = cls._schema_on_200.properties.defined_file_system_configuration + defined_file_system_configuration.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.defined_file_system_configuration.Element + _element.is_backup_partition = AAZBoolType( + serialized_name="isBackupPartition", + ) + _element.is_resizable = AAZBoolType( + serialized_name="isResizable", + ) + _element.min_size_gb = AAZIntType( + serialized_name="minSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + estimated_patching_time = cls._schema_on_200.properties.estimated_patching_time estimated_patching_time.estimated_db_server_patching_time = AAZIntType( serialized_name="estimatedDbServerPatchingTime", @@ -316,6 +355,15 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) + exascale_config = cls._schema_on_200.properties.exascale_config + exascale_config.available_storage_in_gbs = AAZIntType( + serialized_name="availableStorageInGbs", + ) + exascale_config.total_storage_in_gbs = AAZIntType( + serialized_name="totalStorageInGbs", + flags={"required": True}, + ) + maintenance_window = cls._schema_on_200.properties.maintenance_window maintenance_window.custom_action_timeout_in_mins = AAZIntType( serialized_name="customActionTimeoutInMins", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/__init__.py index d63ae5a6fc9..2df85698253 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/__init__.py @@ -10,3 +10,4 @@ from .__cmd_group import * from ._list import * +from ._show import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/_list.py index b71c8bbb694..41747ea9d78 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}/dbservers", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}/dbservers", "2025-09-01"], ] } @@ -60,7 +60,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - self.DbServersListByCloudExadataInfrastructure(ctx=self.ctx)() + self.DbServersListByParent(ctx=self.ctx)() self.post_operations() @register_callback @@ -76,7 +76,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class DbServersListByCloudExadataInfrastructure(AAZHttpOperation): + class DbServersListByParent(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -124,7 +124,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -174,9 +174,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -196,6 +194,11 @@ def _build_schema_on_200(cls): ) properties.compartment_id = AAZStrType( serialized_name="compartmentId", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -211,6 +214,7 @@ def _build_schema_on_200(cls): ) properties.db_server_patching_details = AAZObjectType( serialized_name="dbServerPatchingDetails", + flags={"read_only": True}, ) properties.display_name = AAZStrType( serialized_name="displayName", @@ -218,6 +222,7 @@ def _build_schema_on_200(cls): ) properties.exadata_infrastructure_id = AAZStrType( serialized_name="exadataInfrastructureId", + flags={"read_only": True}, ) properties.lifecycle_details = AAZStrType( serialized_name="lifecycleDetails", @@ -225,6 +230,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.max_cpu_count = AAZIntType( serialized_name="maxCpuCount", @@ -242,7 +248,9 @@ def _build_schema_on_200(cls): serialized_name="memorySizeInGbs", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, @@ -275,6 +283,7 @@ def _build_schema_on_200(cls): ) db_server_patching_details.patching_status = AAZStrType( serialized_name="patchingStatus", + flags={"read_only": True}, ) db_server_patching_details.time_patching_ended = AAZStrType( serialized_name="timePatchingEnded", diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/_show.py similarity index 51% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_show.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/_show.py index 335a385e1ce..86e06efc36d 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_exadata_infrastructure/database_server/_show.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network attached-data-network show", + "oracle-database cloud-exadata-infrastructure database-server show", ) class Show(AAZCommand): - """Get information about the specified attached data network. + """Get a DbServer - :example: Show attached-data-network - az mobile-network attached-data-network show -n data-network-name --pccp-name pccp-name --pcdp-name pcdp-name -g rg + :example: Get Exa Infra Database Server + az oracle-database cloud-exadata-infrastructure database-server show --cloudexadatainfrastructurename --resource-group --dbserverocid """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}/attacheddatanetworks/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudexadatainfrastructures/{}/dbservers/{}", "2025-09-01"], ] } @@ -44,34 +44,24 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.adn_name = AAZStrArg( - options=["-n", "--name", "--adn-name"], - help="The name of the attached data network.", - required=True, - id_part="child_name_2", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*(\.[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*)*$", - max_length=64, - ), - ) - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", + _args_schema.cloudexadatainfrastructurename = AAZStrArg( + options=["--cloudexadatainfrastructurename"], + help="CloudExadataInfrastructure name", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) - _args_schema.pcdp_name = AAZStrArg( - options=["--pcdp-name"], - help="The name of the packet core data plane.", + _args_schema.dbserverocid = AAZStrArg( + options=["-n", "--name", "--dbserverocid"], + help="DbServer OCID.", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", + max_length=255, + min_length=1, ), ) _args_schema.resource_group = AAZResourceGroupNameArg( @@ -81,7 +71,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - self.AttachedDataNetworksGet(ctx=self.ctx)() + self.DbServersGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -96,7 +86,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class AttachedDataNetworksGet(AAZHttpOperation): + class DbServersGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -110,7 +100,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}/attachedDataNetworks/{attachedDataNetworkName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}/dbServers/{dbserverocid}", **self.url_parameters ) @@ -126,15 +116,11 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "attachedDataNetworkName", self.ctx.args.adn_name, - required=True, - ), - **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, + "cloudexadatainfrastructurename", self.ctx.args.cloudexadatainfrastructurename, required=True, ), **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, + "dbserverocid", self.ctx.args.dbserverocid, required=True, ), **self.serialize_url_param( @@ -152,7 +138,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -188,99 +174,131 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - _schema_on_200.tags = AAZDictType() _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.properties - properties.dns_addresses = AAZListType( - serialized_name="dnsAddresses", - flags={"required": True}, + properties.autonomous_virtual_machine_ids = AAZListType( + serialized_name="autonomousVirtualMachineIds", + flags={"read_only": True}, ) - properties.napt_configuration = AAZObjectType( - serialized_name="naptConfiguration", + properties.autonomous_vm_cluster_ids = AAZListType( + serialized_name="autonomousVmClusterIds", + flags={"read_only": True}, ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", + properties.compartment_id = AAZStrType( + serialized_name="compartmentId", flags={"read_only": True}, ) - properties.user_equipment_address_pool_prefix = AAZListType( - serialized_name="userEquipmentAddressPoolPrefix", + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, ) - properties.user_equipment_static_address_pool_prefix = AAZListType( - serialized_name="userEquipmentStaticAddressPoolPrefix", + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", + flags={"read_only": True}, ) - properties.user_plane_data_interface = AAZObjectType( - serialized_name="userPlaneDataInterface", - flags={"required": True}, + properties.db_node_ids = AAZListType( + serialized_name="dbNodeIds", + flags={"read_only": True}, ) - - dns_addresses = cls._schema_on_200.properties.dns_addresses - dns_addresses.Element = AAZStrType() - - napt_configuration = cls._schema_on_200.properties.napt_configuration - napt_configuration.enabled = AAZStrType() - napt_configuration.pinhole_limits = AAZIntType( - serialized_name="pinholeLimits", + properties.db_node_storage_size_in_gbs = AAZIntType( + serialized_name="dbNodeStorageSizeInGbs", + flags={"read_only": True}, ) - napt_configuration.pinhole_timeouts = AAZObjectType( - serialized_name="pinholeTimeouts", + properties.db_server_patching_details = AAZObjectType( + serialized_name="dbServerPatchingDetails", + flags={"read_only": True}, ) - napt_configuration.port_range = AAZObjectType( - serialized_name="portRange", + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"read_only": True}, ) - napt_configuration.port_reuse_hold_time = AAZObjectType( - serialized_name="portReuseHoldTime", + properties.exadata_infrastructure_id = AAZStrType( + serialized_name="exadataInfrastructureId", + flags={"read_only": True}, ) - - pinhole_timeouts = cls._schema_on_200.properties.napt_configuration.pinhole_timeouts - pinhole_timeouts.icmp = AAZIntType() - pinhole_timeouts.tcp = AAZIntType() - pinhole_timeouts.udp = AAZIntType() - - port_range = cls._schema_on_200.properties.napt_configuration.port_range - port_range.max_port = AAZIntType( - serialized_name="maxPort", + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, ) - port_range.min_port = AAZIntType( - serialized_name="minPort", + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.max_cpu_count = AAZIntType( + serialized_name="maxCpuCount", + flags={"read_only": True}, + ) + properties.max_db_node_storage_in_gbs = AAZIntType( + serialized_name="maxDbNodeStorageInGbs", + flags={"read_only": True}, + ) + properties.max_memory_in_gbs = AAZIntType( + serialized_name="maxMemoryInGbs", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"read_only": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.vm_cluster_ids = AAZListType( + serialized_name="vmClusterIds", + flags={"read_only": True}, ) - port_reuse_hold_time = cls._schema_on_200.properties.napt_configuration.port_reuse_hold_time - port_reuse_hold_time.tcp = AAZIntType() - port_reuse_hold_time.udp = AAZIntType() + autonomous_virtual_machine_ids = cls._schema_on_200.properties.autonomous_virtual_machine_ids + autonomous_virtual_machine_ids.Element = AAZStrType() - user_equipment_address_pool_prefix = cls._schema_on_200.properties.user_equipment_address_pool_prefix - user_equipment_address_pool_prefix.Element = AAZStrType() + autonomous_vm_cluster_ids = cls._schema_on_200.properties.autonomous_vm_cluster_ids + autonomous_vm_cluster_ids.Element = AAZStrType() - user_equipment_static_address_pool_prefix = cls._schema_on_200.properties.user_equipment_static_address_pool_prefix - user_equipment_static_address_pool_prefix.Element = AAZStrType() + db_node_ids = cls._schema_on_200.properties.db_node_ids + db_node_ids.Element = AAZStrType() - user_plane_data_interface = cls._schema_on_200.properties.user_plane_data_interface - user_plane_data_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", + db_server_patching_details = cls._schema_on_200.properties.db_server_patching_details + db_server_patching_details.estimated_patch_duration = AAZIntType( + serialized_name="estimatedPatchDuration", + flags={"read_only": True}, ) - user_plane_data_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", + db_server_patching_details.patching_status = AAZStrType( + serialized_name="patchingStatus", + flags={"read_only": True}, + ) + db_server_patching_details.time_patching_ended = AAZStrType( + serialized_name="timePatchingEnded", + flags={"read_only": True}, ) - user_plane_data_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", + db_server_patching_details.time_patching_started = AAZStrType( + serialized_name="timePatchingStarted", + flags={"read_only": True}, ) - user_plane_data_interface.name = AAZStrType() + + vm_cluster_ids = cls._schema_on_200.properties.vm_cluster_ids + vm_cluster_ids.Element = AAZStrType() system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( @@ -302,9 +320,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/__init__.py index d033f27c440..d35e68fd467 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/__init__.py @@ -13,6 +13,7 @@ from ._create import * from ._delete import * from ._list import * +from ._list_private_ip_address import * from ._remove_vm import * from ._show import * from ._update import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_add_vm.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_add_vm.py index 01d14983fc2..8474987f45f 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_add_vm.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_add_vm.py @@ -22,9 +22,9 @@ class AddVm(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/addvms", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/addvms", "2025-09-01"], ] } @@ -158,7 +158,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -218,9 +218,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -243,6 +241,11 @@ def _build_schema_on_200(cls): ) properties.compartment_id = AAZStrType( serialized_name="compartmentId", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -265,12 +268,19 @@ def _build_schema_on_200(cls): ) properties.disk_redundancy = AAZStrType( serialized_name="diskRedundancy", + flags={"read_only": True}, ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.domain = AAZStrType() + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + ) + properties.file_system_configuration_details = AAZListType( + serialized_name="fileSystemConfigurationDetails", + ) properties.gi_version = AAZStrType( serialized_name="giVersion", flags={"required": True}, @@ -280,6 +290,7 @@ def _build_schema_on_200(cls): ) properties.iorm_config_cache = AAZObjectType( serialized_name="iormConfigCache", + flags={"read_only": True}, ) properties.is_local_backup_enabled = AAZBoolType( serialized_name="isLocalBackupEnabled", @@ -289,6 +300,7 @@ def _build_schema_on_200(cls): ) properties.last_update_history_entry_id = AAZStrType( serialized_name="lastUpdateHistoryEntryId", + flags={"read_only": True}, ) properties.license_model = AAZStrType( serialized_name="licenseModel", @@ -299,6 +311,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.listener_port = AAZIntType( serialized_name="listenerPort", @@ -322,7 +335,9 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.ocpu_count = AAZFloatType( serialized_name="ocpuCount", ) @@ -336,6 +351,7 @@ def _build_schema_on_200(cls): ) properties.scan_dns_record_id = AAZStrType( serialized_name="scanDnsRecordId", + flags={"read_only": True}, ) properties.scan_ip_ids = AAZListType( serialized_name="scanIpIds", @@ -354,6 +370,10 @@ def _build_schema_on_200(cls): serialized_name="sshPublicKeys", flags={"required": True}, ) + properties.storage_management_type = AAZStrType( + serialized_name="storageManagementType", + flags={"read_only": True}, + ) properties.storage_size_in_gbs = AAZIntType( serialized_name="storageSizeInGbs", ) @@ -363,6 +383,7 @@ def _build_schema_on_200(cls): ) properties.subnet_ocid = AAZStrType( serialized_name="subnetOcid", + flags={"read_only": True}, ) properties.system_version = AAZStrType( serialized_name="systemVersion", @@ -400,6 +421,17 @@ def _build_schema_on_200(cls): db_servers = cls._schema_on_200.properties.db_servers db_servers.Element = AAZStrType() + file_system_configuration_details = cls._schema_on_200.properties.file_system_configuration_details + file_system_configuration_details.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.file_system_configuration_details.Element + _element.file_system_size_gb = AAZIntType( + serialized_name="fileSystemSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + iorm_config_cache = cls._schema_on_200.properties.iorm_config_cache iorm_config_cache.db_plans = AAZListType( serialized_name="dbPlans", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_create.py index 5461be3ac5c..0e11fc62dd7 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_create.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_create.py @@ -22,9 +22,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}", "2025-09-01"], ] } @@ -69,7 +69,7 @@ def _build_arguments_schema(cls, *args, **kwargs): min_length=1, ), ) - _args_schema.cloud_exadata_infrastructure_id = AAZResourceIdArg( + _args_schema.cloud_exadata_infrastructure_id = AAZStrArg( options=["--exa-infra-id", "--cloud-exadata-infrastructure-id"], arg_group="Properties", help="Cloud Exadata Infrastructure ID", @@ -127,6 +127,11 @@ def _build_arguments_schema(cls, *args, **kwargs): arg_group="Properties", help="The domain name for the cloud VM cluster.", ) + _args_schema.exascale_db_storage_vault_id = AAZStrArg( + options=["--exascale-db-storage-vault-id"], + arg_group="Properties", + help="Exadata Database Storage Vault ID", + ) _args_schema.gi_version = AAZStrArg( options=["--gi-version"], arg_group="Properties", @@ -189,7 +194,7 @@ def _build_arguments_schema(cls, *args, **kwargs): arg_group="Properties", help="The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.", ) - _args_schema.subnet_id = AAZResourceIdArg( + _args_schema.subnet_id = AAZStrArg( options=["--subnet-id"], arg_group="Properties", help="Client subnet", @@ -212,7 +217,7 @@ def _build_arguments_schema(cls, *args, **kwargs): min_length=1, ), ) - _args_schema.vnet_id = AAZResourceIdArg( + _args_schema.vnet_id = AAZStrArg( options=["--vnet-id"], arg_group="Properties", help="VNET for network connectivity", @@ -395,7 +400,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -421,7 +426,7 @@ def content(self): typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("properties", AAZObjectType) _builder.set_prop("tags", AAZDictType, ".tags") properties = _builder.get(".properties") @@ -437,6 +442,7 @@ def content(self): properties.set_prop("dbServers", AAZListType, ".db_servers") properties.set_prop("displayName", AAZStrType, ".display_name", typ_kwargs={"flags": {"required": True}}) properties.set_prop("domain", AAZStrType, ".domain") + properties.set_prop("exascaleDbStorageVaultId", AAZStrType, ".exascale_db_storage_vault_id") properties.set_prop("giVersion", AAZStrType, ".gi_version", typ_kwargs={"flags": {"required": True}}) properties.set_prop("hostname", AAZStrType, ".hostname", typ_kwargs={"flags": {"required": True}}) properties.set_prop("isLocalBackupEnabled", AAZBoolType, ".is_local_backup_enabled") @@ -515,9 +521,7 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200_201.properties = AAZObjectType() _schema_on_200_201.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -540,6 +544,11 @@ def _build_schema_on_200_201(cls): ) properties.compartment_id = AAZStrType( serialized_name="compartmentId", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -562,12 +571,19 @@ def _build_schema_on_200_201(cls): ) properties.disk_redundancy = AAZStrType( serialized_name="diskRedundancy", + flags={"read_only": True}, ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.domain = AAZStrType() + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + ) + properties.file_system_configuration_details = AAZListType( + serialized_name="fileSystemConfigurationDetails", + ) properties.gi_version = AAZStrType( serialized_name="giVersion", flags={"required": True}, @@ -577,6 +593,7 @@ def _build_schema_on_200_201(cls): ) properties.iorm_config_cache = AAZObjectType( serialized_name="iormConfigCache", + flags={"read_only": True}, ) properties.is_local_backup_enabled = AAZBoolType( serialized_name="isLocalBackupEnabled", @@ -586,6 +603,7 @@ def _build_schema_on_200_201(cls): ) properties.last_update_history_entry_id = AAZStrType( serialized_name="lastUpdateHistoryEntryId", + flags={"read_only": True}, ) properties.license_model = AAZStrType( serialized_name="licenseModel", @@ -596,6 +614,7 @@ def _build_schema_on_200_201(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.listener_port = AAZIntType( serialized_name="listenerPort", @@ -619,7 +638,9 @@ def _build_schema_on_200_201(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.ocpu_count = AAZFloatType( serialized_name="ocpuCount", ) @@ -633,6 +654,7 @@ def _build_schema_on_200_201(cls): ) properties.scan_dns_record_id = AAZStrType( serialized_name="scanDnsRecordId", + flags={"read_only": True}, ) properties.scan_ip_ids = AAZListType( serialized_name="scanIpIds", @@ -651,6 +673,10 @@ def _build_schema_on_200_201(cls): serialized_name="sshPublicKeys", flags={"required": True}, ) + properties.storage_management_type = AAZStrType( + serialized_name="storageManagementType", + flags={"read_only": True}, + ) properties.storage_size_in_gbs = AAZIntType( serialized_name="storageSizeInGbs", ) @@ -660,6 +686,7 @@ def _build_schema_on_200_201(cls): ) properties.subnet_ocid = AAZStrType( serialized_name="subnetOcid", + flags={"read_only": True}, ) properties.system_version = AAZStrType( serialized_name="systemVersion", @@ -697,6 +724,17 @@ def _build_schema_on_200_201(cls): db_servers = cls._schema_on_200_201.properties.db_servers db_servers.Element = AAZStrType() + file_system_configuration_details = cls._schema_on_200_201.properties.file_system_configuration_details + file_system_configuration_details.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.file_system_configuration_details.Element + _element.file_system_size_gb = AAZIntType( + serialized_name="fileSystemSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + iorm_config_cache = cls._schema_on_200_201.properties.iorm_config_cache iorm_config_cache.db_plans = AAZListType( serialized_name="dbPlans", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_delete.py index 5a5cf1edf65..2035cbca1d7 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_delete.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_delete.py @@ -23,9 +23,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}", "2025-09-01"], ] } @@ -146,7 +146,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_list.py index 5c564026132..602f4b95ba1 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_list.py @@ -22,10 +22,10 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/cloudvmclusters", "2023-09-01"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/cloudvmclusters", "2025-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters", "2025-09-01"], ] } @@ -51,12 +51,12 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - condition_0 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) - condition_1 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_0 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_1 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) if condition_0: - self.CloudVmClustersListByResourceGroup(ctx=self.ctx)() - if condition_1: self.CloudVmClustersListBySubscription(ctx=self.ctx)() + if condition_1: + self.CloudVmClustersListByResourceGroup(ctx=self.ctx)() self.post_operations() @register_callback @@ -72,7 +72,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class CloudVmClustersListByResourceGroup(AAZHttpOperation): + class CloudVmClustersListBySubscription(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -86,7 +86,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/cloudVmClusters", **self.url_parameters ) @@ -101,10 +101,6 @@ def error_format(self): @property def url_parameters(self): parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -116,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -169,9 +165,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -194,6 +188,11 @@ def _build_schema_on_200(cls): ) properties.compartment_id = AAZStrType( serialized_name="compartmentId", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -216,12 +215,19 @@ def _build_schema_on_200(cls): ) properties.disk_redundancy = AAZStrType( serialized_name="diskRedundancy", + flags={"read_only": True}, ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.domain = AAZStrType() + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + ) + properties.file_system_configuration_details = AAZListType( + serialized_name="fileSystemConfigurationDetails", + ) properties.gi_version = AAZStrType( serialized_name="giVersion", flags={"required": True}, @@ -231,6 +237,7 @@ def _build_schema_on_200(cls): ) properties.iorm_config_cache = AAZObjectType( serialized_name="iormConfigCache", + flags={"read_only": True}, ) properties.is_local_backup_enabled = AAZBoolType( serialized_name="isLocalBackupEnabled", @@ -240,6 +247,7 @@ def _build_schema_on_200(cls): ) properties.last_update_history_entry_id = AAZStrType( serialized_name="lastUpdateHistoryEntryId", + flags={"read_only": True}, ) properties.license_model = AAZStrType( serialized_name="licenseModel", @@ -250,6 +258,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.listener_port = AAZIntType( serialized_name="listenerPort", @@ -273,7 +282,9 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.ocpu_count = AAZFloatType( serialized_name="ocpuCount", ) @@ -287,6 +298,7 @@ def _build_schema_on_200(cls): ) properties.scan_dns_record_id = AAZStrType( serialized_name="scanDnsRecordId", + flags={"read_only": True}, ) properties.scan_ip_ids = AAZListType( serialized_name="scanIpIds", @@ -305,6 +317,10 @@ def _build_schema_on_200(cls): serialized_name="sshPublicKeys", flags={"required": True}, ) + properties.storage_management_type = AAZStrType( + serialized_name="storageManagementType", + flags={"read_only": True}, + ) properties.storage_size_in_gbs = AAZIntType( serialized_name="storageSizeInGbs", ) @@ -314,6 +330,7 @@ def _build_schema_on_200(cls): ) properties.subnet_ocid = AAZStrType( serialized_name="subnetOcid", + flags={"read_only": True}, ) properties.system_version = AAZStrType( serialized_name="systemVersion", @@ -351,6 +368,17 @@ def _build_schema_on_200(cls): db_servers = cls._schema_on_200.value.Element.properties.db_servers db_servers.Element = AAZStrType() + file_system_configuration_details = cls._schema_on_200.value.Element.properties.file_system_configuration_details + file_system_configuration_details.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.file_system_configuration_details.Element + _element.file_system_size_gb = AAZIntType( + serialized_name="fileSystemSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + iorm_config_cache = cls._schema_on_200.value.Element.properties.iorm_config_cache iorm_config_cache.db_plans = AAZListType( serialized_name="dbPlans", @@ -428,7 +456,7 @@ def _build_schema_on_200(cls): return cls._schema_on_200 - class CloudVmClustersListBySubscription(AAZHttpOperation): + class CloudVmClustersListByResourceGroup(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -442,7 +470,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/providers/Oracle.Database/cloudVmClusters", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters", **self.url_parameters ) @@ -457,6 +485,10 @@ def error_format(self): @property def url_parameters(self): parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -468,7 +500,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -521,9 +553,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -546,6 +576,11 @@ def _build_schema_on_200(cls): ) properties.compartment_id = AAZStrType( serialized_name="compartmentId", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -568,12 +603,19 @@ def _build_schema_on_200(cls): ) properties.disk_redundancy = AAZStrType( serialized_name="diskRedundancy", + flags={"read_only": True}, ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.domain = AAZStrType() + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + ) + properties.file_system_configuration_details = AAZListType( + serialized_name="fileSystemConfigurationDetails", + ) properties.gi_version = AAZStrType( serialized_name="giVersion", flags={"required": True}, @@ -583,6 +625,7 @@ def _build_schema_on_200(cls): ) properties.iorm_config_cache = AAZObjectType( serialized_name="iormConfigCache", + flags={"read_only": True}, ) properties.is_local_backup_enabled = AAZBoolType( serialized_name="isLocalBackupEnabled", @@ -592,6 +635,7 @@ def _build_schema_on_200(cls): ) properties.last_update_history_entry_id = AAZStrType( serialized_name="lastUpdateHistoryEntryId", + flags={"read_only": True}, ) properties.license_model = AAZStrType( serialized_name="licenseModel", @@ -602,6 +646,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.listener_port = AAZIntType( serialized_name="listenerPort", @@ -625,7 +670,9 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.ocpu_count = AAZFloatType( serialized_name="ocpuCount", ) @@ -639,6 +686,7 @@ def _build_schema_on_200(cls): ) properties.scan_dns_record_id = AAZStrType( serialized_name="scanDnsRecordId", + flags={"read_only": True}, ) properties.scan_ip_ids = AAZListType( serialized_name="scanIpIds", @@ -657,6 +705,10 @@ def _build_schema_on_200(cls): serialized_name="sshPublicKeys", flags={"required": True}, ) + properties.storage_management_type = AAZStrType( + serialized_name="storageManagementType", + flags={"read_only": True}, + ) properties.storage_size_in_gbs = AAZIntType( serialized_name="storageSizeInGbs", ) @@ -666,6 +718,7 @@ def _build_schema_on_200(cls): ) properties.subnet_ocid = AAZStrType( serialized_name="subnetOcid", + flags={"read_only": True}, ) properties.system_version = AAZStrType( serialized_name="systemVersion", @@ -703,6 +756,17 @@ def _build_schema_on_200(cls): db_servers = cls._schema_on_200.value.Element.properties.db_servers db_servers.Element = AAZStrType() + file_system_configuration_details = cls._schema_on_200.value.Element.properties.file_system_configuration_details + file_system_configuration_details.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.file_system_configuration_details.Element + _element.file_system_size_gb = AAZIntType( + serialized_name="fileSystemSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + iorm_config_cache = cls._schema_on_200.value.Element.properties.iorm_config_cache iorm_config_cache.db_plans = AAZListType( serialized_name="dbPlans", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_list_private_ip_address.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_list_private_ip_address.py new file mode 100644 index 00000000000..30218e935bd --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_list_private_ip_address.py @@ -0,0 +1,228 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database cloud-vm-cluster list-private-ip-address", +) +class ListPrivateIpAddress(AAZCommand): + """List Private IP Addresses by the provided filter + + :example: List Private IP Addresses + az oracle-database cloud-vm-cluster list-private-ip-address --cloudvmclustername --resource-group --subnet-id --vnic-id + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/listprivateipaddresses", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Body" + + _args_schema = cls._args_schema + _args_schema.subnet_id = AAZStrArg( + options=["--subnet-id"], + arg_group="Body", + help="Subnet OCID", + required=True, + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.vnic_id = AAZStrArg( + options=["--vnic-id"], + arg_group="Body", + help="VCN OCID", + required=True, + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.CloudVmClustersListPrivateIpAddresses(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class CloudVmClustersListPrivateIpAddresses(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/listPrivateIpAddresses", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "cloudvmclustername", self.ctx.args.cloudvmclustername, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("subnetId", AAZStrType, ".subnet_id", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("vnicId", AAZStrType, ".vnic_id", typ_kwargs={"flags": {"required": True}}) + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZListType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.Element = AAZObjectType() + + _element = cls._schema_on_200.Element + _element.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + _element.hostname_label = AAZStrType( + serialized_name="hostnameLabel", + flags={"required": True}, + ) + _element.ip_address = AAZStrType( + serialized_name="ipAddress", + flags={"required": True}, + ) + _element.ocid = AAZStrType( + flags={"required": True}, + ) + _element.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + + return cls._schema_on_200 + + +class _ListPrivateIpAddressHelper: + """Helper class for ListPrivateIpAddress""" + + +__all__ = ["ListPrivateIpAddress"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_remove_vm.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_remove_vm.py index 4bc2426f78a..937826b7095 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_remove_vm.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_remove_vm.py @@ -22,9 +22,9 @@ class RemoveVm(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/removevms", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/removevms", "2025-09-01"], ] } @@ -158,7 +158,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -218,9 +218,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -243,6 +241,11 @@ def _build_schema_on_200(cls): ) properties.compartment_id = AAZStrType( serialized_name="compartmentId", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -265,12 +268,19 @@ def _build_schema_on_200(cls): ) properties.disk_redundancy = AAZStrType( serialized_name="diskRedundancy", + flags={"read_only": True}, ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.domain = AAZStrType() + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + ) + properties.file_system_configuration_details = AAZListType( + serialized_name="fileSystemConfigurationDetails", + ) properties.gi_version = AAZStrType( serialized_name="giVersion", flags={"required": True}, @@ -280,6 +290,7 @@ def _build_schema_on_200(cls): ) properties.iorm_config_cache = AAZObjectType( serialized_name="iormConfigCache", + flags={"read_only": True}, ) properties.is_local_backup_enabled = AAZBoolType( serialized_name="isLocalBackupEnabled", @@ -289,6 +300,7 @@ def _build_schema_on_200(cls): ) properties.last_update_history_entry_id = AAZStrType( serialized_name="lastUpdateHistoryEntryId", + flags={"read_only": True}, ) properties.license_model = AAZStrType( serialized_name="licenseModel", @@ -299,6 +311,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.listener_port = AAZIntType( serialized_name="listenerPort", @@ -322,7 +335,9 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.ocpu_count = AAZFloatType( serialized_name="ocpuCount", ) @@ -336,6 +351,7 @@ def _build_schema_on_200(cls): ) properties.scan_dns_record_id = AAZStrType( serialized_name="scanDnsRecordId", + flags={"read_only": True}, ) properties.scan_ip_ids = AAZListType( serialized_name="scanIpIds", @@ -354,6 +370,10 @@ def _build_schema_on_200(cls): serialized_name="sshPublicKeys", flags={"required": True}, ) + properties.storage_management_type = AAZStrType( + serialized_name="storageManagementType", + flags={"read_only": True}, + ) properties.storage_size_in_gbs = AAZIntType( serialized_name="storageSizeInGbs", ) @@ -363,6 +383,7 @@ def _build_schema_on_200(cls): ) properties.subnet_ocid = AAZStrType( serialized_name="subnetOcid", + flags={"read_only": True}, ) properties.system_version = AAZStrType( serialized_name="systemVersion", @@ -400,6 +421,17 @@ def _build_schema_on_200(cls): db_servers = cls._schema_on_200.properties.db_servers db_servers.Element = AAZStrType() + file_system_configuration_details = cls._schema_on_200.properties.file_system_configuration_details + file_system_configuration_details.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.file_system_configuration_details.Element + _element.file_system_size_gb = AAZIntType( + serialized_name="fileSystemSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + iorm_config_cache = cls._schema_on_200.properties.iorm_config_cache iorm_config_cache.db_plans = AAZListType( serialized_name="dbPlans", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_show.py index a9da245ac39..9df5fb4a17c 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}", "2025-09-01"], ] } @@ -123,7 +123,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -165,9 +165,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -190,6 +188,11 @@ def _build_schema_on_200(cls): ) properties.compartment_id = AAZStrType( serialized_name="compartmentId", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -212,12 +215,19 @@ def _build_schema_on_200(cls): ) properties.disk_redundancy = AAZStrType( serialized_name="diskRedundancy", + flags={"read_only": True}, ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.domain = AAZStrType() + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + ) + properties.file_system_configuration_details = AAZListType( + serialized_name="fileSystemConfigurationDetails", + ) properties.gi_version = AAZStrType( serialized_name="giVersion", flags={"required": True}, @@ -227,6 +237,7 @@ def _build_schema_on_200(cls): ) properties.iorm_config_cache = AAZObjectType( serialized_name="iormConfigCache", + flags={"read_only": True}, ) properties.is_local_backup_enabled = AAZBoolType( serialized_name="isLocalBackupEnabled", @@ -236,6 +247,7 @@ def _build_schema_on_200(cls): ) properties.last_update_history_entry_id = AAZStrType( serialized_name="lastUpdateHistoryEntryId", + flags={"read_only": True}, ) properties.license_model = AAZStrType( serialized_name="licenseModel", @@ -246,6 +258,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.listener_port = AAZIntType( serialized_name="listenerPort", @@ -269,7 +282,9 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.ocpu_count = AAZFloatType( serialized_name="ocpuCount", ) @@ -283,6 +298,7 @@ def _build_schema_on_200(cls): ) properties.scan_dns_record_id = AAZStrType( serialized_name="scanDnsRecordId", + flags={"read_only": True}, ) properties.scan_ip_ids = AAZListType( serialized_name="scanIpIds", @@ -301,6 +317,10 @@ def _build_schema_on_200(cls): serialized_name="sshPublicKeys", flags={"required": True}, ) + properties.storage_management_type = AAZStrType( + serialized_name="storageManagementType", + flags={"read_only": True}, + ) properties.storage_size_in_gbs = AAZIntType( serialized_name="storageSizeInGbs", ) @@ -310,6 +330,7 @@ def _build_schema_on_200(cls): ) properties.subnet_ocid = AAZStrType( serialized_name="subnetOcid", + flags={"read_only": True}, ) properties.system_version = AAZStrType( serialized_name="systemVersion", @@ -347,6 +368,17 @@ def _build_schema_on_200(cls): db_servers = cls._schema_on_200.properties.db_servers db_servers.Element = AAZStrType() + file_system_configuration_details = cls._schema_on_200.properties.file_system_configuration_details + file_system_configuration_details.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.file_system_configuration_details.Element + _element.file_system_size_gb = AAZIntType( + serialized_name="fileSystemSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + iorm_config_cache = cls._schema_on_200.properties.iorm_config_cache iorm_config_cache.db_plans = AAZListType( serialized_name="dbPlans", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_update.py index ed25b6c57fe..d4f03419227 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_update.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_update.py @@ -22,9 +22,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}", "2025-09-01"], ] } @@ -101,6 +101,12 @@ def _build_arguments_schema(cls, *args, **kwargs): min_length=1, ), ) + _args_schema.file_system_configuration_details = AAZListArg( + options=["--file-system-configuration-details"], + arg_group="Properties", + help="Array of mount path and size.", + nullable=True, + ) _args_schema.license_model = AAZStrArg( options=["--license-model"], arg_group="Properties", @@ -158,6 +164,23 @@ def _build_arguments_schema(cls, *args, **kwargs): nullable=True, ) + file_system_configuration_details = cls._args_schema.file_system_configuration_details + file_system_configuration_details.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.file_system_configuration_details.Element + _element.file_system_size_gb = AAZIntArg( + options=["file-system-size-gb"], + help="Size of the VM", + nullable=True, + ) + _element.mount_point = AAZStrArg( + options=["mount-point"], + help="Mount path", + nullable=True, + ) + ssh_public_keys = cls._args_schema.ssh_public_keys ssh_public_keys.Element = AAZStrArg( nullable=True, @@ -257,7 +280,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -288,7 +311,305 @@ def _build_schema_on_200(cls): return cls._schema_on_200 cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_cloud_vm_cluster_read(cls._schema_on_200) + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.backup_subnet_cidr = AAZStrType( + serialized_name="backupSubnetCidr", + ) + properties.cloud_exadata_infrastructure_id = AAZStrType( + serialized_name="cloudExadataInfrastructureId", + flags={"required": True}, + ) + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.compartment_id = AAZStrType( + serialized_name="compartmentId", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", + flags={"required": True}, + ) + properties.data_collection_options = AAZObjectType( + serialized_name="dataCollectionOptions", + ) + properties.data_storage_percentage = AAZIntType( + serialized_name="dataStoragePercentage", + ) + properties.data_storage_size_in_tbs = AAZFloatType( + serialized_name="dataStorageSizeInTbs", + ) + properties.db_node_storage_size_in_gbs = AAZIntType( + serialized_name="dbNodeStorageSizeInGbs", + ) + properties.db_servers = AAZListType( + serialized_name="dbServers", + ) + properties.disk_redundancy = AAZStrType( + serialized_name="diskRedundancy", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.domain = AAZStrType() + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + ) + properties.file_system_configuration_details = AAZListType( + serialized_name="fileSystemConfigurationDetails", + ) + properties.gi_version = AAZStrType( + serialized_name="giVersion", + flags={"required": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.iorm_config_cache = AAZObjectType( + serialized_name="iormConfigCache", + flags={"read_only": True}, + ) + properties.is_local_backup_enabled = AAZBoolType( + serialized_name="isLocalBackupEnabled", + ) + properties.is_sparse_diskgroup_enabled = AAZBoolType( + serialized_name="isSparseDiskgroupEnabled", + ) + properties.last_update_history_entry_id = AAZStrType( + serialized_name="lastUpdateHistoryEntryId", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + flags={"read_only": True}, + ) + properties.nsg_cidrs = AAZListType( + serialized_name="nsgCidrs", + ) + properties.nsg_url = AAZStrType( + serialized_name="nsgUrl", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.ocpu_count = AAZFloatType( + serialized_name="ocpuCount", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_dns_record_id = AAZStrType( + serialized_name="scanDnsRecordId", + flags={"read_only": True}, + ) + properties.scan_ip_ids = AAZListType( + serialized_name="scanIpIds", + flags={"read_only": True}, + ) + properties.scan_listener_port_tcp = AAZIntType( + serialized_name="scanListenerPortTcp", + ) + properties.scan_listener_port_tcp_ssl = AAZIntType( + serialized_name="scanListenerPortTcpSsl", + ) + properties.shape = AAZStrType( + flags={"read_only": True}, + ) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.storage_management_type = AAZStrType( + serialized_name="storageManagementType", + flags={"read_only": True}, + ) + properties.storage_size_in_gbs = AAZIntType( + serialized_name="storageSizeInGbs", + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.subnet_ocid = AAZStrType( + serialized_name="subnetOcid", + flags={"read_only": True}, + ) + properties.system_version = AAZStrType( + serialized_name="systemVersion", + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.vip_ids = AAZListType( + serialized_name="vipIds", + flags={"read_only": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"required": True}, + ) + properties.zone_id = AAZStrType( + serialized_name="zoneId", + ) + + data_collection_options = cls._schema_on_200.properties.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolType( + serialized_name="isDiagnosticsEventsEnabled", + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolType( + serialized_name="isHealthMonitoringEnabled", + ) + data_collection_options.is_incident_logs_enabled = AAZBoolType( + serialized_name="isIncidentLogsEnabled", + ) + + db_servers = cls._schema_on_200.properties.db_servers + db_servers.Element = AAZStrType() + + file_system_configuration_details = cls._schema_on_200.properties.file_system_configuration_details + file_system_configuration_details.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.file_system_configuration_details.Element + _element.file_system_size_gb = AAZIntType( + serialized_name="fileSystemSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + + iorm_config_cache = cls._schema_on_200.properties.iorm_config_cache + iorm_config_cache.db_plans = AAZListType( + serialized_name="dbPlans", + ) + iorm_config_cache.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + iorm_config_cache.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + iorm_config_cache.objective = AAZStrType() + + db_plans = cls._schema_on_200.properties.iorm_config_cache.db_plans + db_plans.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.iorm_config_cache.db_plans.Element + _element.db_name = AAZStrType( + serialized_name="dbName", + ) + _element.flash_cache_limit = AAZStrType( + serialized_name="flashCacheLimit", + ) + _element.share = AAZIntType() + + nsg_cidrs = cls._schema_on_200.properties.nsg_cidrs + nsg_cidrs.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.nsg_cidrs.Element + _element.destination_port_range = AAZObjectType( + serialized_name="destinationPortRange", + ) + _element.source = AAZStrType( + flags={"required": True}, + ) + + destination_port_range = cls._schema_on_200.properties.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntType( + flags={"required": True}, + ) + destination_port_range.min = AAZIntType( + flags={"required": True}, + ) + + scan_ip_ids = cls._schema_on_200.properties.scan_ip_ids + scan_ip_ids.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + vip_ids = cls._schema_on_200.properties.vip_ids + vip_ids.Element = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() return cls._schema_on_200 @@ -356,7 +677,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -399,7 +720,305 @@ def _build_schema_on_200_201(cls): return cls._schema_on_200_201 cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_cloud_vm_cluster_read(cls._schema_on_200_201) + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.backup_subnet_cidr = AAZStrType( + serialized_name="backupSubnetCidr", + ) + properties.cloud_exadata_infrastructure_id = AAZStrType( + serialized_name="cloudExadataInfrastructureId", + flags={"required": True}, + ) + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.compartment_id = AAZStrType( + serialized_name="compartmentId", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", + flags={"required": True}, + ) + properties.data_collection_options = AAZObjectType( + serialized_name="dataCollectionOptions", + ) + properties.data_storage_percentage = AAZIntType( + serialized_name="dataStoragePercentage", + ) + properties.data_storage_size_in_tbs = AAZFloatType( + serialized_name="dataStorageSizeInTbs", + ) + properties.db_node_storage_size_in_gbs = AAZIntType( + serialized_name="dbNodeStorageSizeInGbs", + ) + properties.db_servers = AAZListType( + serialized_name="dbServers", + ) + properties.disk_redundancy = AAZStrType( + serialized_name="diskRedundancy", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.domain = AAZStrType() + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + ) + properties.file_system_configuration_details = AAZListType( + serialized_name="fileSystemConfigurationDetails", + ) + properties.gi_version = AAZStrType( + serialized_name="giVersion", + flags={"required": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.iorm_config_cache = AAZObjectType( + serialized_name="iormConfigCache", + flags={"read_only": True}, + ) + properties.is_local_backup_enabled = AAZBoolType( + serialized_name="isLocalBackupEnabled", + ) + properties.is_sparse_diskgroup_enabled = AAZBoolType( + serialized_name="isSparseDiskgroupEnabled", + ) + properties.last_update_history_entry_id = AAZStrType( + serialized_name="lastUpdateHistoryEntryId", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + flags={"read_only": True}, + ) + properties.nsg_cidrs = AAZListType( + serialized_name="nsgCidrs", + ) + properties.nsg_url = AAZStrType( + serialized_name="nsgUrl", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.ocpu_count = AAZFloatType( + serialized_name="ocpuCount", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_dns_record_id = AAZStrType( + serialized_name="scanDnsRecordId", + flags={"read_only": True}, + ) + properties.scan_ip_ids = AAZListType( + serialized_name="scanIpIds", + flags={"read_only": True}, + ) + properties.scan_listener_port_tcp = AAZIntType( + serialized_name="scanListenerPortTcp", + ) + properties.scan_listener_port_tcp_ssl = AAZIntType( + serialized_name="scanListenerPortTcpSsl", + ) + properties.shape = AAZStrType( + flags={"read_only": True}, + ) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.storage_management_type = AAZStrType( + serialized_name="storageManagementType", + flags={"read_only": True}, + ) + properties.storage_size_in_gbs = AAZIntType( + serialized_name="storageSizeInGbs", + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.subnet_ocid = AAZStrType( + serialized_name="subnetOcid", + flags={"read_only": True}, + ) + properties.system_version = AAZStrType( + serialized_name="systemVersion", + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"read_only": True}, + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.vip_ids = AAZListType( + serialized_name="vipIds", + flags={"read_only": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"required": True}, + ) + properties.zone_id = AAZStrType( + serialized_name="zoneId", + ) + + data_collection_options = cls._schema_on_200_201.properties.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolType( + serialized_name="isDiagnosticsEventsEnabled", + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolType( + serialized_name="isHealthMonitoringEnabled", + ) + data_collection_options.is_incident_logs_enabled = AAZBoolType( + serialized_name="isIncidentLogsEnabled", + ) + + db_servers = cls._schema_on_200_201.properties.db_servers + db_servers.Element = AAZStrType() + + file_system_configuration_details = cls._schema_on_200_201.properties.file_system_configuration_details + file_system_configuration_details.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.file_system_configuration_details.Element + _element.file_system_size_gb = AAZIntType( + serialized_name="fileSystemSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + + iorm_config_cache = cls._schema_on_200_201.properties.iorm_config_cache + iorm_config_cache.db_plans = AAZListType( + serialized_name="dbPlans", + ) + iorm_config_cache.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + iorm_config_cache.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + iorm_config_cache.objective = AAZStrType() + + db_plans = cls._schema_on_200_201.properties.iorm_config_cache.db_plans + db_plans.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.iorm_config_cache.db_plans.Element + _element.db_name = AAZStrType( + serialized_name="dbName", + ) + _element.flash_cache_limit = AAZStrType( + serialized_name="flashCacheLimit", + ) + _element.share = AAZIntType() + + nsg_cidrs = cls._schema_on_200_201.properties.nsg_cidrs + nsg_cidrs.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.nsg_cidrs.Element + _element.destination_port_range = AAZObjectType( + serialized_name="destinationPortRange", + ) + _element.source = AAZStrType( + flags={"required": True}, + ) + + destination_port_range = cls._schema_on_200_201.properties.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntType( + flags={"required": True}, + ) + destination_port_range.min = AAZIntType( + flags={"required": True}, + ) + + scan_ip_ids = cls._schema_on_200_201.properties.scan_ip_ids + scan_ip_ids.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200_201.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + vip_ids = cls._schema_on_200_201.properties.vip_ids + vip_ids.Element = AAZStrType() + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() return cls._schema_on_200_201 @@ -414,7 +1033,7 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("properties", AAZObjectType) _builder.set_prop("tags", AAZDictType, ".tags") properties = _builder.get(".properties") @@ -425,6 +1044,7 @@ def _update_instance(self, instance): properties.set_prop("dataStorageSizeInTbs", AAZFloatType, ".data_storage_size_in_tbs") properties.set_prop("dbNodeStorageSizeInGbs", AAZIntType, ".db_node_storage_size_in_gbs") properties.set_prop("displayName", AAZStrType, ".display_name", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("fileSystemConfigurationDetails", AAZListType, ".file_system_configuration_details") properties.set_prop("licenseModel", AAZStrType, ".license_model") properties.set_prop("memorySizeInGbs", AAZIntType, ".memory_size_in_gbs") properties.set_prop("ocpuCount", AAZFloatType, ".ocpu_count") @@ -441,6 +1061,15 @@ def _update_instance(self, instance): data_collection_options.set_prop("isHealthMonitoringEnabled", AAZBoolType, ".is_health_monitoring_enabled") data_collection_options.set_prop("isIncidentLogsEnabled", AAZBoolType, ".is_incident_logs_enabled") + file_system_configuration_details = _builder.get(".properties.fileSystemConfigurationDetails") + if file_system_configuration_details is not None: + file_system_configuration_details.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.fileSystemConfigurationDetails[]") + if _elements is not None: + _elements.set_prop("fileSystemSizeGb", AAZIntType, ".file_system_size_gb") + _elements.set_prop("mountPoint", AAZStrType, ".mount_point") + ssh_public_keys = _builder.get(".properties.sshPublicKeys") if ssh_public_keys is not None: ssh_public_keys.set_elements(AAZStrType, ".") @@ -463,296 +1092,5 @@ def __call__(self, *args, **kwargs): class _UpdateHelper: """Helper class for Update""" - _schema_cloud_vm_cluster_read = None - - @classmethod - def _build_schema_cloud_vm_cluster_read(cls, _schema): - if cls._schema_cloud_vm_cluster_read is not None: - _schema.id = cls._schema_cloud_vm_cluster_read.id - _schema.location = cls._schema_cloud_vm_cluster_read.location - _schema.name = cls._schema_cloud_vm_cluster_read.name - _schema.properties = cls._schema_cloud_vm_cluster_read.properties - _schema.system_data = cls._schema_cloud_vm_cluster_read.system_data - _schema.tags = cls._schema_cloud_vm_cluster_read.tags - _schema.type = cls._schema_cloud_vm_cluster_read.type - return - - cls._schema_cloud_vm_cluster_read = _schema_cloud_vm_cluster_read = AAZObjectType() - - cloud_vm_cluster_read = _schema_cloud_vm_cluster_read - cloud_vm_cluster_read.id = AAZStrType( - flags={"read_only": True}, - ) - cloud_vm_cluster_read.location = AAZStrType( - flags={"required": True}, - ) - cloud_vm_cluster_read.name = AAZStrType( - flags={"read_only": True}, - ) - cloud_vm_cluster_read.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - cloud_vm_cluster_read.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - cloud_vm_cluster_read.tags = AAZDictType() - cloud_vm_cluster_read.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = _schema_cloud_vm_cluster_read.properties - properties.backup_subnet_cidr = AAZStrType( - serialized_name="backupSubnetCidr", - ) - properties.cloud_exadata_infrastructure_id = AAZStrType( - serialized_name="cloudExadataInfrastructureId", - flags={"required": True}, - ) - properties.cluster_name = AAZStrType( - serialized_name="clusterName", - ) - properties.compartment_id = AAZStrType( - serialized_name="compartmentId", - ) - properties.cpu_core_count = AAZIntType( - serialized_name="cpuCoreCount", - flags={"required": True}, - ) - properties.data_collection_options = AAZObjectType( - serialized_name="dataCollectionOptions", - ) - properties.data_storage_percentage = AAZIntType( - serialized_name="dataStoragePercentage", - ) - properties.data_storage_size_in_tbs = AAZFloatType( - serialized_name="dataStorageSizeInTbs", - ) - properties.db_node_storage_size_in_gbs = AAZIntType( - serialized_name="dbNodeStorageSizeInGbs", - ) - properties.db_servers = AAZListType( - serialized_name="dbServers", - ) - properties.disk_redundancy = AAZStrType( - serialized_name="diskRedundancy", - ) - properties.display_name = AAZStrType( - serialized_name="displayName", - flags={"required": True}, - ) - properties.domain = AAZStrType() - properties.gi_version = AAZStrType( - serialized_name="giVersion", - flags={"required": True}, - ) - properties.hostname = AAZStrType( - flags={"required": True}, - ) - properties.iorm_config_cache = AAZObjectType( - serialized_name="iormConfigCache", - ) - properties.is_local_backup_enabled = AAZBoolType( - serialized_name="isLocalBackupEnabled", - ) - properties.is_sparse_diskgroup_enabled = AAZBoolType( - serialized_name="isSparseDiskgroupEnabled", - ) - properties.last_update_history_entry_id = AAZStrType( - serialized_name="lastUpdateHistoryEntryId", - ) - properties.license_model = AAZStrType( - serialized_name="licenseModel", - ) - properties.lifecycle_details = AAZStrType( - serialized_name="lifecycleDetails", - flags={"read_only": True}, - ) - properties.lifecycle_state = AAZStrType( - serialized_name="lifecycleState", - ) - properties.listener_port = AAZIntType( - serialized_name="listenerPort", - flags={"read_only": True}, - ) - properties.memory_size_in_gbs = AAZIntType( - serialized_name="memorySizeInGbs", - ) - properties.node_count = AAZIntType( - serialized_name="nodeCount", - flags={"read_only": True}, - ) - properties.nsg_cidrs = AAZListType( - serialized_name="nsgCidrs", - ) - properties.nsg_url = AAZStrType( - serialized_name="nsgUrl", - flags={"read_only": True}, - ) - properties.oci_url = AAZStrType( - serialized_name="ociUrl", - flags={"read_only": True}, - ) - properties.ocid = AAZStrType() - properties.ocpu_count = AAZFloatType( - serialized_name="ocpuCount", - ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - properties.scan_dns_name = AAZStrType( - serialized_name="scanDnsName", - flags={"read_only": True}, - ) - properties.scan_dns_record_id = AAZStrType( - serialized_name="scanDnsRecordId", - ) - properties.scan_ip_ids = AAZListType( - serialized_name="scanIpIds", - flags={"read_only": True}, - ) - properties.scan_listener_port_tcp = AAZIntType( - serialized_name="scanListenerPortTcp", - ) - properties.scan_listener_port_tcp_ssl = AAZIntType( - serialized_name="scanListenerPortTcpSsl", - ) - properties.shape = AAZStrType( - flags={"read_only": True}, - ) - properties.ssh_public_keys = AAZListType( - serialized_name="sshPublicKeys", - flags={"required": True}, - ) - properties.storage_size_in_gbs = AAZIntType( - serialized_name="storageSizeInGbs", - ) - properties.subnet_id = AAZStrType( - serialized_name="subnetId", - flags={"required": True}, - ) - properties.subnet_ocid = AAZStrType( - serialized_name="subnetOcid", - ) - properties.system_version = AAZStrType( - serialized_name="systemVersion", - ) - properties.time_created = AAZStrType( - serialized_name="timeCreated", - flags={"read_only": True}, - ) - properties.time_zone = AAZStrType( - serialized_name="timeZone", - ) - properties.vip_ids = AAZListType( - serialized_name="vipIds", - flags={"read_only": True}, - ) - properties.vnet_id = AAZStrType( - serialized_name="vnetId", - flags={"required": True}, - ) - properties.zone_id = AAZStrType( - serialized_name="zoneId", - ) - - data_collection_options = _schema_cloud_vm_cluster_read.properties.data_collection_options - data_collection_options.is_diagnostics_events_enabled = AAZBoolType( - serialized_name="isDiagnosticsEventsEnabled", - ) - data_collection_options.is_health_monitoring_enabled = AAZBoolType( - serialized_name="isHealthMonitoringEnabled", - ) - data_collection_options.is_incident_logs_enabled = AAZBoolType( - serialized_name="isIncidentLogsEnabled", - ) - - db_servers = _schema_cloud_vm_cluster_read.properties.db_servers - db_servers.Element = AAZStrType() - - iorm_config_cache = _schema_cloud_vm_cluster_read.properties.iorm_config_cache - iorm_config_cache.db_plans = AAZListType( - serialized_name="dbPlans", - ) - iorm_config_cache.lifecycle_details = AAZStrType( - serialized_name="lifecycleDetails", - ) - iorm_config_cache.lifecycle_state = AAZStrType( - serialized_name="lifecycleState", - ) - iorm_config_cache.objective = AAZStrType() - - db_plans = _schema_cloud_vm_cluster_read.properties.iorm_config_cache.db_plans - db_plans.Element = AAZObjectType() - - _element = _schema_cloud_vm_cluster_read.properties.iorm_config_cache.db_plans.Element - _element.db_name = AAZStrType( - serialized_name="dbName", - ) - _element.flash_cache_limit = AAZStrType( - serialized_name="flashCacheLimit", - ) - _element.share = AAZIntType() - - nsg_cidrs = _schema_cloud_vm_cluster_read.properties.nsg_cidrs - nsg_cidrs.Element = AAZObjectType() - - _element = _schema_cloud_vm_cluster_read.properties.nsg_cidrs.Element - _element.destination_port_range = AAZObjectType( - serialized_name="destinationPortRange", - ) - _element.source = AAZStrType( - flags={"required": True}, - ) - - destination_port_range = _schema_cloud_vm_cluster_read.properties.nsg_cidrs.Element.destination_port_range - destination_port_range.max = AAZIntType( - flags={"required": True}, - ) - destination_port_range.min = AAZIntType( - flags={"required": True}, - ) - - scan_ip_ids = _schema_cloud_vm_cluster_read.properties.scan_ip_ids - scan_ip_ids.Element = AAZStrType() - - ssh_public_keys = _schema_cloud_vm_cluster_read.properties.ssh_public_keys - ssh_public_keys.Element = AAZStrType() - - vip_ids = _schema_cloud_vm_cluster_read.properties.vip_ids - vip_ids.Element = AAZStrType() - - system_data = _schema_cloud_vm_cluster_read.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = _schema_cloud_vm_cluster_read.tags - tags.Element = AAZStrType() - - _schema.id = cls._schema_cloud_vm_cluster_read.id - _schema.location = cls._schema_cloud_vm_cluster_read.location - _schema.name = cls._schema_cloud_vm_cluster_read.name - _schema.properties = cls._schema_cloud_vm_cluster_read.properties - _schema.system_data = cls._schema_cloud_vm_cluster_read.system_data - _schema.tags = cls._schema_cloud_vm_cluster_read.tags - _schema.type = cls._schema_cloud_vm_cluster_read.type - __all__ = ["Update"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_wait.py index 8b1da038510..506701c5c5a 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}", "2025-09-01"], ] } @@ -119,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -161,9 +161,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -186,6 +184,11 @@ def _build_schema_on_200(cls): ) properties.compartment_id = AAZStrType( serialized_name="compartmentId", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, ) properties.cpu_core_count = AAZIntType( serialized_name="cpuCoreCount", @@ -208,12 +211,19 @@ def _build_schema_on_200(cls): ) properties.disk_redundancy = AAZStrType( serialized_name="diskRedundancy", + flags={"read_only": True}, ) properties.display_name = AAZStrType( serialized_name="displayName", flags={"required": True}, ) properties.domain = AAZStrType() + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + ) + properties.file_system_configuration_details = AAZListType( + serialized_name="fileSystemConfigurationDetails", + ) properties.gi_version = AAZStrType( serialized_name="giVersion", flags={"required": True}, @@ -223,6 +233,7 @@ def _build_schema_on_200(cls): ) properties.iorm_config_cache = AAZObjectType( serialized_name="iormConfigCache", + flags={"read_only": True}, ) properties.is_local_backup_enabled = AAZBoolType( serialized_name="isLocalBackupEnabled", @@ -232,6 +243,7 @@ def _build_schema_on_200(cls): ) properties.last_update_history_entry_id = AAZStrType( serialized_name="lastUpdateHistoryEntryId", + flags={"read_only": True}, ) properties.license_model = AAZStrType( serialized_name="licenseModel", @@ -242,6 +254,7 @@ def _build_schema_on_200(cls): ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"read_only": True}, ) properties.listener_port = AAZIntType( serialized_name="listenerPort", @@ -265,7 +278,9 @@ def _build_schema_on_200(cls): serialized_name="ociUrl", flags={"read_only": True}, ) - properties.ocid = AAZStrType() + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.ocpu_count = AAZFloatType( serialized_name="ocpuCount", ) @@ -279,6 +294,7 @@ def _build_schema_on_200(cls): ) properties.scan_dns_record_id = AAZStrType( serialized_name="scanDnsRecordId", + flags={"read_only": True}, ) properties.scan_ip_ids = AAZListType( serialized_name="scanIpIds", @@ -297,6 +313,10 @@ def _build_schema_on_200(cls): serialized_name="sshPublicKeys", flags={"required": True}, ) + properties.storage_management_type = AAZStrType( + serialized_name="storageManagementType", + flags={"read_only": True}, + ) properties.storage_size_in_gbs = AAZIntType( serialized_name="storageSizeInGbs", ) @@ -306,6 +326,7 @@ def _build_schema_on_200(cls): ) properties.subnet_ocid = AAZStrType( serialized_name="subnetOcid", + flags={"read_only": True}, ) properties.system_version = AAZStrType( serialized_name="systemVersion", @@ -343,6 +364,17 @@ def _build_schema_on_200(cls): db_servers = cls._schema_on_200.properties.db_servers db_servers.Element = AAZStrType() + file_system_configuration_details = cls._schema_on_200.properties.file_system_configuration_details + file_system_configuration_details.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.file_system_configuration_details.Element + _element.file_system_size_gb = AAZIntType( + serialized_name="fileSystemSizeGb", + ) + _element.mount_point = AAZStrType( + serialized_name="mountPoint", + ) + iorm_config_cache = cls._schema_on_200.properties.iorm_config_cache iorm_config_cache.db_plans = AAZListType( serialized_name="dbPlans", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/database_node/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/database_node/__init__.py index 42777293b84..2669684101d 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/database_node/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/database_node/__init__.py @@ -11,3 +11,4 @@ from .__cmd_group import * from ._action import * from ._list import * +from ._show import * diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/database_node/_show.py similarity index 62% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_show.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/database_node/_show.py index d2cd14f9551..037a01e9bda 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/database_node/_show.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network sim show", + "oracle-database cloud-vm-cluster database-node show", ) class Show(AAZCommand): - """Get information about the specified SIM. + """Get a DbNode - :example: Show sim - az mobile-network sim show -g rg -n sim-name --sim-group-name sim-group-name + :example: Get a DB Node + az oracle-database cloud-vm-cluster database-node show --cloudvmclustername --resource-group --dbnodeocid """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}/sims/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/dbnodes/{}", "2025-09-01"], ] } @@ -44,34 +44,34 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["--sim-group-name"], - help="The name of the SIM Group.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) - _args_schema.sim_name = AAZStrArg( - options=["-n", "--name", "--sim-name"], - help="The name of the SIM.", + _args_schema.dbnodeocid = AAZStrArg( + options=["-n", "--name", "--dbnodeocid"], + help="DbNode OCID.", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", + max_length=255, + min_length=1, ), ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.SimsGet(ctx=self.ctx)() + self.DbNodesGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -86,7 +86,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class SimsGet(AAZHttpOperation): + class DbNodesGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -100,7 +100,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/dbNodes/{dbnodeocid}", **self.url_parameters ) @@ -116,15 +116,15 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, + "dbnodeocid", self.ctx.args.dbnodeocid, required=True, ), **self.serialize_url_param( - "simName", self.ctx.args.sim_name, + "resourceGroupName", self.ctx.args.resource_group, required=True, ), **self.serialize_url_param( @@ -138,7 +138,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -177,9 +177,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -189,78 +187,77 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.properties - properties.device_type = AAZStrType( - serialized_name="deviceType", + properties.additional_details = AAZStrType( + serialized_name="additionalDetails", ) - properties.integrated_circuit_card_identifier = AAZStrType( - serialized_name="integratedCircuitCardIdentifier", + properties.backup_ip_id = AAZStrType( + serialized_name="backupIpId", ) - properties.international_mobile_subscriber_identity = AAZStrType( - serialized_name="internationalMobileSubscriberIdentity", - flags={"required": True}, + properties.backup_vnic2_id = AAZStrType( + serialized_name="backupVnic2Id", ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, + properties.backup_vnic_id = AAZStrType( + serialized_name="backupVnicId", ) - properties.sim_policy = AAZObjectType( - serialized_name="simPolicy", + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", ) - properties.sim_state = AAZStrType( - serialized_name="simState", - flags={"read_only": True}, + properties.db_node_storage_size_in_gbs = AAZIntType( + serialized_name="dbNodeStorageSizeInGbs", ) - properties.site_provisioning_state = AAZDictType( - serialized_name="siteProvisioningState", - flags={"read_only": True}, + properties.db_server_id = AAZStrType( + serialized_name="dbServerId", ) - properties.static_ip_configuration = AAZListType( - serialized_name="staticIpConfiguration", + properties.db_system_id = AAZStrType( + serialized_name="dbSystemId", + flags={"required": True}, ) - properties.vendor_key_fingerprint = AAZStrType( - serialized_name="vendorKeyFingerprint", - flags={"read_only": True}, + properties.fault_domain = AAZStrType( + serialized_name="faultDomain", ) - properties.vendor_name = AAZStrType( - serialized_name="vendorName", - flags={"read_only": True}, + properties.host_ip_id = AAZStrType( + serialized_name="hostIpId", ) - - sim_policy = cls._schema_on_200.properties.sim_policy - sim_policy.id = AAZStrType( + properties.hostname = AAZStrType() + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", flags={"required": True}, ) - - site_provisioning_state = cls._schema_on_200.properties.site_provisioning_state - site_provisioning_state.Element = AAZStrType( - flags={"read_only": True}, + properties.maintenance_type = AAZStrType( + serialized_name="maintenanceType", ) - - static_ip_configuration = cls._schema_on_200.properties.static_ip_configuration - static_ip_configuration.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.static_ip_configuration.Element - _element.attached_data_network = AAZObjectType( - serialized_name="attachedDataNetwork", + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", ) - _element.slice = AAZObjectType() - _element.static_ip = AAZObjectType( - serialized_name="staticIp", - ) - - attached_data_network = cls._schema_on_200.properties.static_ip_configuration.Element.attached_data_network - attached_data_network.id = AAZStrType( + properties.ocid = AAZStrType( flags={"required": True}, ) - - slice = cls._schema_on_200.properties.static_ip_configuration.Element.slice - slice.id = AAZStrType( + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.software_storage_size_in_gb = AAZIntType( + serialized_name="softwareStorageSizeInGb", + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", flags={"required": True}, ) - - static_ip = cls._schema_on_200.properties.static_ip_configuration.Element.static_ip - static_ip.ipv4_address = AAZStrType( - serialized_name="ipv4Address", + properties.time_maintenance_window_end = AAZStrType( + serialized_name="timeMaintenanceWindowEnd", + ) + properties.time_maintenance_window_start = AAZStrType( + serialized_name="timeMaintenanceWindowStart", + ) + properties.vnic2_id = AAZStrType( + serialized_name="vnic2Id", + ) + properties.vnic_id = AAZStrType( + serialized_name="vnicId", + flags={"required": True}, ) system_data = cls._schema_on_200.system_data diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/__cmd_group.py new file mode 100644 index 00000000000..1ba99d4b551 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "oracle-database cloud-vm-cluster virtual-network-address", +) +class __CMDGroup(AAZCommandGroup): + """Virtual Network Address + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/__init__.py similarity index 100% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/__init__.py diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_create.py similarity index 74% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_create.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_create.py index 07939a79f5f..3811458b29f 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_create.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_create.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network data-network create", + "oracle-database cloud-vm-cluster virtual-network-address create", ) class Create(AAZCommand): - """Create a data network. + """Create a VirtualNetworkAddress - :example: Create data-network - az mobile-network data-network create -n data-network-name -g rg --mobile-network-name mobile-network-name + :example: Create Virtual Network Address + az oracle-database cloud-vm-cluster virtual-network-address create --cloudvmclustername --resource-group --name --ip-address --vm-ocid """ _aaz_info = { "version": "2023-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/datanetworks/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses/{}", "2023-09-01"], ] } @@ -45,61 +45,50 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.data_network_name = AAZStrArg( - options=["-n", "--name", "--data-network-name"], - help="The name of the data network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*(\.[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*)*$", - max_length=64, - ), - ) - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.location = AAZResourceLocationArg( - arg_group="Parameters", - help="The geo-location where the resource lives", + _args_schema.virtualnetworkaddressname = AAZStrArg( + options=["-n", "--name", "--virtualnetworkaddressname"], + help="Virtual IP address hostname.", required=True, - fmt=AAZResourceLocationArgFormat( - resource_group_arg="resource_group", + fmt=AAZStrArgFormat( + pattern=".*", + max_length=63, + min_length=1, ), ) - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg() # define Arg Group "Properties" _args_schema = cls._args_schema - _args_schema.description = AAZStrArg( - options=["--description"], + _args_schema.ip_address = AAZStrArg( + options=["--ip-address"], arg_group="Properties", - help="An optional description for this data network.", + help="Virtual network Address address.", + ) + _args_schema.vm_ocid = AAZStrArg( + options=["--vm-ocid"], + arg_group="Properties", + help="Virtual Machine OCID.", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), ) return cls._args_schema def _execute_operations(self): self.pre_operations() - yield self.DataNetworksCreateOrUpdate(ctx=self.ctx)() + yield self.VirtualNetworkAddressesCreateOrUpdate(ctx=self.ctx)() self.post_operations() @register_callback @@ -114,7 +103,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class DataNetworksCreateOrUpdate(AAZHttpOperation): + class VirtualNetworkAddressesCreateOrUpdate(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -144,7 +133,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", **self.url_parameters ) @@ -160,19 +149,19 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "dataNetworkName", self.ctx.args.data_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "resourceGroupName", self.ctx.args.resource_group, required=True, ), **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "subscriptionId", self.ctx.subscription_id, required=True, ), **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, required=True, ), } @@ -207,17 +196,12 @@ def content(self): typ=AAZObjectType, typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) - _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") properties = _builder.get(".properties") if properties is not None: - properties.set_prop("description", AAZStrType, ".description") - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") + properties.set_prop("ipAddress", AAZStrType, ".ip_address") + properties.set_prop("vmOcid", AAZStrType, ".vm_ocid") return self.serialize_content(_content_value) @@ -242,9 +226,6 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.location = AAZStrType( - flags={"required": True}, - ) _schema_on_200_201.name = AAZStrType( flags={"read_only": True}, ) @@ -255,17 +236,36 @@ def _build_schema_on_200_201(cls): serialized_name="systemData", flags={"read_only": True}, ) - _schema_on_200_201.tags = AAZDictType() _schema_on_200_201.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200_201.properties - properties.description = AAZStrType() + properties.domain = AAZStrType( + flags={"read_only": True}, + ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + properties.ocid = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, + ) + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", + ) system_data = cls._schema_on_200_201.system_data system_data.created_at = AAZStrType( @@ -287,9 +287,6 @@ def _build_schema_on_200_201(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200_201.tags - tags.Element = AAZStrType() - return cls._schema_on_200_201 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_delete.py similarity index 76% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_delete.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_delete.py index 244d6af5698..e58ff24f613 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_delete.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_delete.py @@ -12,20 +12,20 @@ @register_command( - "mobile-network data-network delete", + "oracle-database cloud-vm-cluster virtual-network-address delete", confirmation="Are you sure you want to perform this operation?", ) class Delete(AAZCommand): - """Delete the specified data network. + """Delete a VirtualNetworkAddress - :example: Delete data-network - az mobile-network data-network delete -n data_network-name --mobile-network-name mobile-network-name -g rg -y + :example: Delete Virtual Network Address + az oracle-database cloud-vm-cluster virtual-network-address delete --cloudvmclustername --resource-group --name """ _aaz_info = { "version": "2023-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/datanetworks/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses/{}", "2023-09-01"], ] } @@ -46,34 +46,34 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.data_network_name = AAZStrArg( - options=["-n", "--name", "--data-network-name"], - help="The name of the data network.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*(\.[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*)*$", - max_length=64, - ), - ) - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) + _args_schema.virtualnetworkaddressname = AAZStrArg( + options=["-n", "--name", "--virtualnetworkaddressname"], + help="Virtual IP address hostname.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern=".*", + max_length=63, + min_length=1, + ), + ) return cls._args_schema def _execute_operations(self): self.pre_operations() - yield self.DataNetworksDelete(ctx=self.ctx)() + yield self.VirtualNetworkAddressesDelete(ctx=self.ctx)() self.post_operations() @register_callback @@ -84,7 +84,7 @@ def pre_operations(self): def post_operations(self): pass - class DataNetworksDelete(AAZHttpOperation): + class VirtualNetworkAddressesDelete(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -94,25 +94,25 @@ def __call__(self, *args, **kwargs): return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [200]: + if session.http_response.status_code in [204]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_204, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [204]: + if session.http_response.status_code in [200, 201]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_204, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, @@ -123,7 +123,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", **self.url_parameters ) @@ -139,19 +139,19 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "dataNetworkName", self.ctx.args.data_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "resourceGroupName", self.ctx.args.resource_group, required=True, ), **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "subscriptionId", self.ctx.subscription_id, required=True, ), **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, required=True, ), } @@ -167,10 +167,10 @@ def query_parameters(self): } return parameters - def on_200(self, session): + def on_204(self, session): pass - def on_204(self, session): + def on_200_201(self, session): pass diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_list.py similarity index 79% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_list.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_list.py index 2cc9e94d296..d632912dd58 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_list.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network site list", + "oracle-database cloud-vm-cluster virtual-network-address list", ) class List(AAZCommand): - """List all sites in the mobile network. + """List VirtualNetworkAddress resources by CloudVmCluster - :example: List site by resource group - az mobile-network site list --mobile-network-name mobile-network-name -g rg + :example: List Virtual Network Address + az oracle-database cloud-vm-cluster virtual-network-address list --cloudvmclustername --resource-group """ _aaz_info = { "version": "2023-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/sites", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses", "2023-09-01"], ] } @@ -45,13 +45,12 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( @@ -61,7 +60,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - self.SitesListByMobileNetwork(ctx=self.ctx)() + self.VirtualNetworkAddressesListByCloudVmCluster(ctx=self.ctx)() self.post_operations() @register_callback @@ -77,7 +76,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class SitesListByMobileNetwork(AAZHttpOperation): + class VirtualNetworkAddressesListByCloudVmCluster(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -91,7 +90,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses", **self.url_parameters ) @@ -107,7 +106,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( @@ -160,9 +159,10 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) - _schema_on_200.value = AAZListType() + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) value = cls._schema_on_200.value value.Element = AAZObjectType() @@ -171,9 +171,6 @@ def _build_schema_on_200(cls): _element.id = AAZStrType( flags={"read_only": True}, ) - _element.location = AAZStrType( - flags={"required": True}, - ) _element.name = AAZStrType( flags={"read_only": True}, ) @@ -184,27 +181,35 @@ def _build_schema_on_200(cls): serialized_name="systemData", flags={"read_only": True}, ) - _element.tags = AAZDictType() _element.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.value.Element.properties - properties.network_functions = AAZListType( - serialized_name="networkFunctions", + properties.domain = AAZStrType( + flags={"read_only": True}, + ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", flags={"read_only": True}, ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + properties.ocid = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - - network_functions = cls._schema_on_200.value.Element.properties.network_functions - network_functions.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.properties.network_functions.Element - _element.id = AAZStrType( - flags={"required": True}, + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, + ) + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", ) system_data = cls._schema_on_200.value.Element.system_data @@ -227,9 +232,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.value.Element.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_show.py similarity index 75% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_show.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_show.py index c6fd60b91d4..b6bb7959da7 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_show.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network site show", + "oracle-database cloud-vm-cluster virtual-network-address show", ) class Show(AAZCommand): - """Get information about the specified mobile network site. + """Get a VirtualNetworkAddress - :example: Show site - az mobile-network site show--mobile-network-name mobile-network-name -n site-name -g rg + :example: Get Vnet address + az oracle-database cloud-vm-cluster virtual-network-address show --cloudvmclustername --resource-group --name """ _aaz_info = { "version": "2023-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/sites/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses/{}", "2023-09-01"], ] } @@ -44,34 +44,34 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.site_name = AAZStrArg( - options=["-n", "--name", "--site-name"], - help="The name of the mobile network site.", + _args_schema.virtualnetworkaddressname = AAZStrArg( + options=["-n", "--name", "--virtualnetworkaddressname"], + help="Virtual IP address hostname.", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", + max_length=63, + min_length=1, ), ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.SitesGet(ctx=self.ctx)() + self.VirtualNetworkAddressesGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -86,7 +86,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class SitesGet(AAZHttpOperation): + class VirtualNetworkAddressesGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -100,7 +100,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", **self.url_parameters ) @@ -116,7 +116,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( @@ -124,11 +124,11 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "siteName", self.ctx.args.site_name, + "subscriptionId", self.ctx.subscription_id, required=True, ), **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, required=True, ), } @@ -174,9 +174,6 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) @@ -187,27 +184,35 @@ def _build_schema_on_200(cls): serialized_name="systemData", flags={"read_only": True}, ) - _schema_on_200.tags = AAZDictType() _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.properties - properties.network_functions = AAZListType( - serialized_name="networkFunctions", + properties.domain = AAZStrType( + flags={"read_only": True}, + ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", flags={"read_only": True}, ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + properties.ocid = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - - network_functions = cls._schema_on_200.properties.network_functions - network_functions.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.network_functions.Element - _element.id = AAZStrType( - flags={"required": True}, + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, + ) + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", ) system_data = cls._schema_on_200.system_data @@ -230,9 +235,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_update.py similarity index 71% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_update.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_update.py index 0c52d583777..662b2c16a21 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_update.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_update.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network site update", + "oracle-database cloud-vm-cluster virtual-network-address update", ) class Update(AAZCommand): - """Update a mobile network site. + """Update a VirtualNetworkAddress - :example: Update site tags - az mobile-network site update --mobile-network-name mobile-network-name -n site-name -g rg --tags "{tag:test,tag2:test2}" + :example: Update Vnet address + az oracle-database cloud-vm-cluster virtual-network-address update --cloudvmclustername --resource-group --name """ _aaz_info = { "version": "2023-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/sites/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses/{}", "2023-09-01"], ] } @@ -47,54 +47,39 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.site_name = AAZStrArg( - options=["-n", "--name", "--site-name"], - help="The name of the mobile network site.", + _args_schema.virtualnetworkaddressname = AAZStrArg( + options=["-n", "--name", "--virtualnetworkaddressname"], + help="Virtual IP address hostname.", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", + max_length=63, + min_length=1, ), ) - - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - nullable=True, - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg( - nullable=True, - ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.SitesGet(ctx=self.ctx)() + self.VirtualNetworkAddressesGet(ctx=self.ctx)() self.pre_instance_update(self.ctx.vars.instance) self.InstanceUpdateByJson(ctx=self.ctx)() self.InstanceUpdateByGeneric(ctx=self.ctx)() self.post_instance_update(self.ctx.vars.instance) - yield self.SitesCreateOrUpdate(ctx=self.ctx)() + yield self.VirtualNetworkAddressesCreateOrUpdate(ctx=self.ctx)() self.post_operations() @register_callback @@ -117,7 +102,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class SitesGet(AAZHttpOperation): + class VirtualNetworkAddressesGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -131,7 +116,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", **self.url_parameters ) @@ -147,7 +132,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( @@ -155,11 +140,11 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "siteName", self.ctx.args.site_name, + "subscriptionId", self.ctx.subscription_id, required=True, ), **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, required=True, ), } @@ -200,11 +185,11 @@ def _build_schema_on_200(cls): return cls._schema_on_200 cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_site_read(cls._schema_on_200) + _UpdateHelper._build_schema_virtual_network_address_read(cls._schema_on_200) return cls._schema_on_200 - class SitesCreateOrUpdate(AAZHttpOperation): + class VirtualNetworkAddressesCreateOrUpdate(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -234,7 +219,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", **self.url_parameters ) @@ -250,7 +235,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( @@ -258,11 +243,11 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "siteName", self.ctx.args.site_name, + "subscriptionId", self.ctx.subscription_id, required=True, ), **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, required=True, ), } @@ -315,7 +300,7 @@ def _build_schema_on_200_201(cls): return cls._schema_on_200_201 cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_site_read(cls._schema_on_200_201) + _UpdateHelper._build_schema_virtual_network_address_read(cls._schema_on_200_201) return cls._schema_on_200_201 @@ -330,11 +315,6 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) - _builder.set_prop("tags", AAZDictType, ".tags") - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") return _instance_value @@ -350,63 +330,66 @@ def __call__(self, *args, **kwargs): class _UpdateHelper: """Helper class for Update""" - _schema_site_read = None + _schema_virtual_network_address_read = None @classmethod - def _build_schema_site_read(cls, _schema): - if cls._schema_site_read is not None: - _schema.id = cls._schema_site_read.id - _schema.location = cls._schema_site_read.location - _schema.name = cls._schema_site_read.name - _schema.properties = cls._schema_site_read.properties - _schema.system_data = cls._schema_site_read.system_data - _schema.tags = cls._schema_site_read.tags - _schema.type = cls._schema_site_read.type + def _build_schema_virtual_network_address_read(cls, _schema): + if cls._schema_virtual_network_address_read is not None: + _schema.id = cls._schema_virtual_network_address_read.id + _schema.name = cls._schema_virtual_network_address_read.name + _schema.properties = cls._schema_virtual_network_address_read.properties + _schema.system_data = cls._schema_virtual_network_address_read.system_data + _schema.type = cls._schema_virtual_network_address_read.type return - cls._schema_site_read = _schema_site_read = AAZObjectType() + cls._schema_virtual_network_address_read = _schema_virtual_network_address_read = AAZObjectType() - site_read = _schema_site_read - site_read.id = AAZStrType( + virtual_network_address_read = _schema_virtual_network_address_read + virtual_network_address_read.id = AAZStrType( flags={"read_only": True}, ) - site_read.location = AAZStrType( - flags={"required": True}, - ) - site_read.name = AAZStrType( + virtual_network_address_read.name = AAZStrType( flags={"read_only": True}, ) - site_read.properties = AAZObjectType( + virtual_network_address_read.properties = AAZObjectType( flags={"client_flatten": True}, ) - site_read.system_data = AAZObjectType( + virtual_network_address_read.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - site_read.tags = AAZDictType() - site_read.type = AAZStrType( + virtual_network_address_read.type = AAZStrType( flags={"read_only": True}, ) - properties = _schema_site_read.properties - properties.network_functions = AAZListType( - serialized_name="networkFunctions", + properties = _schema_virtual_network_address_read.properties + properties.domain = AAZStrType( flags={"read_only": True}, ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + properties.ocid = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - - network_functions = _schema_site_read.properties.network_functions - network_functions.Element = AAZObjectType() - - _element = _schema_site_read.properties.network_functions.Element - _element.id = AAZStrType( - flags={"required": True}, + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, + ) + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", ) - system_data = _schema_site_read.system_data + system_data = _schema_virtual_network_address_read.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", ) @@ -426,16 +409,11 @@ def _build_schema_site_read(cls, _schema): serialized_name="lastModifiedByType", ) - tags = _schema_site_read.tags - tags.Element = AAZStrType() - - _schema.id = cls._schema_site_read.id - _schema.location = cls._schema_site_read.location - _schema.name = cls._schema_site_read.name - _schema.properties = cls._schema_site_read.properties - _schema.system_data = cls._schema_site_read.system_data - _schema.tags = cls._schema_site_read.tags - _schema.type = cls._schema_site_read.type + _schema.id = cls._schema_virtual_network_address_read.id + _schema.name = cls._schema_virtual_network_address_read.name + _schema.properties = cls._schema_virtual_network_address_read.properties + _schema.system_data = cls._schema_virtual_network_address_read.system_data + _schema.type = cls._schema_virtual_network_address_read.type __all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_wait.py similarity index 78% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_wait.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_wait.py index d7c22feafca..64311019092 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/cloud_vm_cluster/virtual_network_address/_wait.py @@ -12,7 +12,7 @@ @register_command( - "mobile-network site wait", + "oracle-database cloud-vm-cluster virtual-network-address wait", ) class Wait(AAZWaitCommand): """Place the CLI in a waiting state until a condition is met. @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/sites/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses/{}", "2023-09-01"], ] } @@ -40,34 +40,34 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.site_name = AAZStrArg( - options=["-n", "--name", "--site-name"], - help="The name of the mobile network site.", + _args_schema.virtualnetworkaddressname = AAZStrArg( + options=["-n", "--name", "--virtualnetworkaddressname"], + help="Virtual IP address hostname.", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", + max_length=63, + min_length=1, ), ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.SitesGet(ctx=self.ctx)() + self.VirtualNetworkAddressesGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -82,7 +82,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) return result - class SitesGet(AAZHttpOperation): + class VirtualNetworkAddressesGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -96,7 +96,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", **self.url_parameters ) @@ -112,7 +112,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( @@ -120,11 +120,11 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "siteName", self.ctx.args.site_name, + "subscriptionId", self.ctx.subscription_id, required=True, ), **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, required=True, ), } @@ -170,9 +170,6 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) @@ -183,27 +180,35 @@ def _build_schema_on_200(cls): serialized_name="systemData", flags={"read_only": True}, ) - _schema_on_200.tags = AAZDictType() _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.properties - properties.network_functions = AAZListType( - serialized_name="networkFunctions", + properties.domain = AAZStrType( + flags={"read_only": True}, + ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", flags={"read_only": True}, ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + properties.ocid = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - - network_functions = cls._schema_on_200.properties.network_functions - network_functions.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.network_functions.Element - _element.id = AAZStrType( - flags={"required": True}, + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, + ) + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", ) system_data = cls._schema_on_200.system_data @@ -226,9 +231,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/__init__.py index d63ae5a6fc9..2df85698253 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/__init__.py @@ -10,3 +10,4 @@ from .__cmd_group import * from ._list import * +from ._show import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/_list.py index 36e5ca67267..6e15aabfe92 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dbsystemshapes", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dbsystemshapes", "2025-09-01"], ] } @@ -48,6 +48,14 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.location = AAZResourceLocationArg( required=True, ) + _args_schema.shape_attribute = AAZStrArg( + options=["--shape-attribute"], + help="Filters the result for the given Shape Attribute, such as BLOCK_STORAGE or SMART_STORAGE.", + ) + _args_schema.zone = AAZStrArg( + options=["--zone"], + help="Filters the result for the given Azure Availability Zone", + ) return cls._args_schema def _execute_operations(self): @@ -112,7 +120,13 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "shapeAttribute", self.ctx.args.shape_attribute, + ), + **self.serialize_query_param( + "zone", self.ctx.args.zone, + ), + **self.serialize_query_param( + "api-version", "2025-09-01", required=True, ), } @@ -162,9 +176,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -174,86 +186,86 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.value.Element.properties + properties.are_server_types_supported = AAZBoolType( + serialized_name="areServerTypesSupported", + ) properties.available_core_count = AAZIntType( serialized_name="availableCoreCount", - flags={"required": True, "read_only": True}, + flags={"required": True}, ) properties.available_core_count_per_node = AAZIntType( serialized_name="availableCoreCountPerNode", - flags={"read_only": True}, ) properties.available_data_storage_in_tbs = AAZIntType( serialized_name="availableDataStorageInTbs", - flags={"read_only": True}, ) properties.available_data_storage_per_server_in_tbs = AAZFloatType( serialized_name="availableDataStoragePerServerInTbs", - flags={"read_only": True}, ) properties.available_db_node_per_node_in_gbs = AAZIntType( serialized_name="availableDbNodePerNodeInGbs", - flags={"read_only": True}, ) properties.available_db_node_storage_in_gbs = AAZIntType( serialized_name="availableDbNodeStorageInGbs", - flags={"read_only": True}, ) properties.available_memory_in_gbs = AAZIntType( serialized_name="availableMemoryInGbs", - flags={"read_only": True}, ) properties.available_memory_per_node_in_gbs = AAZIntType( serialized_name="availableMemoryPerNodeInGbs", - flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", ) properties.core_count_increment = AAZIntType( serialized_name="coreCountIncrement", - flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", ) properties.max_storage_count = AAZIntType( serialized_name="maxStorageCount", - flags={"read_only": True}, ) properties.maximum_node_count = AAZIntType( serialized_name="maximumNodeCount", - flags={"read_only": True}, ) properties.min_core_count_per_node = AAZIntType( serialized_name="minCoreCountPerNode", - flags={"read_only": True}, ) properties.min_data_storage_in_tbs = AAZIntType( serialized_name="minDataStorageInTbs", - flags={"read_only": True}, ) properties.min_db_node_storage_per_node_in_gbs = AAZIntType( serialized_name="minDbNodeStoragePerNodeInGbs", - flags={"read_only": True}, ) properties.min_memory_per_node_in_gbs = AAZIntType( serialized_name="minMemoryPerNodeInGbs", - flags={"read_only": True}, ) properties.min_storage_count = AAZIntType( serialized_name="minStorageCount", - flags={"read_only": True}, ) properties.minimum_core_count = AAZIntType( serialized_name="minimumCoreCount", - flags={"read_only": True}, ) properties.minimum_node_count = AAZIntType( serialized_name="minimumNodeCount", - flags={"read_only": True}, ) properties.runtime_minimum_core_count = AAZIntType( serialized_name="runtimeMinimumCoreCount", - flags={"read_only": True}, + ) + properties.shape_attributes = AAZListType( + serialized_name="shapeAttributes", ) properties.shape_family = AAZStrType( serialized_name="shapeFamily", - flags={"read_only": True}, ) + properties.shape_name = AAZStrType( + serialized_name="shapeName", + flags={"required": True}, + ) + + shape_attributes = cls._schema_on_200.value.Element.properties.shape_attributes + shape_attributes.Element = AAZStrType() system_data = cls._schema_on_200.value.Element.system_data system_data.created_at = AAZStrType( diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/_show.py similarity index 57% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_wait.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/_show.py index d5dff460aa0..897f3c3ae2c 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/database_system_shape/_show.py @@ -12,15 +12,19 @@ @register_command( - "mobile-network sim wait", + "oracle-database database-system-shape show", ) -class Wait(AAZWaitCommand): - """Place the CLI in a waiting state until a condition is met. +class Show(AAZCommand): + """Get a DbSystemShape + + :example: Get database system shapes + az oracle-database database-system-shape show --name --location """ _aaz_info = { + "version": "2023-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}/sims/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dbsystemshapes/{}", "2023-09-01"], ] } @@ -40,34 +44,24 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["--sim-group-name"], - help="The name of the SIM Group.", + _args_schema.dbsystemshapename = AAZStrArg( + options=["-n", "--name", "--dbsystemshapename"], + help="DbSystemShape name", required=True, - id_part="name", + id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) - _args_schema.sim_name = AAZStrArg( - options=["-n", "--name", "--sim-name"], - help="The name of the SIM.", + _args_schema.location = AAZResourceLocationArg( required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), + id_part="name", ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.SimsGet(ctx=self.ctx)() + self.DbSystemShapesGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -79,10 +73,10 @@ def post_operations(self): pass def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class SimsGet(AAZHttpOperation): + class DbSystemShapesGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -96,7 +90,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dbSystemShapes/{dbsystemshapename}", **self.url_parameters ) @@ -112,15 +106,11 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "dbsystemshapename", self.ctx.args.dbsystemshapename, required=True, ), **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, - required=True, - ), - **self.serialize_url_param( - "simName", self.ctx.args.sim_name, + "location", self.ctx.args.location, required=True, ), **self.serialize_url_param( @@ -174,7 +164,7 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, + flags={"client_flatten": True}, ) _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", @@ -185,78 +175,85 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.properties - properties.device_type = AAZStrType( - serialized_name="deviceType", + properties.available_core_count = AAZIntType( + serialized_name="availableCoreCount", + flags={"required": True, "read_only": True}, ) - properties.integrated_circuit_card_identifier = AAZStrType( - serialized_name="integratedCircuitCardIdentifier", + properties.available_core_count_per_node = AAZIntType( + serialized_name="availableCoreCountPerNode", + flags={"read_only": True}, ) - properties.international_mobile_subscriber_identity = AAZStrType( - serialized_name="internationalMobileSubscriberIdentity", - flags={"required": True}, + properties.available_data_storage_in_tbs = AAZIntType( + serialized_name="availableDataStorageInTbs", + flags={"read_only": True}, ) - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", + properties.available_data_storage_per_server_in_tbs = AAZFloatType( + serialized_name="availableDataStoragePerServerInTbs", flags={"read_only": True}, ) - properties.sim_policy = AAZObjectType( - serialized_name="simPolicy", + properties.available_db_node_per_node_in_gbs = AAZIntType( + serialized_name="availableDbNodePerNodeInGbs", + flags={"read_only": True}, ) - properties.sim_state = AAZStrType( - serialized_name="simState", + properties.available_db_node_storage_in_gbs = AAZIntType( + serialized_name="availableDbNodeStorageInGbs", flags={"read_only": True}, ) - properties.site_provisioning_state = AAZDictType( - serialized_name="siteProvisioningState", + properties.available_memory_in_gbs = AAZIntType( + serialized_name="availableMemoryInGbs", flags={"read_only": True}, ) - properties.static_ip_configuration = AAZListType( - serialized_name="staticIpConfiguration", + properties.available_memory_per_node_in_gbs = AAZIntType( + serialized_name="availableMemoryPerNodeInGbs", + flags={"read_only": True}, ) - properties.vendor_key_fingerprint = AAZStrType( - serialized_name="vendorKeyFingerprint", + properties.core_count_increment = AAZIntType( + serialized_name="coreCountIncrement", flags={"read_only": True}, ) - properties.vendor_name = AAZStrType( - serialized_name="vendorName", + properties.max_storage_count = AAZIntType( + serialized_name="maxStorageCount", flags={"read_only": True}, ) - - sim_policy = cls._schema_on_200.properties.sim_policy - sim_policy.id = AAZStrType( - flags={"required": True}, + properties.maximum_node_count = AAZIntType( + serialized_name="maximumNodeCount", + flags={"read_only": True}, ) - - site_provisioning_state = cls._schema_on_200.properties.site_provisioning_state - site_provisioning_state.Element = AAZStrType( + properties.min_core_count_per_node = AAZIntType( + serialized_name="minCoreCountPerNode", flags={"read_only": True}, ) - - static_ip_configuration = cls._schema_on_200.properties.static_ip_configuration - static_ip_configuration.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.static_ip_configuration.Element - _element.attached_data_network = AAZObjectType( - serialized_name="attachedDataNetwork", + properties.min_data_storage_in_tbs = AAZIntType( + serialized_name="minDataStorageInTbs", + flags={"read_only": True}, ) - _element.slice = AAZObjectType() - _element.static_ip = AAZObjectType( - serialized_name="staticIp", + properties.min_db_node_storage_per_node_in_gbs = AAZIntType( + serialized_name="minDbNodeStoragePerNodeInGbs", + flags={"read_only": True}, ) - - attached_data_network = cls._schema_on_200.properties.static_ip_configuration.Element.attached_data_network - attached_data_network.id = AAZStrType( - flags={"required": True}, + properties.min_memory_per_node_in_gbs = AAZIntType( + serialized_name="minMemoryPerNodeInGbs", + flags={"read_only": True}, ) - - slice = cls._schema_on_200.properties.static_ip_configuration.Element.slice - slice.id = AAZStrType( - flags={"required": True}, + properties.min_storage_count = AAZIntType( + serialized_name="minStorageCount", + flags={"read_only": True}, ) - - static_ip = cls._schema_on_200.properties.static_ip_configuration.Element.static_ip - static_ip.ipv4_address = AAZStrType( - serialized_name="ipv4Address", + properties.minimum_core_count = AAZIntType( + serialized_name="minimumCoreCount", + flags={"read_only": True}, + ) + properties.minimum_node_count = AAZIntType( + serialized_name="minimumNodeCount", + flags={"read_only": True}, + ) + properties.runtime_minimum_core_count = AAZIntType( + serialized_name="runtimeMinimumCoreCount", + flags={"read_only": True}, + ) + properties.shape_family = AAZStrType( + serialized_name="shapeFamily", + flags={"read_only": True}, ) system_data = cls._schema_on_200.system_data @@ -282,8 +279,8 @@ def _build_schema_on_200(cls): return cls._schema_on_200 -class _WaitHelper: - """Helper class for Wait""" +class _ShowHelper: + """Helper class for Show""" -__all__ = ["Wait"] +__all__ = ["Show"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/__cmd_group.py similarity index 90% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/__cmd_group.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/__cmd_group.py index 9a5b8bd7ab2..46a0a6b204c 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/__cmd_group.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/__cmd_group.py @@ -12,10 +12,10 @@ @register_command_group( - "mobile-network service", + "oracle-database db-system", ) class __CMDGroup(AAZCommandGroup): - """Manage service + """Manage Db System """ pass diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/__init__.py similarity index 100% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/__init__.py diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_create.py new file mode 100644 index 00000000000..0caeee23a4a --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_create.py @@ -0,0 +1,595 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database db-system create", +) +class Create(AAZCommand): + """Create a DbSystem + + :example: DbSystems_Create + az oracle-database db-system create --resource-group rgo --db-system-name dbsystem1 --database-edition StandardEdition --admin-password ******** --db-version 19.0.0.0 --resource-anchor-id /subscriptions/00000000-0000-4025-0000-000000000000/resourceGroups/rg001/providers/Oracle.Database/resourceAnchors/resourceanchor1 --network-anchor-id /subscriptions/00000000-0000-4025-0000-000000000000/resourceGroups/rg001/providers/Oracle.Database/networkAnchors/networkanchor1 --cluster-name example --display-name example --initial-data-storage-size-in-gb 19 --db-system-options "{storage-management:LVM}" --disk-redundancy High --hostname krixp --node-count 24 --shape VM.Standard.E5.Flex --ssh-public-keys "[sha-xx]" --storage-volume-performance-mode Balanced --time-zone utc --compute-model ECPU --compute-count 28 --zones "[2]" --tags "{tag:test}" --location eastus + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/dbsystems/{}", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.db_system_name = AAZStrArg( + options=["-n", "--name", "--db-system-name"], + help="The name of the DbSystem", + required=True, + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.admin_password = AAZPasswordArg( + options=["--admin-password"], + arg_group="Properties", + help="A strong password for SYS, SYSTEM, and PDB Admin. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, #, or -.", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + blank=AAZPromptPasswordInput( + msg="Password:", + ), + ) + _args_schema.cluster_name = AAZStrArg( + options=["--cluster-name"], + arg_group="Properties", + help="The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.", + fmt=AAZStrArgFormat( + max_length=11, + min_length=1, + ), + ) + _args_schema.compute_count = AAZIntArg( + options=["--compute-count"], + arg_group="Properties", + help="The number of compute servers for the DB system.", + ) + _args_schema.compute_model = AAZStrArg( + options=["--compute-model"], + arg_group="Properties", + help="The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.", + enum={"ECPU": "ECPU", "OCPU": "OCPU"}, + ) + _args_schema.database_edition = AAZStrArg( + options=["--database-edition"], + arg_group="Properties", + help="The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require EnterpriseEditionExtremePerformance.", + enum={"EnterpriseEdition": "EnterpriseEdition", "EnterpriseEditionDeveloper": "EnterpriseEditionDeveloper", "EnterpriseEditionExtreme": "EnterpriseEditionExtreme", "EnterpriseEditionHighPerformance": "EnterpriseEditionHighPerformance", "StandardEdition": "StandardEdition"}, + ) + _args_schema.db_system_options = AAZObjectArg( + options=["--db-system-options"], + arg_group="Properties", + help="The DB system options.", + ) + _args_schema.db_version = AAZStrArg( + options=["--db-version"], + arg_group="Properties", + help="A valid Oracle Database version. For a list of supported versions, use the ListDbVersions operation.", + ) + _args_schema.disk_redundancy = AAZStrArg( + options=["--disk-redundancy"], + arg_group="Properties", + help="The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.", + enum={"High": "High", "Normal": "Normal"}, + ) + _args_schema.display_name = AAZStrArg( + options=["--display-name"], + arg_group="Properties", + help="The user-friendly name for the DB system. The name does not have to be unique.", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.domain = AAZStrArg( + options=["--domain"], + arg_group="Properties", + help="The domain name for the DB system.", + ) + _args_schema.hostname = AAZStrArg( + options=["--hostname"], + arg_group="Properties", + help="The hostname for the DB system.", + ) + _args_schema.initial_data_storage_size_in_gb = AAZIntArg( + options=["--initial-data-storage-size-in-gb"], + arg_group="Properties", + help="Size in GB of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume.", + default=256, + fmt=AAZIntArgFormat( + minimum=2, + ), + ) + _args_schema.license_model = AAZStrArg( + options=["--license-model"], + arg_group="Properties", + help="The Oracle license model that applies to all the databases on the DB system. The default is LicenseIncluded.", + default="LicenseIncluded", + enum={"BringYourOwnLicense": "BringYourOwnLicense", "LicenseIncluded": "LicenseIncluded"}, + ) + _args_schema.network_anchor_id = AAZResourceIdArg( + options=["--network-anchor-id"], + arg_group="Properties", + help="Azure Network Anchor ID", + ) + _args_schema.node_count = AAZIntArg( + options=["--node-count"], + arg_group="Properties", + help="The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.", + default=1, + fmt=AAZIntArgFormat( + minimum=1, + ), + ) + _args_schema.pdb_name = AAZStrArg( + options=["--pdb-name"], + arg_group="Properties", + help="The name of the pluggable database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. Pluggable database should not be same as database name.", + ) + _args_schema.resource_anchor_id = AAZResourceIdArg( + options=["--resource-anchor-id"], + arg_group="Properties", + help="Azure Resource Anchor ID", + ) + _args_schema.shape = AAZStrArg( + options=["--shape"], + arg_group="Properties", + help="The shape of the DB system. The shape determines resources to allocate to the DB system. For virtual machine shapes, the number of CPU cores and memory. For bare metal and Exadata shapes, the number of CPU cores, storage, and memory.", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.ssh_public_keys = AAZListArg( + options=["--ssh-public-keys"], + arg_group="Properties", + help="The public key portion of one or more key pairs used for SSH access to the DB system.", + ) + _args_schema.storage_volume_performance_mode = AAZStrArg( + options=["--storage-volume-performance-mode"], + arg_group="Properties", + help="The block storage volume performance level. Valid values are Balanced and HighPerformance. See [Block Volume Performance](/Content/Block/Concepts/blockvolumeperformance.htm) for more information.", + enum={"Balanced": "Balanced", "HighPerformance": "HighPerformance"}, + ) + _args_schema.time_zone = AAZStrArg( + options=["--time-zone"], + arg_group="Properties", + help="The time zone of the DB system, e.g., UTC, to set the timeZone as UTC.", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + + db_system_options = cls._args_schema.db_system_options + db_system_options.storage_management = AAZStrArg( + options=["storage-management"], + help="The storage option used in DB system. ASM - Automatic storage management, LVM - Logical Volume management.", + enum={"LVM": "LVM"}, + ) + + ssh_public_keys = cls._args_schema.ssh_public_keys + ssh_public_keys.Element = AAZStrArg( + fmt=AAZStrArgFormat( + max_length=1024, + min_length=1, + ), + ) + + # define Arg Group "Resource" + + _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + arg_group="Resource", + help="The geo-location where the resource lives", + required=True, + fmt=AAZResourceLocationArgFormat( + resource_group_arg="resource_group", + ), + ) + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Resource", + help="Resource tags.", + ) + _args_schema.zones = AAZListArg( + options=["--zones"], + arg_group="Resource", + help="The availability zones.", + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg() + + zones = cls._args_schema.zones + zones.Element = AAZStrArg() + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.DbSystemsCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class DbSystemsCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "dbSystemName", self.ctx.args.db_system_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("tags", AAZDictType, ".tags") + _builder.set_prop("zones", AAZListType, ".zones") + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("adminPassword", AAZStrType, ".admin_password", typ_kwargs={"flags": {"secret": True}}) + properties.set_prop("clusterName", AAZStrType, ".cluster_name") + properties.set_prop("computeCount", AAZIntType, ".compute_count") + properties.set_prop("computeModel", AAZStrType, ".compute_model") + properties.set_prop("databaseEdition", AAZStrType, ".database_edition", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("dbSystemOptions", AAZObjectType, ".db_system_options") + properties.set_prop("dbVersion", AAZStrType, ".db_version", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("diskRedundancy", AAZStrType, ".disk_redundancy") + properties.set_prop("displayName", AAZStrType, ".display_name") + properties.set_prop("domain", AAZStrType, ".domain") + properties.set_prop("hostname", AAZStrType, ".hostname", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("initialDataStorageSizeInGb", AAZIntType, ".initial_data_storage_size_in_gb") + properties.set_prop("licenseModel", AAZStrType, ".license_model") + properties.set_prop("networkAnchorId", AAZStrType, ".network_anchor_id", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("nodeCount", AAZIntType, ".node_count") + properties.set_prop("pdbName", AAZStrType, ".pdb_name") + properties.set_prop("resourceAnchorId", AAZStrType, ".resource_anchor_id", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("shape", AAZStrType, ".shape", typ_kwargs={"flags": {"required": True}}) + properties.set_const("source", "None", AAZStrType, ".", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("sshPublicKeys", AAZListType, ".ssh_public_keys", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("storageVolumePerformanceMode", AAZStrType, ".storage_volume_performance_mode") + properties.set_prop("timeZone", AAZStrType, ".time_zone") + + db_system_options = _builder.get(".properties.dbSystemOptions") + if db_system_options is not None: + db_system_options.set_prop("storageManagement", AAZStrType, ".storage_management") + + ssh_public_keys = _builder.get(".properties.sshPublicKeys") + if ssh_public_keys is not None: + ssh_public_keys.set_elements(AAZStrType, ".") + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + zones = _builder.get(".zones") + if zones is not None: + zones.set_elements(AAZStrType, ".") + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.zones = AAZListType() + + properties = cls._schema_on_200_201.properties + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.compute_count = AAZIntType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + flags={"required": True}, + ) + properties.db_system_options = AAZObjectType( + serialized_name="dbSystemOptions", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + flags={"required": True}, + ) + properties.disk_redundancy = AAZStrType( + serialized_name="diskRedundancy", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.domain = AAZStrType() + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.network_anchor_id = AAZStrType( + serialized_name="networkAnchorId", + flags={"required": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_ips = AAZListType( + serialized_name="scanIps", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.source = AAZStrType( + flags={"required": True}, + ) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.storage_volume_performance_mode = AAZStrType( + serialized_name="storageVolumePerformanceMode", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.version = AAZStrType( + flags={"read_only": True}, + ) + + db_system_options = cls._schema_on_200_201.properties.db_system_options + db_system_options.storage_management = AAZStrType( + serialized_name="storageManagement", + ) + + scan_ips = cls._schema_on_200_201.properties.scan_ips + scan_ips.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200_201.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200_201.zones + zones.Element = AAZStrType() + + return cls._schema_on_200_201 + + +class _CreateHelper: + """Helper class for Create""" + + +__all__ = ["Create"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_delete.py similarity index 81% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_delete.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_delete.py index 9c57965dbd4..1f4b13fd5ab 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_delete.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_delete.py @@ -12,20 +12,20 @@ @register_command( - "mobile-network sim group delete", + "oracle-database db-system delete", confirmation="Are you sure you want to perform this operation?", ) class Delete(AAZCommand): - """Delete the specified SIM group. + """Delete a DbSystem - :example: Delete sim group - az mobile-network sim group delete -n sim-group-name -g rg -y + :example: DbSystems_Delete_MaximumSet + az oracle-database db-system delete --resource-group rg --db-system-name dbsystem1 """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/dbsystems/{}", "2025-09-01"], ] } @@ -46,24 +46,23 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["-n", "--name", "--sim-group-name"], - help="The name of the SIM Group.", + _args_schema.db_system_name = AAZStrArg( + options=["-n", "--name", "--db-system-name"], + help="The name of the DbSystem", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) return cls._args_schema def _execute_operations(self): self.pre_operations() - yield self.SimGroupsDelete(ctx=self.ctx)() + yield self.DbSystemsDelete(ctx=self.ctx)() self.post_operations() @register_callback @@ -74,7 +73,7 @@ def pre_operations(self): def post_operations(self): pass - class SimGroupsDelete(AAZHttpOperation): + class DbSystemsDelete(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -84,25 +83,25 @@ def __call__(self, *args, **kwargs): return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [200]: + if session.http_response.status_code in [204]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_204, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [204]: + if session.http_response.status_code in [200, 201]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_204, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, @@ -113,7 +112,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}", **self.url_parameters ) @@ -129,11 +128,11 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "dbSystemName", self.ctx.args.db_system_name, required=True, ), **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, + "resourceGroupName", self.ctx.args.resource_group, required=True, ), **self.serialize_url_param( @@ -147,16 +146,16 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } return parameters - def on_200(self, session): + def on_204(self, session): pass - def on_204(self, session): + def on_200_201(self, session): pass diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_list.py new file mode 100644 index 00000000000..710e7902ab0 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_list.py @@ -0,0 +1,583 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database db-system list", +) +class List(AAZCommand): + """List DbSystem resources by subscription ID + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/dbsystems", "2025-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/dbsystems", "2025-09-01"], + ] + } + + AZ_SUPPORT_PAGINATION = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_paging(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg() + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + condition_0 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_1 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) + if condition_0: + self.DbSystemsListBySubscription(ctx=self.ctx)() + if condition_1: + self.DbSystemsListByResourceGroup(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) + next_link = self.deserialize_output(self.ctx.vars.instance.next_link) + return result, next_link + + class DbSystemsListBySubscription(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/dbSystems", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + _element.zones = AAZListType() + + properties = cls._schema_on_200.value.Element.properties + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.compute_count = AAZIntType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + flags={"required": True}, + ) + properties.db_system_options = AAZObjectType( + serialized_name="dbSystemOptions", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + flags={"required": True}, + ) + properties.disk_redundancy = AAZStrType( + serialized_name="diskRedundancy", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.domain = AAZStrType() + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + flags={"read_only": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.network_anchor_id = AAZStrType( + serialized_name="networkAnchorId", + flags={"required": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_ips = AAZListType( + serialized_name="scanIps", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.source = AAZStrType( + flags={"required": True}, + ) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.storage_volume_performance_mode = AAZStrType( + serialized_name="storageVolumePerformanceMode", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.version = AAZStrType( + flags={"read_only": True}, + ) + + db_system_options = cls._schema_on_200.value.Element.properties.db_system_options + db_system_options.storage_management = AAZStrType( + serialized_name="storageManagement", + ) + + scan_ips = cls._schema_on_200.value.Element.properties.scan_ips + scan_ips.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.value.Element.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.value.Element.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + class DbSystemsListByResourceGroup(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + _element.zones = AAZListType() + + properties = cls._schema_on_200.value.Element.properties + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.compute_count = AAZIntType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + flags={"required": True}, + ) + properties.db_system_options = AAZObjectType( + serialized_name="dbSystemOptions", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + flags={"required": True}, + ) + properties.disk_redundancy = AAZStrType( + serialized_name="diskRedundancy", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.domain = AAZStrType() + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + flags={"read_only": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.network_anchor_id = AAZStrType( + serialized_name="networkAnchorId", + flags={"required": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_ips = AAZListType( + serialized_name="scanIps", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.source = AAZStrType( + flags={"required": True}, + ) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.storage_volume_performance_mode = AAZStrType( + serialized_name="storageVolumePerformanceMode", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.version = AAZStrType( + flags={"read_only": True}, + ) + + db_system_options = cls._schema_on_200.value.Element.properties.db_system_options + db_system_options.storage_management = AAZStrType( + serialized_name="storageManagement", + ) + + scan_ips = cls._schema_on_200.value.Element.properties.scan_ips + scan_ips.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.value.Element.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.value.Element.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + +__all__ = ["List"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_show.py new file mode 100644 index 00000000000..b215ad57643 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_show.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. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database db-system show", +) +class Show(AAZCommand): + """Get a DbSystem + + :example: DbSystems_Get + az oracle-database db-system show --resource-group rg --db-system-name dbsystem1 + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/dbsystems/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.db_system_name = AAZStrArg( + options=["-n", "--name", "--db-system-name"], + help="The name of the DbSystem", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.DbSystemsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class DbSystemsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "dbSystemName", self.ctx.args.db_system_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType() + + properties = cls._schema_on_200.properties + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.compute_count = AAZIntType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + flags={"required": True}, + ) + properties.db_system_options = AAZObjectType( + serialized_name="dbSystemOptions", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + flags={"required": True}, + ) + properties.disk_redundancy = AAZStrType( + serialized_name="diskRedundancy", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.domain = AAZStrType() + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.network_anchor_id = AAZStrType( + serialized_name="networkAnchorId", + flags={"required": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_ips = AAZListType( + serialized_name="scanIps", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.source = AAZStrType( + flags={"required": True}, + ) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.storage_volume_performance_mode = AAZStrType( + serialized_name="storageVolumePerformanceMode", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.version = AAZStrType( + flags={"read_only": True}, + ) + + db_system_options = cls._schema_on_200.properties.db_system_options + db_system_options.storage_management = AAZStrType( + serialized_name="storageManagement", + ) + + scan_ips = cls._schema_on_200.properties.scan_ips + scan_ips.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_update.py similarity index 58% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_update.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_update.py index e6dd7869acc..35cec750bad 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_update.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_update.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network slice update", + "oracle-database db-system update", ) class Update(AAZCommand): - """Update a network slice. + """Update a DbSystem - :example: Update slie tags - az mobile-network slice update --mobile-network-name mobile-network-name -n slice-name -g rg --tags "{tag:test,tag2:test2}" + :example: DbSystems_CreateOrUpdate_MaximumSet + az oracle-database db-system update --resource-group rg --db-system-name dbsystem1 --zones "[2]" --tags "{example:test}" """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/slices/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/dbsystems/{}", "2025-09-01"], ] } @@ -47,87 +47,54 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.db_system_name = AAZStrArg( + options=["-n", "--name", "--db-system-name"], + help="The name of the DbSystem", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.slice_name = AAZStrArg( - options=["-n", "--name", "--slice-name"], - help="The name of the network slice.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - # define Arg Group "Parameters" + # define Arg Group "Resource" _args_schema = cls._args_schema _args_schema.tags = AAZDictArg( options=["--tags"], - arg_group="Parameters", + arg_group="Resource", help="Resource tags.", nullable=True, ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg( + _args_schema.zones = AAZListArg( + options=["--zones"], + arg_group="Resource", + help="The availability zones.", nullable=True, ) - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.description = AAZStrArg( - options=["--description"], - arg_group="Properties", - help="An optional description for this network slice.", + tags = cls._args_schema.tags + tags.Element = AAZStrArg( nullable=True, ) - _args_schema.snssai = AAZObjectArg( - options=["--snssai"], - arg_group="Properties", - help="Single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.", - ) - snssai = cls._args_schema.snssai - snssai.sd = AAZStrArg( - options=["sd"], - help="Slice differentiator (SD).", + zones = cls._args_schema.zones + zones.Element = AAZStrArg( nullable=True, - fmt=AAZStrArgFormat( - pattern="^[A-Fa-f0-9]{6}$", - ), - ) - snssai.sst = AAZIntArg( - options=["sst"], - help="Slice/service type (SST).", - fmt=AAZIntArgFormat( - maximum=255, - minimum=0, - ), ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.SlicesGet(ctx=self.ctx)() + self.DbSystemsGet(ctx=self.ctx)() self.pre_instance_update(self.ctx.vars.instance) self.InstanceUpdateByJson(ctx=self.ctx)() self.InstanceUpdateByGeneric(ctx=self.ctx)() self.post_instance_update(self.ctx.vars.instance) - yield self.SlicesCreateOrUpdate(ctx=self.ctx)() + yield self.DbSystemsCreateOrUpdate(ctx=self.ctx)() self.post_operations() @register_callback @@ -150,7 +117,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class SlicesGet(AAZHttpOperation): + class DbSystemsGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -164,7 +131,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}", **self.url_parameters ) @@ -180,17 +147,13 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "dbSystemName", self.ctx.args.db_system_name, required=True, ), **self.serialize_url_param( "resourceGroupName", self.ctx.args.resource_group, required=True, ), - **self.serialize_url_param( - "sliceName", self.ctx.args.slice_name, - required=True, - ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -202,7 +165,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -233,11 +196,11 @@ def _build_schema_on_200(cls): return cls._schema_on_200 cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_slice_read(cls._schema_on_200) + _UpdateHelper._build_schema_db_system_read(cls._schema_on_200) return cls._schema_on_200 - class SlicesCreateOrUpdate(AAZHttpOperation): + class DbSystemsCreateOrUpdate(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -267,7 +230,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}", **self.url_parameters ) @@ -283,17 +246,13 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "dbSystemName", self.ctx.args.db_system_name, required=True, ), **self.serialize_url_param( "resourceGroupName", self.ctx.args.resource_group, required=True, ), - **self.serialize_url_param( - "sliceName", self.ctx.args.slice_name, - required=True, - ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -305,7 +264,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -348,7 +307,7 @@ def _build_schema_on_200_201(cls): return cls._schema_on_200_201 cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_slice_read(cls._schema_on_200_201) + _UpdateHelper._build_schema_db_system_read(cls._schema_on_200_201) return cls._schema_on_200_201 @@ -363,23 +322,17 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) _builder.set_prop("tags", AAZDictType, ".tags") - - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("description", AAZStrType, ".description") - properties.set_prop("snssai", AAZObjectType, ".snssai", typ_kwargs={"flags": {"required": True}}) - - snssai = _builder.get(".properties.snssai") - if snssai is not None: - snssai.set_prop("sd", AAZStrType, ".sd") - snssai.set_prop("sst", AAZIntType, ".sst", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("zones", AAZListType, ".zones") tags = _builder.get(".tags") if tags is not None: tags.set_elements(AAZStrType, ".") + zones = _builder.get(".zones") + if zones is not None: + zones.set_elements(AAZStrType, ".") + return _instance_value class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): @@ -394,61 +347,165 @@ def __call__(self, *args, **kwargs): class _UpdateHelper: """Helper class for Update""" - _schema_slice_read = None + _schema_db_system_read = None @classmethod - def _build_schema_slice_read(cls, _schema): - if cls._schema_slice_read is not None: - _schema.id = cls._schema_slice_read.id - _schema.location = cls._schema_slice_read.location - _schema.name = cls._schema_slice_read.name - _schema.properties = cls._schema_slice_read.properties - _schema.system_data = cls._schema_slice_read.system_data - _schema.tags = cls._schema_slice_read.tags - _schema.type = cls._schema_slice_read.type + def _build_schema_db_system_read(cls, _schema): + if cls._schema_db_system_read is not None: + _schema.id = cls._schema_db_system_read.id + _schema.location = cls._schema_db_system_read.location + _schema.name = cls._schema_db_system_read.name + _schema.properties = cls._schema_db_system_read.properties + _schema.system_data = cls._schema_db_system_read.system_data + _schema.tags = cls._schema_db_system_read.tags + _schema.type = cls._schema_db_system_read.type + _schema.zones = cls._schema_db_system_read.zones return - cls._schema_slice_read = _schema_slice_read = AAZObjectType() + cls._schema_db_system_read = _schema_db_system_read = AAZObjectType() - slice_read = _schema_slice_read - slice_read.id = AAZStrType( + db_system_read = _schema_db_system_read + db_system_read.id = AAZStrType( flags={"read_only": True}, ) - slice_read.location = AAZStrType( + db_system_read.location = AAZStrType( flags={"required": True}, ) - slice_read.name = AAZStrType( + db_system_read.name = AAZStrType( flags={"read_only": True}, ) - slice_read.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, + db_system_read.properties = AAZObjectType( + flags={"client_flatten": True}, ) - slice_read.system_data = AAZObjectType( + db_system_read.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - slice_read.tags = AAZDictType() - slice_read.type = AAZStrType( + db_system_read.tags = AAZDictType() + db_system_read.type = AAZStrType( flags={"read_only": True}, ) + db_system_read.zones = AAZListType() - properties = _schema_slice_read.properties - properties.description = AAZStrType() + properties = _schema_db_system_read.properties + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.compute_count = AAZIntType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + flags={"required": True}, + ) + properties.db_system_options = AAZObjectType( + serialized_name="dbSystemOptions", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + flags={"required": True}, + ) + properties.disk_redundancy = AAZStrType( + serialized_name="diskRedundancy", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.domain = AAZStrType() + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.network_anchor_id = AAZStrType( + serialized_name="networkAnchorId", + flags={"required": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - properties.snssai = AAZObjectType( + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", flags={"required": True}, ) - - snssai = _schema_slice_read.properties.snssai - snssai.sd = AAZStrType() - snssai.sst = AAZIntType( + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_ips = AAZListType( + serialized_name="scanIps", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.source = AAZStrType( + flags={"required": True}, + ) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", flags={"required": True}, ) + properties.storage_volume_performance_mode = AAZStrType( + serialized_name="storageVolumePerformanceMode", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.version = AAZStrType( + flags={"read_only": True}, + ) + + db_system_options = _schema_db_system_read.properties.db_system_options + db_system_options.storage_management = AAZStrType( + serialized_name="storageManagement", + ) + + scan_ips = _schema_db_system_read.properties.scan_ips + scan_ips.Element = AAZStrType() + + ssh_public_keys = _schema_db_system_read.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() - system_data = _schema_slice_read.system_data + system_data = _schema_db_system_read.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", ) @@ -468,16 +525,20 @@ def _build_schema_slice_read(cls, _schema): serialized_name="lastModifiedByType", ) - tags = _schema_slice_read.tags + tags = _schema_db_system_read.tags tags.Element = AAZStrType() - _schema.id = cls._schema_slice_read.id - _schema.location = cls._schema_slice_read.location - _schema.name = cls._schema_slice_read.name - _schema.properties = cls._schema_slice_read.properties - _schema.system_data = cls._schema_slice_read.system_data - _schema.tags = cls._schema_slice_read.tags - _schema.type = cls._schema_slice_read.type + zones = _schema_db_system_read.zones + zones.Element = AAZStrType() + + _schema.id = cls._schema_db_system_read.id + _schema.location = cls._schema_db_system_read.location + _schema.name = cls._schema_db_system_read.name + _schema.properties = cls._schema_db_system_read.properties + _schema.system_data = cls._schema_db_system_read.system_data + _schema.tags = cls._schema_db_system_read.tags + _schema.type = cls._schema_db_system_read.type + _schema.zones = cls._schema_db_system_read.zones __all__ = ["Update"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_wait.py new file mode 100644 index 00000000000..79091d2ab9e --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system/_wait.py @@ -0,0 +1,328 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database db-system wait", +) +class Wait(AAZWaitCommand): + """Place the CLI in a waiting state until a condition is met. + """ + + _aaz_info = { + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/dbsystems/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.db_system_name = AAZStrArg( + options=["-n", "--name", "--db-system-name"], + help="The name of the DbSystem", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.DbSystemsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) + return result + + class DbSystemsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "dbSystemName", self.ctx.args.db_system_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType() + + properties = cls._schema_on_200.properties + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.compute_count = AAZIntType( + serialized_name="computeCount", + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + ) + properties.data_storage_size_in_gbs = AAZIntType( + serialized_name="dataStorageSizeInGbs", + flags={"read_only": True}, + ) + properties.database_edition = AAZStrType( + serialized_name="databaseEdition", + flags={"required": True}, + ) + properties.db_system_options = AAZObjectType( + serialized_name="dbSystemOptions", + ) + properties.db_version = AAZStrType( + serialized_name="dbVersion", + flags={"required": True}, + ) + properties.disk_redundancy = AAZStrType( + serialized_name="diskRedundancy", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.domain = AAZStrType() + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.network_anchor_id = AAZStrType( + serialized_name="networkAnchorId", + flags={"required": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_ips = AAZListType( + serialized_name="scanIps", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.source = AAZStrType( + flags={"required": True}, + ) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.storage_volume_performance_mode = AAZStrType( + serialized_name="storageVolumePerformanceMode", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.version = AAZStrType( + flags={"read_only": True}, + ) + + db_system_options = cls._schema_on_200.properties.db_system_options + db_system_options.storage_management = AAZStrType( + serialized_name="storageManagement", + ) + + scan_ips = cls._schema_on_200.properties.scan_ips + scan_ips.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _WaitHelper: + """Helper class for Wait""" + + +__all__ = ["Wait"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/__cmd_group.py new file mode 100644 index 00000000000..875b0ecc6be --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "oracle-database db-system-db-version", +) +class __CMDGroup(AAZCommandGroup): + """Manage Db System Db Version + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/__init__.py similarity index 100% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/__init__.py diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/_list.py new file mode 100644 index 00000000000..1ceddc6461a --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/_list.py @@ -0,0 +1,264 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database db-system-db-version list", +) +class List(AAZCommand): + """List DbVersion resources by SubscriptionLocationResource + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dbsystemdbversions", "2025-09-01"], + ] + } + + AZ_SUPPORT_PAGINATION = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_paging(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + required=True, + ) + _args_schema.db_system_id = AAZStrArg( + options=["--db-system-id"], + help="The DB system AzureId. If provided, filters the results to the set of database versions which are supported for the DB system.", + ) + _args_schema.db_system_shape = AAZStrArg( + options=["--db-system-shape"], + help="If provided, filters the results to the set of database versions which are supported for the given shape. e.g., VM.Standard.E5.Flex", + enum={"VM.Standard.x86": "VM.Standard.x86"}, + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.is_database_software_image_supported = AAZBoolArg( + options=["--is-database-software-image-supported"], + help="If true, filters the results to the set of Oracle Database versions that are supported for the database software images.", + ) + _args_schema.is_upgrade_supported = AAZBoolArg( + options=["--is-upgrade-supported"], + help="If true, filters the results to the set of database versions which are supported for Upgrade.", + ) + _args_schema.shape_family = AAZStrArg( + options=["--shape-family"], + help="If provided, filters the results to the set of database versions which are supported for the given shape family.", + enum={"EXADATA": "EXADATA", "EXADB_XS": "EXADB_XS", "SINGLENODE": "SINGLENODE", "VIRTUALMACHINE": "VIRTUALMACHINE"}, + ) + _args_schema.storage_management = AAZStrArg( + options=["--storage-management"], + help="The DB system storage management option. Used to list database versions available for that storage manager. Valid values are ASM and LVM.", + enum={"LVM": "LVM"}, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.DbVersionsListByLocation(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) + next_link = self.deserialize_output(self.ctx.vars.instance.next_link) + return result, next_link + + class DbVersionsListByLocation(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dbSystemDbVersions", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "dbSystemId", self.ctx.args.db_system_id, + ), + **self.serialize_query_param( + "dbSystemShape", self.ctx.args.db_system_shape, + ), + **self.serialize_query_param( + "isDatabaseSoftwareImageSupported", self.ctx.args.is_database_software_image_supported, + ), + **self.serialize_query_param( + "isUpgradeSupported", self.ctx.args.is_upgrade_supported, + ), + **self.serialize_query_param( + "shapeFamily", self.ctx.args.shape_family, + ), + **self.serialize_query_param( + "storageManagement", self.ctx.args.storage_management, + ), + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.is_latest_for_major_version = AAZBoolType( + serialized_name="isLatestForMajorVersion", + ) + properties.is_preview_db_version = AAZBoolType( + serialized_name="isPreviewDbVersion", + ) + properties.is_upgrade_supported = AAZBoolType( + serialized_name="isUpgradeSupported", + ) + properties.supports_pdb = AAZBoolType( + serialized_name="supportsPdb", + ) + properties.version = AAZStrType( + flags={"required": True}, + ) + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + +__all__ = ["List"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/_show.py new file mode 100644 index 00000000000..32aeb700317 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/db_system_db_version/_show.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. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database db-system-db-version show", +) +class Show(AAZCommand): + """Get a DbVersion + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dbsystemdbversions/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.dbversionsname = AAZStrArg( + options=["-n", "--name", "--dbversionsname"], + help="DbVersion name", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.location = AAZResourceLocationArg( + required=True, + id_part="name", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.DbVersionsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class DbVersionsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dbSystemDbVersions/{dbversionsname}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "dbversionsname", self.ctx.args.dbversionsname, + required=True, + ), + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.is_latest_for_major_version = AAZBoolType( + serialized_name="isLatestForMajorVersion", + ) + properties.is_preview_db_version = AAZBoolType( + serialized_name="isPreviewDbVersion", + ) + properties.is_upgrade_supported = AAZBoolType( + serialized_name="isUpgradeSupported", + ) + properties.supports_pdb = AAZBoolType( + serialized_name="supportsPdb", + ) + properties.version = AAZStrType( + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/__init__.py index d63ae5a6fc9..2df85698253 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/__init__.py @@ -10,3 +10,4 @@ from .__cmd_group import * from ._list import * +from ._show import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/_list.py index 3291eefb3dd..2ec6235daf1 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dnsprivateviews", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dnsprivateviews", "2025-09-01"], ] } @@ -112,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -162,9 +162,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -176,14 +174,15 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.value.Element.properties properties.display_name = AAZStrType( serialized_name="displayName", - flags={"read_only": True}, + flags={"required": True}, ) properties.is_protected = AAZBoolType( serialized_name="isProtected", - flags={"required": True, "read_only": True}, + flags={"required": True}, ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"required": True}, ) properties.ocid = AAZStrType( flags={"required": True}, @@ -193,15 +192,15 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) properties.self = AAZStrType( - flags={"required": True, "read_only": True}, + flags={"required": True}, ) properties.time_created = AAZStrType( serialized_name="timeCreated", - flags={"required": True, "read_only": True}, + flags={"required": True}, ) properties.time_updated = AAZStrType( serialized_name="timeUpdated", - flags={"required": True, "read_only": True}, + flags={"required": True}, ) system_data = cls._schema_on_200.value.Element.system_data diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/_show.py similarity index 73% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_wait.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/_show.py index 0f32a6599b8..98fd6ae4472 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_view/_show.py @@ -12,15 +12,19 @@ @register_command( - "mobile-network wait", + "oracle-database dns-private-view show", ) -class Wait(AAZWaitCommand): - """Place the CLI in a waiting state until a condition is met. +class Show(AAZCommand): + """Get a DnsPrivateView + + :example: Get DNS Private View + az oracle-database dns-private-view show --location --name """ _aaz_info = { + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dnsprivateviews/{}", "2025-09-01"], ] } @@ -40,24 +44,26 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["-n", "--name", "--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.dnsprivateviewocid = AAZStrArg( + options=["-n", "--name", "--dnsprivateviewocid"], + help="DnsPrivateView OCID", required=True, - id_part="name", + id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", + max_length=255, + min_length=1, ), ) - _args_schema.resource_group = AAZResourceGroupNameArg( + _args_schema.location = AAZResourceLocationArg( required=True, + id_part="name", ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.MobileNetworksGet(ctx=self.ctx)() + self.DnsPrivateViewsGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -69,10 +75,10 @@ def post_operations(self): pass def _output(self, *args, **kwargs): - result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class MobileNetworksGet(AAZHttpOperation): + class DnsPrivateViewsGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -86,7 +92,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dnsPrivateViews/{dnsprivateviewocid}", **self.url_parameters ) @@ -102,11 +108,11 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "dnsprivateviewocid", self.ctx.args.dnsprivateviewocid, required=True, ), **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "location", self.ctx.args.location, required=True, ), **self.serialize_url_param( @@ -120,7 +126,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -156,43 +162,47 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - _schema_on_200.tags = AAZDictType() _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.properties + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.is_protected = AAZBoolType( + serialized_name="isProtected", + flags={"required": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"required": True}, + ) + properties.ocid = AAZStrType( + flags={"required": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - properties.public_land_mobile_network_identifier = AAZObjectType( - serialized_name="publicLandMobileNetworkIdentifier", + properties.self = AAZStrType( flags={"required": True}, ) - properties.service_key = AAZStrType( - serialized_name="serviceKey", - flags={"read_only": True}, - ) - - public_land_mobile_network_identifier = cls._schema_on_200.properties.public_land_mobile_network_identifier - public_land_mobile_network_identifier.mcc = AAZStrType( + properties.time_created = AAZStrType( + serialized_name="timeCreated", flags={"required": True}, ) - public_land_mobile_network_identifier.mnc = AAZStrType( + properties.time_updated = AAZStrType( + serialized_name="timeUpdated", flags={"required": True}, ) @@ -216,14 +226,11 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - return cls._schema_on_200 -class _WaitHelper: - """Helper class for Wait""" +class _ShowHelper: + """Helper class for Show""" -__all__ = ["Wait"] +__all__ = ["Show"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/__init__.py index d63ae5a6fc9..2df85698253 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/__init__.py @@ -10,3 +10,4 @@ from .__cmd_group import * from ._list import * +from ._show import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/_list.py index 2400e83484b..56a80f02323 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dnsprivatezones", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dnsprivatezones", "2025-09-01"], ] } @@ -112,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -162,9 +162,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -176,10 +174,11 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.value.Element.properties properties.is_protected = AAZBoolType( serialized_name="isProtected", - flags={"required": True, "read_only": True}, + flags={"required": True}, ) properties.lifecycle_state = AAZStrType( serialized_name="lifecycleState", + flags={"required": True}, ) properties.ocid = AAZStrType( flags={"required": True}, @@ -189,17 +188,17 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) properties.self = AAZStrType( - flags={"required": True, "read_only": True}, + flags={"required": True}, ) properties.serial = AAZIntType( - flags={"required": True, "read_only": True}, + flags={"required": True}, ) properties.time_created = AAZStrType( serialized_name="timeCreated", - flags={"required": True, "read_only": True}, + flags={"required": True}, ) properties.version = AAZStrType( - flags={"required": True, "read_only": True}, + flags={"required": True}, ) properties.view_id = AAZStrType( serialized_name="viewId", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/_show.py new file mode 100644 index 00000000000..fdf42bccff5 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/dns_private_zone/_show.py @@ -0,0 +1,239 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database dns-private-zone show", +) +class Show(AAZCommand): + """Get a DnsPrivateZone + + :example: Get DNS Private Zone + az oracle-database dns-private-zone show --location --name + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/dnsprivatezones/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.dnsprivatezonename = AAZStrArg( + options=["-n", "--name", "--dnsprivatezonename"], + help="DnsPrivateZone name", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.location = AAZResourceLocationArg( + required=True, + id_part="name", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.DnsPrivateZonesGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class DnsPrivateZonesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dnsPrivateZones/{dnsprivatezonename}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "dnsprivatezonename", self.ctx.args.dnsprivatezonename, + required=True, + ), + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.is_protected = AAZBoolType( + serialized_name="isProtected", + flags={"required": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"required": True}, + ) + properties.ocid = AAZStrType( + flags={"required": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.self = AAZStrType( + flags={"required": True}, + ) + properties.serial = AAZIntType( + flags={"required": True}, + ) + properties.time_created = AAZStrType( + serialized_name="timeCreated", + flags={"required": True}, + ) + properties.version = AAZStrType( + flags={"required": True}, + ) + properties.view_id = AAZStrType( + serialized_name="viewId", + ) + properties.zone_type = AAZStrType( + serialized_name="zoneType", + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/__cmd_group.py new file mode 100644 index 00000000000..d0ee6743397 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "oracle-database exadb-vm-cluster", +) +class __CMDGroup(AAZCommandGroup): + """Manage Exadb Vm Cluster + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/__init__.py similarity index 95% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/__init__.py index db73033039b..fdc6275f237 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/__init__.py @@ -12,6 +12,7 @@ from ._create import * from ._delete import * from ._list import * +from ._remove_vm import * from ._show import * from ._update import * from ._wait import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_create.py new file mode 100644 index 00000000000..b57bc49587f --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_create.py @@ -0,0 +1,809 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database exadb-vm-cluster create", +) +class Create(AAZCommand): + """Create a ExadbVmCluster + + :example: Create ExadbVmClusters + az oracle-database exadb-vm-cluster create --resource-group rg --exadb-vm-cluster-name vmcluster1 --vnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg000/providers/Microsoft.Network/virtualNetworks/vnet1 --subnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg000/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1 --display-name test --domain test --enabled-ecpu-count 16 --exascale-db-storage-vault-id /subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/exascaleDbStorageVaults/storageVaultName --grid-image-ocid ocid1.autonomousdatabase.oc1..aaaaa3klq --hostname test --license-model LicenseIncluded --node-count 4 --shape EXADBXS --ssh-public-keys "[ssh-rsa abscde]" --system-version 25.1.7.0.0.250804 --time-zone UTC --total-ecpu-count 32 --vm-file-system-storage "{total-size-in-gbs:300}" --zones "[2]" --tags "{key:tags}" --location eastus + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exadbvmclusters/{}", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.exadb_vm_cluster_name = AAZStrArg( + options=["-n", "--name", "--exadb-vm-cluster-name"], + help="The name of the ExadbVmCluster", + required=True, + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.backup_subnet_cidr = AAZStrArg( + options=["--backup-subnet-cidr"], + arg_group="Properties", + help="Client OCI backup subnet CIDR, default is 192.168.252.0/22", + fmt=AAZStrArgFormat( + max_length=32, + min_length=1, + ), + ) + _args_schema.cluster_name = AAZStrArg( + options=["--cluster-name"], + arg_group="Properties", + help="The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.", + fmt=AAZStrArgFormat( + max_length=11, + min_length=1, + ), + ) + _args_schema.data_collection_options = AAZObjectArg( + options=["--data-collection-options"], + arg_group="Properties", + help="Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.", + ) + _args_schema.display_name = AAZStrArg( + options=["--display-name"], + arg_group="Properties", + help="Display Name", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.domain = AAZStrArg( + options=["--domain"], + arg_group="Properties", + help="A domain name used for the Exadata VM cluster on Exascale Infrastructure", + ) + _args_schema.enabled_ecpu_count = AAZIntArg( + options=["--enabled-ecpu-count"], + arg_group="Properties", + help="The number of ECPUs to enable for an Exadata VM cluster on Exascale Infrastructure.", + fmt=AAZIntArgFormat( + minimum=0, + ), + ) + _args_schema.exascale_db_storage_vault_id = AAZStrArg( + options=["--exascale-db-storage-vault-id"], + arg_group="Properties", + help="The Azure Resource ID of the Exadata Database Storage Vault.", + ) + _args_schema.grid_image_ocid = AAZStrArg( + options=["--grid-image-ocid"], + arg_group="Properties", + help="Grid Setup will be done using this Grid Image OCID. Can be obtained using giMinorVersions API", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.hostname = AAZStrArg( + options=["--hostname"], + arg_group="Properties", + help="The hostname for the Exadata VM cluster on Exascale Infrastructure.", + fmt=AAZStrArgFormat( + max_length=12, + min_length=1, + ), + ) + _args_schema.license_model = AAZStrArg( + options=["--license-model"], + arg_group="Properties", + help="The Oracle license model that applies to the Exadata VM cluster on Exascale Infrastructure. The default is LICENSE_INCLUDED. ", + enum={"BringYourOwnLicense": "BringYourOwnLicense", "LicenseIncluded": "LicenseIncluded"}, + ) + _args_schema.node_count = AAZIntArg( + options=["--node-count"], + arg_group="Properties", + help="The number of nodes in the Exadata VM cluster on Exascale Infrastructure.", + ) + _args_schema.nsg_cidrs = AAZListArg( + options=["--nsg-cidrs"], + arg_group="Properties", + help="CIDR blocks for additional NSG ingress rules. The VNET CIDRs used to provision the VM Cluster will be added by default.", + ) + _args_schema.private_zone_ocid = AAZStrArg( + options=["--private-zone-ocid"], + arg_group="Properties", + help="The OCID of the zone the Exadata VM cluster on Exascale Infrastructure is associated with.", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.scan_listener_port_tcp = AAZIntArg( + options=["--scan-listener-port-tcp"], + arg_group="Properties", + help="The TCP Single Client Access Name (SCAN) port. The default port is 1521.", + ) + _args_schema.scan_listener_port_tcp_ssl = AAZIntArg( + options=["--scan-listener-port-tcp-ssl"], + arg_group="Properties", + help="The TCPS Single Client Access Name (SCAN) port. The default port is 2484.", + ) + _args_schema.shape = AAZStrArg( + options=["--shape"], + arg_group="Properties", + help="The shape of the Exadata VM cluster on Exascale Infrastructure resource", + ) + _args_schema.shape_attribute = AAZStrArg( + options=["--shape-attribute"], + arg_group="Properties", + help="The type of Exascale storage used for Exadata VM cluster.", + enum={"BLOCK_STORAGE": "BLOCK_STORAGE", "SMART_STORAGE": "SMART_STORAGE"}, + ) + _args_schema.ssh_public_keys = AAZListArg( + options=["--ssh-public-keys"], + arg_group="Properties", + help="The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.", + ) + _args_schema.subnet_id = AAZStrArg( + options=["--subnet-id"], + arg_group="Properties", + help="Client subnet", + ) + _args_schema.system_version = AAZStrArg( + options=["--system-version"], + arg_group="Properties", + help="Operating system version of the image.", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.time_zone = AAZStrArg( + options=["--time-zone"], + arg_group="Properties", + help="The time zone of the Exadata VM cluster on Exascale Infrastructure. For details, see [Exadata Infrastructure Time Zones](/Content/Database/References/timezones.htm).", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.total_ecpu_count = AAZIntArg( + options=["--total-ecpu-count"], + arg_group="Properties", + help="The number of Total ECPUs for an Exadata VM cluster on Exascale Infrastructure.", + fmt=AAZIntArgFormat( + minimum=2, + ), + ) + _args_schema.vm_file_system_storage = AAZObjectArg( + options=["--vm-file-system-storage"], + arg_group="Properties", + help="Filesystem storage details.", + ) + _args_schema.vnet_id = AAZStrArg( + options=["--vnet-id"], + arg_group="Properties", + help="VNET for network connectivity", + ) + + data_collection_options = cls._args_schema.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolArg( + options=["is-diagnostics-events-enabled"], + help="Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS.", + default=False, + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolArg( + options=["is-health-monitoring-enabled"], + help="Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS.", + default=False, + ) + data_collection_options.is_incident_logs_enabled = AAZBoolArg( + options=["is-incident-logs-enabled"], + help="Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS.", + default=False, + ) + + nsg_cidrs = cls._args_schema.nsg_cidrs + nsg_cidrs.Element = AAZObjectArg() + + _element = cls._args_schema.nsg_cidrs.Element + _element.destination_port_range = AAZObjectArg( + options=["destination-port-range"], + help="Destination port range to specify particular destination ports for TCP rules.", + ) + _element.source = AAZStrArg( + options=["source"], + help="Conceptually, this is the range of IP addresses that a packet coming into the instance can come from.", + required=True, + fmt=AAZStrArgFormat( + max_length=128, + min_length=1, + ), + ) + + destination_port_range = cls._args_schema.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntArg( + options=["max"], + help="The maximum port number, which must not be less than the minimum port number. To specify a single port number, set both the min and max to the same value.", + required=True, + fmt=AAZIntArgFormat( + maximum=65535, + minimum=1, + ), + ) + destination_port_range.min = AAZIntArg( + options=["min"], + help="The minimum port number, which must not be greater than the maximum port number.", + required=True, + fmt=AAZIntArgFormat( + maximum=65535, + minimum=1, + ), + ) + + ssh_public_keys = cls._args_schema.ssh_public_keys + ssh_public_keys.Element = AAZStrArg() + + vm_file_system_storage = cls._args_schema.vm_file_system_storage + vm_file_system_storage.total_size_in_gbs = AAZIntArg( + options=["total-size-in-gbs"], + help="Total Capacity", + required=True, + ) + + # define Arg Group "Resource" + + _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + arg_group="Resource", + help="The geo-location where the resource lives", + required=True, + fmt=AAZResourceLocationArgFormat( + resource_group_arg="resource_group", + ), + ) + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Resource", + help="Resource tags.", + ) + _args_schema.zones = AAZListArg( + options=["--zones"], + arg_group="Resource", + help="The availability zones.", + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg() + + zones = cls._args_schema.zones + zones.Element = AAZStrArg() + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.ExadbVmClustersCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ExadbVmClustersCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "exadbVmClusterName", self.ctx.args.exadb_vm_cluster_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("properties", AAZObjectType) + _builder.set_prop("tags", AAZDictType, ".tags") + _builder.set_prop("zones", AAZListType, ".zones") + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("backupSubnetCidr", AAZStrType, ".backup_subnet_cidr") + properties.set_prop("clusterName", AAZStrType, ".cluster_name") + properties.set_prop("dataCollectionOptions", AAZObjectType, ".data_collection_options") + properties.set_prop("displayName", AAZStrType, ".display_name", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("domain", AAZStrType, ".domain") + properties.set_prop("enabledEcpuCount", AAZIntType, ".enabled_ecpu_count", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("exascaleDbStorageVaultId", AAZStrType, ".exascale_db_storage_vault_id", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("gridImageOcid", AAZStrType, ".grid_image_ocid") + properties.set_prop("hostname", AAZStrType, ".hostname", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("licenseModel", AAZStrType, ".license_model") + properties.set_prop("nodeCount", AAZIntType, ".node_count", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("nsgCidrs", AAZListType, ".nsg_cidrs") + properties.set_prop("privateZoneOcid", AAZStrType, ".private_zone_ocid") + properties.set_prop("scanListenerPortTcp", AAZIntType, ".scan_listener_port_tcp") + properties.set_prop("scanListenerPortTcpSsl", AAZIntType, ".scan_listener_port_tcp_ssl") + properties.set_prop("shape", AAZStrType, ".shape", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("shapeAttribute", AAZStrType, ".shape_attribute") + properties.set_prop("sshPublicKeys", AAZListType, ".ssh_public_keys", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("subnetId", AAZStrType, ".subnet_id", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("systemVersion", AAZStrType, ".system_version") + properties.set_prop("timeZone", AAZStrType, ".time_zone") + properties.set_prop("totalEcpuCount", AAZIntType, ".total_ecpu_count", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("vmFileSystemStorage", AAZObjectType, ".vm_file_system_storage", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("vnetId", AAZStrType, ".vnet_id", typ_kwargs={"flags": {"required": True}}) + + data_collection_options = _builder.get(".properties.dataCollectionOptions") + if data_collection_options is not None: + data_collection_options.set_prop("isDiagnosticsEventsEnabled", AAZBoolType, ".is_diagnostics_events_enabled") + data_collection_options.set_prop("isHealthMonitoringEnabled", AAZBoolType, ".is_health_monitoring_enabled") + data_collection_options.set_prop("isIncidentLogsEnabled", AAZBoolType, ".is_incident_logs_enabled") + + nsg_cidrs = _builder.get(".properties.nsgCidrs") + if nsg_cidrs is not None: + nsg_cidrs.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.nsgCidrs[]") + if _elements is not None: + _elements.set_prop("destinationPortRange", AAZObjectType, ".destination_port_range") + _elements.set_prop("source", AAZStrType, ".source", typ_kwargs={"flags": {"required": True}}) + + destination_port_range = _builder.get(".properties.nsgCidrs[].destinationPortRange") + if destination_port_range is not None: + destination_port_range.set_prop("max", AAZIntType, ".max", typ_kwargs={"flags": {"required": True}}) + destination_port_range.set_prop("min", AAZIntType, ".min", typ_kwargs={"flags": {"required": True}}) + + ssh_public_keys = _builder.get(".properties.sshPublicKeys") + if ssh_public_keys is not None: + ssh_public_keys.set_elements(AAZStrType, ".") + + vm_file_system_storage = _builder.get(".properties.vmFileSystemStorage") + if vm_file_system_storage is not None: + vm_file_system_storage.set_prop("totalSizeInGbs", AAZIntType, ".total_size_in_gbs", typ_kwargs={"flags": {"required": True}}) + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + zones = _builder.get(".zones") + if zones is not None: + zones.set_elements(AAZStrType, ".") + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.zones = AAZListType() + + properties = cls._schema_on_200_201.properties + properties.backup_subnet_cidr = AAZStrType( + serialized_name="backupSubnetCidr", + ) + properties.backup_subnet_ocid = AAZStrType( + serialized_name="backupSubnetOcid", + flags={"read_only": True}, + ) + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.data_collection_options = AAZObjectType( + serialized_name="dataCollectionOptions", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.domain = AAZStrType() + properties.enabled_ecpu_count = AAZIntType( + serialized_name="enabledEcpuCount", + flags={"required": True}, + ) + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + flags={"required": True}, + ) + properties.gi_version = AAZStrType( + serialized_name="giVersion", + flags={"read_only": True}, + ) + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.grid_image_type = AAZStrType( + serialized_name="gridImageType", + flags={"read_only": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.iorm_config_cache = AAZObjectType( + serialized_name="iormConfigCache", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + flags={"required": True}, + ) + properties.nsg_cidrs = AAZListType( + serialized_name="nsgCidrs", + ) + properties.nsg_url = AAZStrType( + serialized_name="nsgUrl", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.private_zone_ocid = AAZStrType( + serialized_name="privateZoneOcid", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_dns_record_id = AAZStrType( + serialized_name="scanDnsRecordId", + flags={"read_only": True}, + ) + properties.scan_ip_ids = AAZListType( + serialized_name="scanIpIds", + flags={"read_only": True}, + ) + properties.scan_listener_port_tcp = AAZIntType( + serialized_name="scanListenerPortTcp", + ) + properties.scan_listener_port_tcp_ssl = AAZIntType( + serialized_name="scanListenerPortTcpSsl", + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.shape_attribute = AAZStrType( + serialized_name="shapeAttribute", + ) + properties.snapshot_file_system_storage = AAZObjectType( + serialized_name="snapshotFileSystemStorage", + flags={"read_only": True}, + ) + _CreateHelper._build_schema_exadbvmclusterstoragedetails_read(properties.snapshot_file_system_storage) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.subnet_ocid = AAZStrType( + serialized_name="subnetOcid", + flags={"read_only": True}, + ) + properties.system_version = AAZStrType( + serialized_name="systemVersion", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.total_ecpu_count = AAZIntType( + serialized_name="totalEcpuCount", + flags={"required": True}, + ) + properties.total_file_system_storage = AAZObjectType( + serialized_name="totalFileSystemStorage", + flags={"read_only": True}, + ) + _CreateHelper._build_schema_exadbvmclusterstoragedetails_read(properties.total_file_system_storage) + properties.vip_ids = AAZListType( + serialized_name="vipIds", + flags={"read_only": True}, + ) + properties.vm_file_system_storage = AAZObjectType( + serialized_name="vmFileSystemStorage", + flags={"required": True}, + ) + _CreateHelper._build_schema_exadbvmclusterstoragedetails_read(properties.vm_file_system_storage) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"required": True}, + ) + properties.zone_ocid = AAZStrType( + serialized_name="zoneOcid", + flags={"read_only": True}, + ) + + data_collection_options = cls._schema_on_200_201.properties.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolType( + serialized_name="isDiagnosticsEventsEnabled", + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolType( + serialized_name="isHealthMonitoringEnabled", + ) + data_collection_options.is_incident_logs_enabled = AAZBoolType( + serialized_name="isIncidentLogsEnabled", + ) + + iorm_config_cache = cls._schema_on_200_201.properties.iorm_config_cache + iorm_config_cache.db_plans = AAZListType( + serialized_name="dbPlans", + ) + iorm_config_cache.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + iorm_config_cache.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + iorm_config_cache.objective = AAZStrType() + + db_plans = cls._schema_on_200_201.properties.iorm_config_cache.db_plans + db_plans.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.iorm_config_cache.db_plans.Element + _element.db_name = AAZStrType( + serialized_name="dbName", + ) + _element.flash_cache_limit = AAZStrType( + serialized_name="flashCacheLimit", + ) + _element.share = AAZIntType() + + nsg_cidrs = cls._schema_on_200_201.properties.nsg_cidrs + nsg_cidrs.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.nsg_cidrs.Element + _element.destination_port_range = AAZObjectType( + serialized_name="destinationPortRange", + ) + _element.source = AAZStrType( + flags={"required": True}, + ) + + destination_port_range = cls._schema_on_200_201.properties.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntType( + flags={"required": True}, + ) + destination_port_range.min = AAZIntType( + flags={"required": True}, + ) + + scan_ip_ids = cls._schema_on_200_201.properties.scan_ip_ids + scan_ip_ids.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200_201.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + vip_ids = cls._schema_on_200_201.properties.vip_ids + vip_ids.Element = AAZStrType() + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200_201.zones + zones.Element = AAZStrType() + + return cls._schema_on_200_201 + + +class _CreateHelper: + """Helper class for Create""" + + _schema_exadbvmclusterstoragedetails_read = None + + @classmethod + def _build_schema_exadbvmclusterstoragedetails_read(cls, _schema): + if cls._schema_exadbvmclusterstoragedetails_read is not None: + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + return + + cls._schema_exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read = AAZObjectType() + + exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read + exadbvmclusterstoragedetails_read.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", + flags={"required": True}, + ) + + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + + +__all__ = ["Create"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_delete.py similarity index 80% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_delete.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_delete.py index d9db7695bce..9f61d00d55d 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/_delete.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_delete.py @@ -12,20 +12,20 @@ @register_command( - "mobile-network pccp delete", + "oracle-database exadb-vm-cluster delete", confirmation="Are you sure you want to perform this operation?", ) class Delete(AAZCommand): - """Delete the specified packet core control plane. + """Delete a ExadbVmCluster - :example: Delete Packet Core Control Plane - az mobile-network pccp delete -n pccp-name -g rg -y + :example: ExadbVmClusters_Delete_MaximumSet + az oracle-database exadb-vm-cluster delete --resource-group rgopenapi --exadb-vm-cluster-name exadaVmClusterName1 """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exadbvmclusters/{}", "2025-09-01"], ] } @@ -46,14 +46,13 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["-n", "--name", "--pccp-name"], - help="The name of the packet core control plane.", + _args_schema.exadb_vm_cluster_name = AAZStrArg( + options=["-n", "--name", "--exadb-vm-cluster-name"], + help="The name of the ExadbVmCluster", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( @@ -63,7 +62,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - yield self.PacketCoreControlPlanesDelete(ctx=self.ctx)() + yield self.ExadbVmClustersDelete(ctx=self.ctx)() self.post_operations() @register_callback @@ -74,7 +73,7 @@ def pre_operations(self): def post_operations(self): pass - class PacketCoreControlPlanesDelete(AAZHttpOperation): + class ExadbVmClustersDelete(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -84,25 +83,25 @@ def __call__(self, *args, **kwargs): return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [200]: + if session.http_response.status_code in [204]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_204, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [204]: + if session.http_response.status_code in [200, 201]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_204, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, @@ -113,7 +112,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}", **self.url_parameters ) @@ -129,7 +128,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, + "exadbVmClusterName", self.ctx.args.exadb_vm_cluster_name, required=True, ), **self.serialize_url_param( @@ -147,16 +146,16 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } return parameters - def on_200(self, session): + def on_204(self, session): pass - def on_204(self, session): + def on_200_201(self, session): pass diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_list.py new file mode 100644 index 00000000000..9e3235652e7 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_list.py @@ -0,0 +1,818 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database exadb-vm-cluster list", +) +class List(AAZCommand): + """List ExadbVmCluster resources by subscription ID + + :example: ExadbVmClusters_List + az oracle-database exadb-vm-cluster list + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/exadbvmclusters", "2025-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exadbvmclusters", "2025-09-01"], + ] + } + + AZ_SUPPORT_PAGINATION = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_paging(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg() + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + condition_0 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_1 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) + if condition_0: + self.ExadbVmClustersListBySubscription(ctx=self.ctx)() + if condition_1: + self.ExadbVmClustersListByResourceGroup(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) + next_link = self.deserialize_output(self.ctx.vars.instance.next_link) + return result, next_link + + class ExadbVmClustersListBySubscription(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/exadbVmClusters", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + _element.zones = AAZListType() + + properties = cls._schema_on_200.value.Element.properties + properties.backup_subnet_cidr = AAZStrType( + serialized_name="backupSubnetCidr", + ) + properties.backup_subnet_ocid = AAZStrType( + serialized_name="backupSubnetOcid", + flags={"read_only": True}, + ) + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.data_collection_options = AAZObjectType( + serialized_name="dataCollectionOptions", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.domain = AAZStrType() + properties.enabled_ecpu_count = AAZIntType( + serialized_name="enabledEcpuCount", + flags={"required": True}, + ) + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + flags={"required": True}, + ) + properties.gi_version = AAZStrType( + serialized_name="giVersion", + flags={"read_only": True}, + ) + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.grid_image_type = AAZStrType( + serialized_name="gridImageType", + flags={"read_only": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.iorm_config_cache = AAZObjectType( + serialized_name="iormConfigCache", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + flags={"required": True}, + ) + properties.nsg_cidrs = AAZListType( + serialized_name="nsgCidrs", + ) + properties.nsg_url = AAZStrType( + serialized_name="nsgUrl", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.private_zone_ocid = AAZStrType( + serialized_name="privateZoneOcid", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_dns_record_id = AAZStrType( + serialized_name="scanDnsRecordId", + flags={"read_only": True}, + ) + properties.scan_ip_ids = AAZListType( + serialized_name="scanIpIds", + flags={"read_only": True}, + ) + properties.scan_listener_port_tcp = AAZIntType( + serialized_name="scanListenerPortTcp", + ) + properties.scan_listener_port_tcp_ssl = AAZIntType( + serialized_name="scanListenerPortTcpSsl", + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.shape_attribute = AAZStrType( + serialized_name="shapeAttribute", + ) + properties.snapshot_file_system_storage = AAZObjectType( + serialized_name="snapshotFileSystemStorage", + flags={"read_only": True}, + ) + _ListHelper._build_schema_exadbvmclusterstoragedetails_read(properties.snapshot_file_system_storage) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.subnet_ocid = AAZStrType( + serialized_name="subnetOcid", + flags={"read_only": True}, + ) + properties.system_version = AAZStrType( + serialized_name="systemVersion", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.total_ecpu_count = AAZIntType( + serialized_name="totalEcpuCount", + flags={"required": True}, + ) + properties.total_file_system_storage = AAZObjectType( + serialized_name="totalFileSystemStorage", + flags={"read_only": True}, + ) + _ListHelper._build_schema_exadbvmclusterstoragedetails_read(properties.total_file_system_storage) + properties.vip_ids = AAZListType( + serialized_name="vipIds", + flags={"read_only": True}, + ) + properties.vm_file_system_storage = AAZObjectType( + serialized_name="vmFileSystemStorage", + flags={"required": True}, + ) + _ListHelper._build_schema_exadbvmclusterstoragedetails_read(properties.vm_file_system_storage) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"required": True}, + ) + properties.zone_ocid = AAZStrType( + serialized_name="zoneOcid", + flags={"read_only": True}, + ) + + data_collection_options = cls._schema_on_200.value.Element.properties.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolType( + serialized_name="isDiagnosticsEventsEnabled", + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolType( + serialized_name="isHealthMonitoringEnabled", + ) + data_collection_options.is_incident_logs_enabled = AAZBoolType( + serialized_name="isIncidentLogsEnabled", + ) + + iorm_config_cache = cls._schema_on_200.value.Element.properties.iorm_config_cache + iorm_config_cache.db_plans = AAZListType( + serialized_name="dbPlans", + ) + iorm_config_cache.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + iorm_config_cache.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + iorm_config_cache.objective = AAZStrType() + + db_plans = cls._schema_on_200.value.Element.properties.iorm_config_cache.db_plans + db_plans.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.iorm_config_cache.db_plans.Element + _element.db_name = AAZStrType( + serialized_name="dbName", + ) + _element.flash_cache_limit = AAZStrType( + serialized_name="flashCacheLimit", + ) + _element.share = AAZIntType() + + nsg_cidrs = cls._schema_on_200.value.Element.properties.nsg_cidrs + nsg_cidrs.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.nsg_cidrs.Element + _element.destination_port_range = AAZObjectType( + serialized_name="destinationPortRange", + ) + _element.source = AAZStrType( + flags={"required": True}, + ) + + destination_port_range = cls._schema_on_200.value.Element.properties.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntType( + flags={"required": True}, + ) + destination_port_range.min = AAZIntType( + flags={"required": True}, + ) + + scan_ip_ids = cls._schema_on_200.value.Element.properties.scan_ip_ids + scan_ip_ids.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.value.Element.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + vip_ids = cls._schema_on_200.value.Element.properties.vip_ids + vip_ids.Element = AAZStrType() + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.value.Element.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + class ExadbVmClustersListByResourceGroup(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + _element.zones = AAZListType() + + properties = cls._schema_on_200.value.Element.properties + properties.backup_subnet_cidr = AAZStrType( + serialized_name="backupSubnetCidr", + ) + properties.backup_subnet_ocid = AAZStrType( + serialized_name="backupSubnetOcid", + flags={"read_only": True}, + ) + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.data_collection_options = AAZObjectType( + serialized_name="dataCollectionOptions", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.domain = AAZStrType() + properties.enabled_ecpu_count = AAZIntType( + serialized_name="enabledEcpuCount", + flags={"required": True}, + ) + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + flags={"required": True}, + ) + properties.gi_version = AAZStrType( + serialized_name="giVersion", + flags={"read_only": True}, + ) + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.grid_image_type = AAZStrType( + serialized_name="gridImageType", + flags={"read_only": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.iorm_config_cache = AAZObjectType( + serialized_name="iormConfigCache", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + flags={"required": True}, + ) + properties.nsg_cidrs = AAZListType( + serialized_name="nsgCidrs", + ) + properties.nsg_url = AAZStrType( + serialized_name="nsgUrl", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.private_zone_ocid = AAZStrType( + serialized_name="privateZoneOcid", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_dns_record_id = AAZStrType( + serialized_name="scanDnsRecordId", + flags={"read_only": True}, + ) + properties.scan_ip_ids = AAZListType( + serialized_name="scanIpIds", + flags={"read_only": True}, + ) + properties.scan_listener_port_tcp = AAZIntType( + serialized_name="scanListenerPortTcp", + ) + properties.scan_listener_port_tcp_ssl = AAZIntType( + serialized_name="scanListenerPortTcpSsl", + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.shape_attribute = AAZStrType( + serialized_name="shapeAttribute", + ) + properties.snapshot_file_system_storage = AAZObjectType( + serialized_name="snapshotFileSystemStorage", + flags={"read_only": True}, + ) + _ListHelper._build_schema_exadbvmclusterstoragedetails_read(properties.snapshot_file_system_storage) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.subnet_ocid = AAZStrType( + serialized_name="subnetOcid", + flags={"read_only": True}, + ) + properties.system_version = AAZStrType( + serialized_name="systemVersion", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.total_ecpu_count = AAZIntType( + serialized_name="totalEcpuCount", + flags={"required": True}, + ) + properties.total_file_system_storage = AAZObjectType( + serialized_name="totalFileSystemStorage", + flags={"read_only": True}, + ) + _ListHelper._build_schema_exadbvmclusterstoragedetails_read(properties.total_file_system_storage) + properties.vip_ids = AAZListType( + serialized_name="vipIds", + flags={"read_only": True}, + ) + properties.vm_file_system_storage = AAZObjectType( + serialized_name="vmFileSystemStorage", + flags={"required": True}, + ) + _ListHelper._build_schema_exadbvmclusterstoragedetails_read(properties.vm_file_system_storage) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"required": True}, + ) + properties.zone_ocid = AAZStrType( + serialized_name="zoneOcid", + flags={"read_only": True}, + ) + + data_collection_options = cls._schema_on_200.value.Element.properties.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolType( + serialized_name="isDiagnosticsEventsEnabled", + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolType( + serialized_name="isHealthMonitoringEnabled", + ) + data_collection_options.is_incident_logs_enabled = AAZBoolType( + serialized_name="isIncidentLogsEnabled", + ) + + iorm_config_cache = cls._schema_on_200.value.Element.properties.iorm_config_cache + iorm_config_cache.db_plans = AAZListType( + serialized_name="dbPlans", + ) + iorm_config_cache.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + iorm_config_cache.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + iorm_config_cache.objective = AAZStrType() + + db_plans = cls._schema_on_200.value.Element.properties.iorm_config_cache.db_plans + db_plans.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.iorm_config_cache.db_plans.Element + _element.db_name = AAZStrType( + serialized_name="dbName", + ) + _element.flash_cache_limit = AAZStrType( + serialized_name="flashCacheLimit", + ) + _element.share = AAZIntType() + + nsg_cidrs = cls._schema_on_200.value.Element.properties.nsg_cidrs + nsg_cidrs.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element.properties.nsg_cidrs.Element + _element.destination_port_range = AAZObjectType( + serialized_name="destinationPortRange", + ) + _element.source = AAZStrType( + flags={"required": True}, + ) + + destination_port_range = cls._schema_on_200.value.Element.properties.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntType( + flags={"required": True}, + ) + destination_port_range.min = AAZIntType( + flags={"required": True}, + ) + + scan_ip_ids = cls._schema_on_200.value.Element.properties.scan_ip_ids + scan_ip_ids.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.value.Element.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + vip_ids = cls._schema_on_200.value.Element.properties.vip_ids + vip_ids.Element = AAZStrType() + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.value.Element.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + _schema_exadbvmclusterstoragedetails_read = None + + @classmethod + def _build_schema_exadbvmclusterstoragedetails_read(cls, _schema): + if cls._schema_exadbvmclusterstoragedetails_read is not None: + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + return + + cls._schema_exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read = AAZObjectType() + + exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read + exadbvmclusterstoragedetails_read.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", + flags={"required": True}, + ) + + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + + +__all__ = ["List"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_remove_vm.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_remove_vm.py new file mode 100644 index 00000000000..43bb0288b4a --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_remove_vm.py @@ -0,0 +1,515 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database exadb-vm-cluster remove-vm", +) +class RemoveVm(AAZCommand): + """Remove VMs from the VM Cluster + + :example: ExadbVmClusters_RemoveVms + az oracle-database exadb-vm-cluster remove-vm --resource-group rgopenapi --exadb-vm-cluster-name exadbVmClusterName1 --db-nodes "[{db-node-id:/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Oracle.Database/exadbVmClusters/vmCluster/dbNodes/dbNodeName}]" + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exadbvmclusters/{}/removevms", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.exadb_vm_cluster_name = AAZStrArg( + options=["--exadb-vm-cluster-name"], + help="The name of the ExadbVmCluster", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Body" + + _args_schema = cls._args_schema + _args_schema.db_nodes = AAZListArg( + options=["--db-nodes"], + arg_group="Body", + help="The list of ExaCS DB nodes for the Exadata VM cluster on Exascale Infrastructure to be removed.", + required=True, + ) + + db_nodes = cls._args_schema.db_nodes + db_nodes.Element = AAZObjectArg() + + _element = cls._args_schema.db_nodes.Element + _element.db_node_id = AAZStrArg( + options=["db-node-id"], + help="Exascale DbNode Azure Resource ID", + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.ExadbVmClustersRemoveVms(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ExadbVmClustersRemoveVms(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}/removeVms", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "exadbVmClusterName", self.ctx.args.exadb_vm_cluster_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("dbNodes", AAZListType, ".db_nodes", typ_kwargs={"flags": {"required": True}}) + + db_nodes = _builder.get(".dbNodes") + if db_nodes is not None: + db_nodes.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".dbNodes[]") + if _elements is not None: + _elements.set_prop("dbNodeId", AAZStrType, ".db_node_id", typ_kwargs={"flags": {"required": True}}) + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType() + + properties = cls._schema_on_200.properties + properties.backup_subnet_cidr = AAZStrType( + serialized_name="backupSubnetCidr", + ) + properties.backup_subnet_ocid = AAZStrType( + serialized_name="backupSubnetOcid", + flags={"read_only": True}, + ) + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.data_collection_options = AAZObjectType( + serialized_name="dataCollectionOptions", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.domain = AAZStrType() + properties.enabled_ecpu_count = AAZIntType( + serialized_name="enabledEcpuCount", + flags={"required": True}, + ) + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + flags={"required": True}, + ) + properties.gi_version = AAZStrType( + serialized_name="giVersion", + flags={"read_only": True}, + ) + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.grid_image_type = AAZStrType( + serialized_name="gridImageType", + flags={"read_only": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.iorm_config_cache = AAZObjectType( + serialized_name="iormConfigCache", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + flags={"required": True}, + ) + properties.nsg_cidrs = AAZListType( + serialized_name="nsgCidrs", + ) + properties.nsg_url = AAZStrType( + serialized_name="nsgUrl", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.private_zone_ocid = AAZStrType( + serialized_name="privateZoneOcid", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_dns_record_id = AAZStrType( + serialized_name="scanDnsRecordId", + flags={"read_only": True}, + ) + properties.scan_ip_ids = AAZListType( + serialized_name="scanIpIds", + flags={"read_only": True}, + ) + properties.scan_listener_port_tcp = AAZIntType( + serialized_name="scanListenerPortTcp", + ) + properties.scan_listener_port_tcp_ssl = AAZIntType( + serialized_name="scanListenerPortTcpSsl", + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.shape_attribute = AAZStrType( + serialized_name="shapeAttribute", + ) + properties.snapshot_file_system_storage = AAZObjectType( + serialized_name="snapshotFileSystemStorage", + flags={"read_only": True}, + ) + _RemoveVmHelper._build_schema_exadbvmclusterstoragedetails_read(properties.snapshot_file_system_storage) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.subnet_ocid = AAZStrType( + serialized_name="subnetOcid", + flags={"read_only": True}, + ) + properties.system_version = AAZStrType( + serialized_name="systemVersion", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.total_ecpu_count = AAZIntType( + serialized_name="totalEcpuCount", + flags={"required": True}, + ) + properties.total_file_system_storage = AAZObjectType( + serialized_name="totalFileSystemStorage", + flags={"read_only": True}, + ) + _RemoveVmHelper._build_schema_exadbvmclusterstoragedetails_read(properties.total_file_system_storage) + properties.vip_ids = AAZListType( + serialized_name="vipIds", + flags={"read_only": True}, + ) + properties.vm_file_system_storage = AAZObjectType( + serialized_name="vmFileSystemStorage", + flags={"required": True}, + ) + _RemoveVmHelper._build_schema_exadbvmclusterstoragedetails_read(properties.vm_file_system_storage) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"required": True}, + ) + properties.zone_ocid = AAZStrType( + serialized_name="zoneOcid", + flags={"read_only": True}, + ) + + data_collection_options = cls._schema_on_200.properties.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolType( + serialized_name="isDiagnosticsEventsEnabled", + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolType( + serialized_name="isHealthMonitoringEnabled", + ) + data_collection_options.is_incident_logs_enabled = AAZBoolType( + serialized_name="isIncidentLogsEnabled", + ) + + iorm_config_cache = cls._schema_on_200.properties.iorm_config_cache + iorm_config_cache.db_plans = AAZListType( + serialized_name="dbPlans", + ) + iorm_config_cache.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + iorm_config_cache.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + iorm_config_cache.objective = AAZStrType() + + db_plans = cls._schema_on_200.properties.iorm_config_cache.db_plans + db_plans.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.iorm_config_cache.db_plans.Element + _element.db_name = AAZStrType( + serialized_name="dbName", + ) + _element.flash_cache_limit = AAZStrType( + serialized_name="flashCacheLimit", + ) + _element.share = AAZIntType() + + nsg_cidrs = cls._schema_on_200.properties.nsg_cidrs + nsg_cidrs.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.nsg_cidrs.Element + _element.destination_port_range = AAZObjectType( + serialized_name="destinationPortRange", + ) + _element.source = AAZStrType( + flags={"required": True}, + ) + + destination_port_range = cls._schema_on_200.properties.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntType( + flags={"required": True}, + ) + destination_port_range.min = AAZIntType( + flags={"required": True}, + ) + + scan_ip_ids = cls._schema_on_200.properties.scan_ip_ids + scan_ip_ids.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + vip_ids = cls._schema_on_200.properties.vip_ids + vip_ids.Element = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _RemoveVmHelper: + """Helper class for RemoveVm""" + + _schema_exadbvmclusterstoragedetails_read = None + + @classmethod + def _build_schema_exadbvmclusterstoragedetails_read(cls, _schema): + if cls._schema_exadbvmclusterstoragedetails_read is not None: + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + return + + cls._schema_exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read = AAZObjectType() + + exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read + exadbvmclusterstoragedetails_read.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", + flags={"required": True}, + ) + + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + + +__all__ = ["RemoveVm"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_show.py new file mode 100644 index 00000000000..36638736487 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_show.py @@ -0,0 +1,456 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database exadb-vm-cluster show", +) +class Show(AAZCommand): + """Get a ExadbVmCluster + + :example: ExadbVmClusters_ show + az oracle-database exadb-vm-cluster show --resource-group rgopenapi --exadb-vm-cluster-name exadbVmClusterName1 + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exadbvmclusters/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.exadb_vm_cluster_name = AAZStrArg( + options=["-n", "--name", "--exadb-vm-cluster-name"], + help="The name of the ExadbVmCluster", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.ExadbVmClustersGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ExadbVmClustersGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "exadbVmClusterName", self.ctx.args.exadb_vm_cluster_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType() + + properties = cls._schema_on_200.properties + properties.backup_subnet_cidr = AAZStrType( + serialized_name="backupSubnetCidr", + ) + properties.backup_subnet_ocid = AAZStrType( + serialized_name="backupSubnetOcid", + flags={"read_only": True}, + ) + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.data_collection_options = AAZObjectType( + serialized_name="dataCollectionOptions", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.domain = AAZStrType() + properties.enabled_ecpu_count = AAZIntType( + serialized_name="enabledEcpuCount", + flags={"required": True}, + ) + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + flags={"required": True}, + ) + properties.gi_version = AAZStrType( + serialized_name="giVersion", + flags={"read_only": True}, + ) + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.grid_image_type = AAZStrType( + serialized_name="gridImageType", + flags={"read_only": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.iorm_config_cache = AAZObjectType( + serialized_name="iormConfigCache", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + flags={"required": True}, + ) + properties.nsg_cidrs = AAZListType( + serialized_name="nsgCidrs", + ) + properties.nsg_url = AAZStrType( + serialized_name="nsgUrl", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.private_zone_ocid = AAZStrType( + serialized_name="privateZoneOcid", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_dns_record_id = AAZStrType( + serialized_name="scanDnsRecordId", + flags={"read_only": True}, + ) + properties.scan_ip_ids = AAZListType( + serialized_name="scanIpIds", + flags={"read_only": True}, + ) + properties.scan_listener_port_tcp = AAZIntType( + serialized_name="scanListenerPortTcp", + ) + properties.scan_listener_port_tcp_ssl = AAZIntType( + serialized_name="scanListenerPortTcpSsl", + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.shape_attribute = AAZStrType( + serialized_name="shapeAttribute", + ) + properties.snapshot_file_system_storage = AAZObjectType( + serialized_name="snapshotFileSystemStorage", + flags={"read_only": True}, + ) + _ShowHelper._build_schema_exadbvmclusterstoragedetails_read(properties.snapshot_file_system_storage) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.subnet_ocid = AAZStrType( + serialized_name="subnetOcid", + flags={"read_only": True}, + ) + properties.system_version = AAZStrType( + serialized_name="systemVersion", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.total_ecpu_count = AAZIntType( + serialized_name="totalEcpuCount", + flags={"required": True}, + ) + properties.total_file_system_storage = AAZObjectType( + serialized_name="totalFileSystemStorage", + flags={"read_only": True}, + ) + _ShowHelper._build_schema_exadbvmclusterstoragedetails_read(properties.total_file_system_storage) + properties.vip_ids = AAZListType( + serialized_name="vipIds", + flags={"read_only": True}, + ) + properties.vm_file_system_storage = AAZObjectType( + serialized_name="vmFileSystemStorage", + flags={"required": True}, + ) + _ShowHelper._build_schema_exadbvmclusterstoragedetails_read(properties.vm_file_system_storage) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"required": True}, + ) + properties.zone_ocid = AAZStrType( + serialized_name="zoneOcid", + flags={"read_only": True}, + ) + + data_collection_options = cls._schema_on_200.properties.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolType( + serialized_name="isDiagnosticsEventsEnabled", + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolType( + serialized_name="isHealthMonitoringEnabled", + ) + data_collection_options.is_incident_logs_enabled = AAZBoolType( + serialized_name="isIncidentLogsEnabled", + ) + + iorm_config_cache = cls._schema_on_200.properties.iorm_config_cache + iorm_config_cache.db_plans = AAZListType( + serialized_name="dbPlans", + ) + iorm_config_cache.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + iorm_config_cache.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + iorm_config_cache.objective = AAZStrType() + + db_plans = cls._schema_on_200.properties.iorm_config_cache.db_plans + db_plans.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.iorm_config_cache.db_plans.Element + _element.db_name = AAZStrType( + serialized_name="dbName", + ) + _element.flash_cache_limit = AAZStrType( + serialized_name="flashCacheLimit", + ) + _element.share = AAZIntType() + + nsg_cidrs = cls._schema_on_200.properties.nsg_cidrs + nsg_cidrs.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.nsg_cidrs.Element + _element.destination_port_range = AAZObjectType( + serialized_name="destinationPortRange", + ) + _element.source = AAZStrType( + flags={"required": True}, + ) + + destination_port_range = cls._schema_on_200.properties.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntType( + flags={"required": True}, + ) + destination_port_range.min = AAZIntType( + flags={"required": True}, + ) + + scan_ip_ids = cls._schema_on_200.properties.scan_ip_ids + scan_ip_ids.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + vip_ids = cls._schema_on_200.properties.vip_ids + vip_ids.Element = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + _schema_exadbvmclusterstoragedetails_read = None + + @classmethod + def _build_schema_exadbvmclusterstoragedetails_read(cls, _schema): + if cls._schema_exadbvmclusterstoragedetails_read is not None: + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + return + + cls._schema_exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read = AAZObjectType() + + exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read + exadbvmclusterstoragedetails_read.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", + flags={"required": True}, + ) + + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + + +__all__ = ["Show"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_update.py new file mode 100644 index 00000000000..1cd95e9510d --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_update.py @@ -0,0 +1,927 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database exadb-vm-cluster update", +) +class Update(AAZCommand): + """Update a ExadbVmCluster + + :example: ExadbVmClusters_Update + az oracle-database exadb-vm-cluster update --resource-group rgopenapi --exadb-vm-cluster-name vmcluster1 --node-count 30 --zones "[ozwhowofqaq]" --tags "{key8577:xkdpkp}" + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exadbvmclusters/{}", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + AZ_SUPPORT_GENERIC_UPDATE = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.exadb_vm_cluster_name = AAZStrArg( + options=["-n", "--name", "--exadb-vm-cluster-name"], + help="The name of the ExadbVmCluster", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.node_count = AAZIntArg( + options=["--node-count"], + arg_group="Properties", + help="The number of nodes in the Exadata VM cluster on Exascale Infrastructure.", + ) + + # define Arg Group "Resource" + + _args_schema = cls._args_schema + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Resource", + help="Resource tags.", + nullable=True, + ) + _args_schema.zones = AAZListArg( + options=["--zones"], + arg_group="Resource", + help="The availability zones.", + nullable=True, + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg( + nullable=True, + ) + + zones = cls._args_schema.zones + zones.Element = AAZStrArg( + nullable=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.ExadbVmClustersGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) + yield self.ExadbVmClustersCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ExadbVmClustersGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "exadbVmClusterName", self.ctx.args.exadb_vm_cluster_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType() + + properties = cls._schema_on_200.properties + properties.backup_subnet_cidr = AAZStrType( + serialized_name="backupSubnetCidr", + ) + properties.backup_subnet_ocid = AAZStrType( + serialized_name="backupSubnetOcid", + flags={"read_only": True}, + ) + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.data_collection_options = AAZObjectType( + serialized_name="dataCollectionOptions", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.domain = AAZStrType() + properties.enabled_ecpu_count = AAZIntType( + serialized_name="enabledEcpuCount", + flags={"required": True}, + ) + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + flags={"required": True}, + ) + properties.gi_version = AAZStrType( + serialized_name="giVersion", + flags={"read_only": True}, + ) + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.grid_image_type = AAZStrType( + serialized_name="gridImageType", + flags={"read_only": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.iorm_config_cache = AAZObjectType( + serialized_name="iormConfigCache", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + flags={"required": True}, + ) + properties.nsg_cidrs = AAZListType( + serialized_name="nsgCidrs", + ) + properties.nsg_url = AAZStrType( + serialized_name="nsgUrl", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.private_zone_ocid = AAZStrType( + serialized_name="privateZoneOcid", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_dns_record_id = AAZStrType( + serialized_name="scanDnsRecordId", + flags={"read_only": True}, + ) + properties.scan_ip_ids = AAZListType( + serialized_name="scanIpIds", + flags={"read_only": True}, + ) + properties.scan_listener_port_tcp = AAZIntType( + serialized_name="scanListenerPortTcp", + ) + properties.scan_listener_port_tcp_ssl = AAZIntType( + serialized_name="scanListenerPortTcpSsl", + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.shape_attribute = AAZStrType( + serialized_name="shapeAttribute", + ) + properties.snapshot_file_system_storage = AAZObjectType( + serialized_name="snapshotFileSystemStorage", + flags={"read_only": True}, + ) + _UpdateHelper._build_schema_exadbvmclusterstoragedetails_read(properties.snapshot_file_system_storage) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.subnet_ocid = AAZStrType( + serialized_name="subnetOcid", + flags={"read_only": True}, + ) + properties.system_version = AAZStrType( + serialized_name="systemVersion", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.total_ecpu_count = AAZIntType( + serialized_name="totalEcpuCount", + flags={"required": True}, + ) + properties.total_file_system_storage = AAZObjectType( + serialized_name="totalFileSystemStorage", + flags={"read_only": True}, + ) + _UpdateHelper._build_schema_exadbvmclusterstoragedetails_read(properties.total_file_system_storage) + properties.vip_ids = AAZListType( + serialized_name="vipIds", + flags={"read_only": True}, + ) + properties.vm_file_system_storage = AAZObjectType( + serialized_name="vmFileSystemStorage", + flags={"required": True}, + ) + _UpdateHelper._build_schema_exadbvmclusterstoragedetails_read(properties.vm_file_system_storage) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"required": True}, + ) + properties.zone_ocid = AAZStrType( + serialized_name="zoneOcid", + flags={"read_only": True}, + ) + + data_collection_options = cls._schema_on_200.properties.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolType( + serialized_name="isDiagnosticsEventsEnabled", + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolType( + serialized_name="isHealthMonitoringEnabled", + ) + data_collection_options.is_incident_logs_enabled = AAZBoolType( + serialized_name="isIncidentLogsEnabled", + ) + + iorm_config_cache = cls._schema_on_200.properties.iorm_config_cache + iorm_config_cache.db_plans = AAZListType( + serialized_name="dbPlans", + ) + iorm_config_cache.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + iorm_config_cache.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + iorm_config_cache.objective = AAZStrType() + + db_plans = cls._schema_on_200.properties.iorm_config_cache.db_plans + db_plans.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.iorm_config_cache.db_plans.Element + _element.db_name = AAZStrType( + serialized_name="dbName", + ) + _element.flash_cache_limit = AAZStrType( + serialized_name="flashCacheLimit", + ) + _element.share = AAZIntType() + + nsg_cidrs = cls._schema_on_200.properties.nsg_cidrs + nsg_cidrs.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.nsg_cidrs.Element + _element.destination_port_range = AAZObjectType( + serialized_name="destinationPortRange", + ) + _element.source = AAZStrType( + flags={"required": True}, + ) + + destination_port_range = cls._schema_on_200.properties.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntType( + flags={"required": True}, + ) + destination_port_range.min = AAZIntType( + flags={"required": True}, + ) + + scan_ip_ids = cls._schema_on_200.properties.scan_ip_ids + scan_ip_ids.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + vip_ids = cls._schema_on_200.properties.vip_ids + vip_ids.Element = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + class ExadbVmClustersCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "exadbVmClusterName", self.ctx.args.exadb_vm_cluster_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.zones = AAZListType() + + properties = cls._schema_on_200_201.properties + properties.backup_subnet_cidr = AAZStrType( + serialized_name="backupSubnetCidr", + ) + properties.backup_subnet_ocid = AAZStrType( + serialized_name="backupSubnetOcid", + flags={"read_only": True}, + ) + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.data_collection_options = AAZObjectType( + serialized_name="dataCollectionOptions", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.domain = AAZStrType() + properties.enabled_ecpu_count = AAZIntType( + serialized_name="enabledEcpuCount", + flags={"required": True}, + ) + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + flags={"required": True}, + ) + properties.gi_version = AAZStrType( + serialized_name="giVersion", + flags={"read_only": True}, + ) + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.grid_image_type = AAZStrType( + serialized_name="gridImageType", + flags={"read_only": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.iorm_config_cache = AAZObjectType( + serialized_name="iormConfigCache", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + flags={"required": True}, + ) + properties.nsg_cidrs = AAZListType( + serialized_name="nsgCidrs", + ) + properties.nsg_url = AAZStrType( + serialized_name="nsgUrl", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.private_zone_ocid = AAZStrType( + serialized_name="privateZoneOcid", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_dns_record_id = AAZStrType( + serialized_name="scanDnsRecordId", + flags={"read_only": True}, + ) + properties.scan_ip_ids = AAZListType( + serialized_name="scanIpIds", + flags={"read_only": True}, + ) + properties.scan_listener_port_tcp = AAZIntType( + serialized_name="scanListenerPortTcp", + ) + properties.scan_listener_port_tcp_ssl = AAZIntType( + serialized_name="scanListenerPortTcpSsl", + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.shape_attribute = AAZStrType( + serialized_name="shapeAttribute", + ) + properties.snapshot_file_system_storage = AAZObjectType( + serialized_name="snapshotFileSystemStorage", + flags={"read_only": True}, + ) + _UpdateHelper._build_schema_exadbvmclusterstoragedetails_read(properties.snapshot_file_system_storage) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.subnet_ocid = AAZStrType( + serialized_name="subnetOcid", + flags={"read_only": True}, + ) + properties.system_version = AAZStrType( + serialized_name="systemVersion", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.total_ecpu_count = AAZIntType( + serialized_name="totalEcpuCount", + flags={"required": True}, + ) + properties.total_file_system_storage = AAZObjectType( + serialized_name="totalFileSystemStorage", + flags={"read_only": True}, + ) + _UpdateHelper._build_schema_exadbvmclusterstoragedetails_read(properties.total_file_system_storage) + properties.vip_ids = AAZListType( + serialized_name="vipIds", + flags={"read_only": True}, + ) + properties.vm_file_system_storage = AAZObjectType( + serialized_name="vmFileSystemStorage", + flags={"required": True}, + ) + _UpdateHelper._build_schema_exadbvmclusterstoragedetails_read(properties.vm_file_system_storage) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"required": True}, + ) + properties.zone_ocid = AAZStrType( + serialized_name="zoneOcid", + flags={"read_only": True}, + ) + + data_collection_options = cls._schema_on_200_201.properties.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolType( + serialized_name="isDiagnosticsEventsEnabled", + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolType( + serialized_name="isHealthMonitoringEnabled", + ) + data_collection_options.is_incident_logs_enabled = AAZBoolType( + serialized_name="isIncidentLogsEnabled", + ) + + iorm_config_cache = cls._schema_on_200_201.properties.iorm_config_cache + iorm_config_cache.db_plans = AAZListType( + serialized_name="dbPlans", + ) + iorm_config_cache.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + iorm_config_cache.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + iorm_config_cache.objective = AAZStrType() + + db_plans = cls._schema_on_200_201.properties.iorm_config_cache.db_plans + db_plans.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.iorm_config_cache.db_plans.Element + _element.db_name = AAZStrType( + serialized_name="dbName", + ) + _element.flash_cache_limit = AAZStrType( + serialized_name="flashCacheLimit", + ) + _element.share = AAZIntType() + + nsg_cidrs = cls._schema_on_200_201.properties.nsg_cidrs + nsg_cidrs.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.nsg_cidrs.Element + _element.destination_port_range = AAZObjectType( + serialized_name="destinationPortRange", + ) + _element.source = AAZStrType( + flags={"required": True}, + ) + + destination_port_range = cls._schema_on_200_201.properties.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntType( + flags={"required": True}, + ) + destination_port_range.min = AAZIntType( + flags={"required": True}, + ) + + scan_ip_ids = cls._schema_on_200_201.properties.scan_ip_ids + scan_ip_ids.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200_201.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + vip_ids = cls._schema_on_200_201.properties.vip_ids + vip_ids.Element = AAZStrType() + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200_201.zones + zones.Element = AAZStrType() + + return cls._schema_on_200_201 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.vars.instance) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZObjectType + ) + _builder.set_prop("properties", AAZObjectType) + _builder.set_prop("tags", AAZDictType, ".tags") + _builder.set_prop("zones", AAZListType, ".zones") + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("nodeCount", AAZIntType, ".node_count", typ_kwargs={"flags": {"required": True}}) + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + zones = _builder.get(".zones") + if zones is not None: + zones.set_elements(AAZStrType, ".") + + return _instance_value + + class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance_by_generic( + self.ctx.vars.instance, + self.ctx.generic_update_args + ) + + +class _UpdateHelper: + """Helper class for Update""" + + _schema_exadbvmclusterstoragedetails_read = None + + @classmethod + def _build_schema_exadbvmclusterstoragedetails_read(cls, _schema): + if cls._schema_exadbvmclusterstoragedetails_read is not None: + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + return + + cls._schema_exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read = AAZObjectType() + + exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read + exadbvmclusterstoragedetails_read.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", + flags={"required": True}, + ) + + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + + +__all__ = ["Update"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_wait.py new file mode 100644 index 00000000000..ceb4798d2ab --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/_wait.py @@ -0,0 +1,452 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database exadb-vm-cluster wait", +) +class Wait(AAZWaitCommand): + """Place the CLI in a waiting state until a condition is met. + """ + + _aaz_info = { + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exadbvmclusters/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.exadb_vm_cluster_name = AAZStrArg( + options=["-n", "--name", "--exadb-vm-cluster-name"], + help="The name of the ExadbVmCluster", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.ExadbVmClustersGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) + return result + + class ExadbVmClustersGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "exadbVmClusterName", self.ctx.args.exadb_vm_cluster_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType() + + properties = cls._schema_on_200.properties + properties.backup_subnet_cidr = AAZStrType( + serialized_name="backupSubnetCidr", + ) + properties.backup_subnet_ocid = AAZStrType( + serialized_name="backupSubnetOcid", + flags={"read_only": True}, + ) + properties.cluster_name = AAZStrType( + serialized_name="clusterName", + ) + properties.data_collection_options = AAZObjectType( + serialized_name="dataCollectionOptions", + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.domain = AAZStrType() + properties.enabled_ecpu_count = AAZIntType( + serialized_name="enabledEcpuCount", + flags={"required": True}, + ) + properties.exascale_db_storage_vault_id = AAZStrType( + serialized_name="exascaleDbStorageVaultId", + flags={"required": True}, + ) + properties.gi_version = AAZStrType( + serialized_name="giVersion", + flags={"read_only": True}, + ) + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.grid_image_type = AAZStrType( + serialized_name="gridImageType", + flags={"read_only": True}, + ) + properties.hostname = AAZStrType( + flags={"required": True}, + ) + properties.iorm_config_cache = AAZObjectType( + serialized_name="iormConfigCache", + flags={"read_only": True}, + ) + properties.license_model = AAZStrType( + serialized_name="licenseModel", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.listener_port = AAZIntType( + serialized_name="listenerPort", + flags={"read_only": True}, + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + flags={"read_only": True}, + ) + properties.node_count = AAZIntType( + serialized_name="nodeCount", + flags={"required": True}, + ) + properties.nsg_cidrs = AAZListType( + serialized_name="nsgCidrs", + ) + properties.nsg_url = AAZStrType( + serialized_name="nsgUrl", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.private_zone_ocid = AAZStrType( + serialized_name="privateZoneOcid", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.scan_dns_name = AAZStrType( + serialized_name="scanDnsName", + flags={"read_only": True}, + ) + properties.scan_dns_record_id = AAZStrType( + serialized_name="scanDnsRecordId", + flags={"read_only": True}, + ) + properties.scan_ip_ids = AAZListType( + serialized_name="scanIpIds", + flags={"read_only": True}, + ) + properties.scan_listener_port_tcp = AAZIntType( + serialized_name="scanListenerPortTcp", + ) + properties.scan_listener_port_tcp_ssl = AAZIntType( + serialized_name="scanListenerPortTcpSsl", + ) + properties.shape = AAZStrType( + flags={"required": True}, + ) + properties.shape_attribute = AAZStrType( + serialized_name="shapeAttribute", + ) + properties.snapshot_file_system_storage = AAZObjectType( + serialized_name="snapshotFileSystemStorage", + flags={"read_only": True}, + ) + _WaitHelper._build_schema_exadbvmclusterstoragedetails_read(properties.snapshot_file_system_storage) + properties.ssh_public_keys = AAZListType( + serialized_name="sshPublicKeys", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.subnet_ocid = AAZStrType( + serialized_name="subnetOcid", + flags={"read_only": True}, + ) + properties.system_version = AAZStrType( + serialized_name="systemVersion", + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.total_ecpu_count = AAZIntType( + serialized_name="totalEcpuCount", + flags={"required": True}, + ) + properties.total_file_system_storage = AAZObjectType( + serialized_name="totalFileSystemStorage", + flags={"read_only": True}, + ) + _WaitHelper._build_schema_exadbvmclusterstoragedetails_read(properties.total_file_system_storage) + properties.vip_ids = AAZListType( + serialized_name="vipIds", + flags={"read_only": True}, + ) + properties.vm_file_system_storage = AAZObjectType( + serialized_name="vmFileSystemStorage", + flags={"required": True}, + ) + _WaitHelper._build_schema_exadbvmclusterstoragedetails_read(properties.vm_file_system_storage) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"required": True}, + ) + properties.zone_ocid = AAZStrType( + serialized_name="zoneOcid", + flags={"read_only": True}, + ) + + data_collection_options = cls._schema_on_200.properties.data_collection_options + data_collection_options.is_diagnostics_events_enabled = AAZBoolType( + serialized_name="isDiagnosticsEventsEnabled", + ) + data_collection_options.is_health_monitoring_enabled = AAZBoolType( + serialized_name="isHealthMonitoringEnabled", + ) + data_collection_options.is_incident_logs_enabled = AAZBoolType( + serialized_name="isIncidentLogsEnabled", + ) + + iorm_config_cache = cls._schema_on_200.properties.iorm_config_cache + iorm_config_cache.db_plans = AAZListType( + serialized_name="dbPlans", + ) + iorm_config_cache.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + ) + iorm_config_cache.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + iorm_config_cache.objective = AAZStrType() + + db_plans = cls._schema_on_200.properties.iorm_config_cache.db_plans + db_plans.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.iorm_config_cache.db_plans.Element + _element.db_name = AAZStrType( + serialized_name="dbName", + ) + _element.flash_cache_limit = AAZStrType( + serialized_name="flashCacheLimit", + ) + _element.share = AAZIntType() + + nsg_cidrs = cls._schema_on_200.properties.nsg_cidrs + nsg_cidrs.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.nsg_cidrs.Element + _element.destination_port_range = AAZObjectType( + serialized_name="destinationPortRange", + ) + _element.source = AAZStrType( + flags={"required": True}, + ) + + destination_port_range = cls._schema_on_200.properties.nsg_cidrs.Element.destination_port_range + destination_port_range.max = AAZIntType( + flags={"required": True}, + ) + destination_port_range.min = AAZIntType( + flags={"required": True}, + ) + + scan_ip_ids = cls._schema_on_200.properties.scan_ip_ids + scan_ip_ids.Element = AAZStrType() + + ssh_public_keys = cls._schema_on_200.properties.ssh_public_keys + ssh_public_keys.Element = AAZStrType() + + vip_ids = cls._schema_on_200.properties.vip_ids + vip_ids.Element = AAZStrType() + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _WaitHelper: + """Helper class for Wait""" + + _schema_exadbvmclusterstoragedetails_read = None + + @classmethod + def _build_schema_exadbvmclusterstoragedetails_read(cls, _schema): + if cls._schema_exadbvmclusterstoragedetails_read is not None: + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + return + + cls._schema_exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read = AAZObjectType() + + exadbvmclusterstoragedetails_read = _schema_exadbvmclusterstoragedetails_read + exadbvmclusterstoragedetails_read.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", + flags={"required": True}, + ) + + _schema.total_size_in_gbs = cls._schema_exadbvmclusterstoragedetails_read.total_size_in_gbs + + +__all__ = ["Wait"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/__cmd_group.py similarity index 88% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/__cmd_group.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/__cmd_group.py index b8ced1ecc4d..5806c68acbb 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/__cmd_group.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/__cmd_group.py @@ -12,10 +12,10 @@ @register_command_group( - "mobile-network", + "oracle-database exadb-vm-cluster db-node", ) class __CMDGroup(AAZCommandGroup): - """Manage mobile network + """Manage Db Node """ pass diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/__init__.py similarity index 87% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/__init__.py index 2d1a2078686..2669684101d 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/__init__.py @@ -9,8 +9,6 @@ # flake8: noqa from .__cmd_group import * -from ._create import * -from ._delete import * +from ._action import * from ._list import * from ._show import * -from ._wait import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/_action.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/_action.py new file mode 100644 index 00000000000..5faa2d21826 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/_action.py @@ -0,0 +1,225 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database exadb-vm-cluster db-node action", +) +class Action(AAZCommand): + """VM actions on DbNode of ExadbVmCluster by the provided filter + + :example: ExascaleDbNodes_Action + az oracle-database exadb-vm-cluster db-node action --resource-group rgopenapi --exadb-vm-cluster-name exadbvmcluster1 --exascale-db-node-name exascaledbnode1 --action Start + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exadbvmclusters/{}/dbnodes/{}/action", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.exadb_vm_cluster_name = AAZStrArg( + options=["--exadb-vm-cluster-name"], + help="The name of the ExadbVmCluster", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.exascale_db_node_name = AAZStrArg( + options=["--exascale-db-node-name"], + help="The name of the ExascaleDbNode", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Body" + + _args_schema = cls._args_schema + _args_schema.action = AAZStrArg( + options=["--action"], + arg_group="Body", + help="Db action", + required=True, + enum={"Reset": "Reset", "SoftReset": "SoftReset", "Start": "Start", "Stop": "Stop"}, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.ExascaleDbNodesAction(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ExascaleDbNodesAction(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}/dbNodes/{exascaleDbNodeName}/action", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "exadbVmClusterName", self.ctx.args.exadb_vm_cluster_name, + required=True, + ), + **self.serialize_url_param( + "exascaleDbNodeName", self.ctx.args.exascale_db_node_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("action", AAZStrType, ".action", typ_kwargs={"flags": {"required": True}}) + + return self.serialize_content(_content_value) + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.provisioning_state = AAZStrType( + serialized_name="provisioningState", + ) + + return cls._schema_on_200 + + +class _ActionHelper: + """Helper class for Action""" + + +__all__ = ["Action"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/_list.py similarity index 69% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_list.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/_list.py index b1a612b9319..c651439b6fd 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/_list.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network pcdp list", + "oracle-database exadb-vm-cluster db-node list", ) class List(AAZCommand): - """List all the packet core data planes associated with a packet core control plane. + """List ExascaleDbNode resources by ExadbVmCluster - :example: List Packet Core Data Plane by resource group - az mobile-network pcdp list -g rg --pccp-name pccp_name + :example: ExascaleDbNodes_ListByParent + az oracle-database exadb-vm-cluster db-node list --resource-group rgopenapi --exadb-vm-cluster-name vmcluster """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exadbvmclusters/{}/dbnodes", "2025-09-01"], ] } @@ -45,13 +45,12 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", + _args_schema.exadb_vm_cluster_name = AAZStrArg( + options=["--exadb-vm-cluster-name"], + help="The name of the ExadbVmCluster", required=True, fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( @@ -61,7 +60,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - self.PacketCoreDataPlanesListByPacketCoreControlPlane(ctx=self.ctx)() + self.ExascaleDbNodesListByParent(ctx=self.ctx)() self.post_operations() @register_callback @@ -77,7 +76,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class PacketCoreDataPlanesListByPacketCoreControlPlane(AAZHttpOperation): + class ExascaleDbNodesListByParent(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -91,7 +90,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}/dbNodes", **self.url_parameters ) @@ -107,7 +106,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, + "exadbVmClusterName", self.ctx.args.exadb_vm_cluster_name, required=True, ), **self.serialize_url_param( @@ -125,7 +124,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -160,9 +159,10 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) - _schema_on_200.value = AAZListType() + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) value = cls._schema_on_200.value value.Element = AAZObjectType() @@ -171,51 +171,56 @@ def _build_schema_on_200(cls): _element.id = AAZStrType( flags={"read_only": True}, ) - _element.location = AAZStrType( - flags={"required": True}, - ) _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - _element.tags = AAZDictType() _element.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.value.Element.properties - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, + properties.additional_details = AAZStrType( + serialized_name="additionalDetails", + ) + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", ) - properties.user_plane_access_interface = AAZObjectType( - serialized_name="userPlaneAccessInterface", + properties.db_node_storage_size_in_gbs = AAZIntType( + serialized_name="dbNodeStorageSizeInGbs", + ) + properties.fault_domain = AAZStrType( + serialized_name="faultDomain", + ) + properties.hostname = AAZStrType() + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + properties.maintenance_type = AAZStrType( + serialized_name="maintenanceType", + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + ) + properties.ocid = AAZStrType( flags={"required": True}, ) - properties.user_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="userPlaneAccessVirtualIpv4Addresses", + properties.software_storage_size_in_gb = AAZIntType( + serialized_name="softwareStorageSizeInGb", ) - - user_plane_access_interface = cls._schema_on_200.value.Element.properties.user_plane_access_interface - user_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", + properties.time_maintenance_window_end = AAZStrType( + serialized_name="timeMaintenanceWindowEnd", ) - user_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", + properties.time_maintenance_window_start = AAZStrType( + serialized_name="timeMaintenanceWindowStart", ) - user_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", + properties.total_cpu_core_count = AAZIntType( + serialized_name="totalCpuCoreCount", ) - user_plane_access_interface.name = AAZStrType() - - user_plane_access_virtual_ipv4_addresses = cls._schema_on_200.value.Element.properties.user_plane_access_virtual_ipv4_addresses - user_plane_access_virtual_ipv4_addresses.Element = AAZStrType() system_data = cls._schema_on_200.value.Element.system_data system_data.created_at = AAZStrType( @@ -237,9 +242,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.value.Element.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/_show.py similarity index 67% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_show.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/_show.py index 6f49d7e5b21..71d6d18928b 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exadb_vm_cluster/db_node/_show.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network pcdp show", + "oracle-database exadb-vm-cluster db-node show", ) class Show(AAZCommand): - """Get information about the specified packet core data plane. + """Get a ExascaleDbNode - :example: Show Packet Core Data Plane - az mobile-network pcdp show -g rg -n pcdp-name --pccp-name pccp-name + :example: ExascaleDbNodes_Get + az oracle-database exadb-vm-cluster db-node show --resource-group rgopenapi --exadb-vm-cluster-name exadbvmcluster1 --exascale-db-node-name exascaledbnode1 """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/packetcorecontrolplanes/{}/packetcoredataplanes/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exadbvmclusters/{}/dbnodes/{}", "2025-09-01"], ] } @@ -44,24 +44,22 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.pccp_name = AAZStrArg( - options=["--pccp-name"], - help="The name of the packet core control plane.", + _args_schema.exadb_vm_cluster_name = AAZStrArg( + options=["--exadb-vm-cluster-name"], + help="The name of the ExadbVmCluster", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) - _args_schema.pcdp_name = AAZStrArg( - options=["-n", "--name", "--pcdp-name"], - help="The name of the packet core data plane.", + _args_schema.exascale_db_node_name = AAZStrArg( + options=["-n", "--name", "--exascale-db-node-name"], + help="The name of the ExascaleDbNode", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( @@ -71,7 +69,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - self.PacketCoreDataPlanesGet(ctx=self.ctx)() + self.ExascaleDbNodesGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -86,7 +84,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class PacketCoreDataPlanesGet(AAZHttpOperation): + class ExascaleDbNodesGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -100,7 +98,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}/dbNodes/{exascaleDbNodeName}", **self.url_parameters ) @@ -116,11 +114,11 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "packetCoreControlPlaneName", self.ctx.args.pccp_name, + "exadbVmClusterName", self.ctx.args.exadb_vm_cluster_name, required=True, ), **self.serialize_url_param( - "packetCoreDataPlaneName", self.ctx.args.pcdp_name, + "exascaleDbNodeName", self.ctx.args.exascale_db_node_name, required=True, ), **self.serialize_url_param( @@ -138,7 +136,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -174,51 +172,56 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - _schema_on_200.tags = AAZDictType() _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.properties - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, + properties.additional_details = AAZStrType( + serialized_name="additionalDetails", + ) + properties.cpu_core_count = AAZIntType( + serialized_name="cpuCoreCount", + ) + properties.db_node_storage_size_in_gbs = AAZIntType( + serialized_name="dbNodeStorageSizeInGbs", + ) + properties.fault_domain = AAZStrType( + serialized_name="faultDomain", ) - properties.user_plane_access_interface = AAZObjectType( - serialized_name="userPlaneAccessInterface", + properties.hostname = AAZStrType() + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + ) + properties.maintenance_type = AAZStrType( + serialized_name="maintenanceType", + ) + properties.memory_size_in_gbs = AAZIntType( + serialized_name="memorySizeInGbs", + ) + properties.ocid = AAZStrType( flags={"required": True}, ) - properties.user_plane_access_virtual_ipv4_addresses = AAZListType( - serialized_name="userPlaneAccessVirtualIpv4Addresses", + properties.software_storage_size_in_gb = AAZIntType( + serialized_name="softwareStorageSizeInGb", ) - - user_plane_access_interface = cls._schema_on_200.properties.user_plane_access_interface - user_plane_access_interface.ipv4_address = AAZStrType( - serialized_name="ipv4Address", + properties.time_maintenance_window_end = AAZStrType( + serialized_name="timeMaintenanceWindowEnd", ) - user_plane_access_interface.ipv4_gateway = AAZStrType( - serialized_name="ipv4Gateway", + properties.time_maintenance_window_start = AAZStrType( + serialized_name="timeMaintenanceWindowStart", ) - user_plane_access_interface.ipv4_subnet = AAZStrType( - serialized_name="ipv4Subnet", + properties.total_cpu_core_count = AAZIntType( + serialized_name="totalCpuCoreCount", ) - user_plane_access_interface.name = AAZStrType() - - user_plane_access_virtual_ipv4_addresses = cls._schema_on_200.properties.user_plane_access_virtual_ipv4_addresses - user_plane_access_virtual_ipv4_addresses.Element = AAZStrType() system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( @@ -240,9 +243,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/__cmd_group.py similarity index 86% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/__cmd_group.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/__cmd_group.py index d5a075b6765..ce59f039e32 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/attached_data_network/__cmd_group.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/__cmd_group.py @@ -12,10 +12,10 @@ @register_command_group( - "mobile-network attached-data-network", + "oracle-database exascale-db-storage-vault", ) class __CMDGroup(AAZCommandGroup): - """Manage attached data net work + """Manage Exascale Db Storage Vault """ pass diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/__init__.py similarity index 100% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/__init__.py diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_create.py similarity index 55% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_create.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_create.py index 69bfe39516b..cc492324366 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_create.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_create.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network sim group create", + "oracle-database exascale-db-storage-vault create", ) class Create(AAZCommand): - """Create a SIM group. + """Create a ExascaleDbStorageVault - :example: Create sim group - az mobile-network sim group create -n sim-group-name -g rg --mobile-network "{id:mobile-network-id}" + :example: ExascaleDbStorageVaults_Create + az oracle-database exascale-db-storage-vault create --resource-group rgopenapi --exascale-db-storage-vault-name storagevault1 --additional-flash-cache-in-percent 0 --description test --display-name test --high-capacity-database-storage-input "{total-size-in-gbs:1}" --time-zone UTC --zones "[2]" --tags "{key4521:test}" --location eastus """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exascaledbstoragevaults/{}", "2025-09-01"], ] } @@ -45,29 +45,79 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( + _args_schema.exascale_db_storage_vault_name = AAZStrArg( + options=["-n", "--name", "--exascale-db-storage-vault-name"], + help="The name of the ExascaleDbStorageVault", required=True, + fmt=AAZStrArgFormat( + pattern=".*", + ), ) - _args_schema.sim_group_name = AAZStrArg( - options=["-n", "--name", "--sim-group-name"], - help="The name of the SIM Group.", + _args_schema.resource_group = AAZResourceGroupNameArg( required=True, + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.additional_flash_cache_in_percent = AAZIntArg( + options=["--additional-flash-cache-in-percent"], + arg_group="Properties", + help="The size of additional Flash Cache in percentage of High Capacity database storage.", + fmt=AAZIntArgFormat( + minimum=0, + ), + ) + _args_schema.description = AAZStrArg( + options=["--description"], + arg_group="Properties", + help="Exadata Database Storage Vault description.", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + max_length=400, + min_length=1, ), ) + _args_schema.display_name = AAZStrArg( + options=["--display-name"], + arg_group="Properties", + help="The user-friendly name for the Exadata Database Storage Vault. The name does not need to be unique.", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.exadata_infrastructure_id = AAZStrArg( + options=["--exadata-infrastructure-id"], + arg_group="Properties", + help="Cloud Exadata infrastructure ID", + ) + _args_schema.high_capacity_database_storage_input = AAZObjectArg( + options=["--high-capacity-database-storage-input"], + arg_group="Properties", + help="Create exadata Database Storage Details", + ) + _args_schema.time_zone = AAZStrArg( + options=["--time-zone"], + arg_group="Properties", + help="The time zone that you want to use for the Exadata Database Storage Vault", + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + + high_capacity_database_storage_input = cls._args_schema.high_capacity_database_storage_input + high_capacity_database_storage_input.total_size_in_gbs = AAZIntArg( + options=["total-size-in-gbs"], + help="Total Capacity", + required=True, + ) - # define Arg Group "Parameters" + # define Arg Group "Resource" _args_schema = cls._args_schema - _args_schema.identity = AAZObjectArg( - options=["--identity"], - arg_group="Parameters", - help="The identity used to retrieve the encryption key from Azure key vault.", - ) _args_schema.location = AAZResourceLocationArg( - arg_group="Parameters", + arg_group="Resource", help="The geo-location where the resource lives", required=True, fmt=AAZResourceLocationArgFormat( @@ -76,64 +126,25 @@ def _build_arguments_schema(cls, *args, **kwargs): ) _args_schema.tags = AAZDictArg( options=["--tags"], - arg_group="Parameters", + arg_group="Resource", help="Resource tags.", ) - - identity = cls._args_schema.identity - identity.type = AAZStrArg( - options=["type"], - help="Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).", - required=True, - enum={"None": "None", "UserAssigned": "UserAssigned"}, - ) - identity.user_assigned_identities = AAZDictArg( - options=["user-assigned-identities"], - help="The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.", - ) - - user_assigned_identities = cls._args_schema.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectArg( - blank={}, + _args_schema.zones = AAZListArg( + options=["--zones"], + arg_group="Resource", + help="The availability zones.", ) tags = cls._args_schema.tags tags.Element = AAZStrArg() - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.encryption_key = AAZObjectArg( - options=["--encryption-key"], - arg_group="Properties", - help="A key to encrypt the SIM data that belongs to this SIM group.", - ) - _args_schema.mobile_network = AAZObjectArg( - options=["--mobile-network"], - arg_group="Properties", - help="Mobile network that this SIM belongs to", - ) - - encryption_key = cls._args_schema.encryption_key - encryption_key.key_url = AAZStrArg( - options=["key-url"], - help="The key URL, unversioned. For example: https://contosovault.vault.azure.net/keys/azureKey.", - ) - - mobile_network = cls._args_schema.mobile_network - mobile_network.id = AAZStrArg( - options=["id"], - help="Mobile network resource ID.", - required=True, - fmt=AAZStrArgFormat( - pattern="^/[sS][uU][bB][sS][cC][rR][iI][pP][tT][iI][oO][nN][sS]/[^/?#]+/[rR][eE][sS][oO][uU][rR][cC][eE][gG][rR][oO][uU][pP][sS]/[^/?#]+/[pP][rR][oO][vV][iI][dD][eE][rR][sS]/[mM][iI][cC][rR][oO][sS][oO][fF][tT]\.[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK]/[mM][oO][bB][iI][lL][eE][nN][eE][tT][wW][oO][rR][kK][sS]/[^/?#]+$", - ), - ) + zones = cls._args_schema.zones + zones.Element = AAZStrArg() return cls._args_schema def _execute_operations(self): self.pre_operations() - yield self.SimGroupsCreateOrUpdate(ctx=self.ctx)() + yield self.ExascaleDbStorageVaultsCreate(ctx=self.ctx)() self.post_operations() @register_callback @@ -148,7 +159,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class SimGroupsCreateOrUpdate(AAZHttpOperation): + class ExascaleDbStorageVaultsCreate(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -178,7 +189,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}", **self.url_parameters ) @@ -194,11 +205,11 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "exascaleDbStorageVaultName", self.ctx.args.exascale_db_storage_vault_name, required=True, ), **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, + "resourceGroupName", self.ctx.args.resource_group, required=True, ), **self.serialize_url_param( @@ -212,7 +223,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -237,37 +248,32 @@ def content(self): typ=AAZObjectType, typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) - _builder.set_prop("identity", AAZObjectType, ".identity") _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) + _builder.set_prop("properties", AAZObjectType) _builder.set_prop("tags", AAZDictType, ".tags") - - identity = _builder.get(".identity") - if identity is not None: - identity.set_prop("type", AAZStrType, ".type", typ_kwargs={"flags": {"required": True}}) - identity.set_prop("userAssignedIdentities", AAZDictType, ".user_assigned_identities") - - user_assigned_identities = _builder.get(".identity.userAssignedIdentities") - if user_assigned_identities is not None: - user_assigned_identities.set_elements(AAZObjectType, ".") + _builder.set_prop("zones", AAZListType, ".zones") properties = _builder.get(".properties") if properties is not None: - properties.set_prop("encryptionKey", AAZObjectType, ".encryption_key") - properties.set_prop("mobileNetwork", AAZObjectType, ".mobile_network") + properties.set_prop("additionalFlashCacheInPercent", AAZIntType, ".additional_flash_cache_in_percent") + properties.set_prop("description", AAZStrType, ".description") + properties.set_prop("displayName", AAZStrType, ".display_name", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("exadataInfrastructureId", AAZStrType, ".exadata_infrastructure_id") + properties.set_prop("highCapacityDatabaseStorageInput", AAZObjectType, ".high_capacity_database_storage_input", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("timeZone", AAZStrType, ".time_zone") - encryption_key = _builder.get(".properties.encryptionKey") - if encryption_key is not None: - encryption_key.set_prop("keyUrl", AAZStrType, ".key_url") - - mobile_network = _builder.get(".properties.mobileNetwork") - if mobile_network is not None: - mobile_network.set_prop("id", AAZStrType, ".id", typ_kwargs={"flags": {"required": True}}) + high_capacity_database_storage_input = _builder.get(".properties.highCapacityDatabaseStorageInput") + if high_capacity_database_storage_input is not None: + high_capacity_database_storage_input.set_prop("totalSizeInGbs", AAZIntType, ".total_size_in_gbs", typ_kwargs={"flags": {"required": True}}) tags = _builder.get(".tags") if tags is not None: tags.set_elements(AAZStrType, ".") + zones = _builder.get(".zones") + if zones is not None: + zones.set_elements(AAZStrType, ".") + return self.serialize_content(_content_value) def on_200_201(self, session): @@ -291,16 +297,13 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.identity = AAZObjectType() _schema_on_200_201.location = AAZStrType( flags={"required": True}, ) _schema_on_200_201.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200_201.properties = AAZObjectType() _schema_on_200_201.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -309,48 +312,64 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.type = AAZStrType( flags={"read_only": True}, ) + _schema_on_200_201.zones = AAZListType() - identity = cls._schema_on_200_201.identity - identity.type = AAZStrType( + properties = cls._schema_on_200_201.properties + properties.additional_flash_cache_in_percent = AAZIntType( + serialized_name="additionalFlashCacheInPercent", + ) + properties.attached_shape_attributes = AAZListType( + serialized_name="attachedShapeAttributes", + flags={"read_only": True}, + ) + properties.description = AAZStrType() + properties.display_name = AAZStrType( + serialized_name="displayName", flags={"required": True}, ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", + properties.exadata_infrastructure_id = AAZStrType( + serialized_name="exadataInfrastructureId", ) - - user_assigned_identities = cls._schema_on_200_201.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = cls._schema_on_200_201.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", + properties.high_capacity_database_storage = AAZObjectType( + serialized_name="highCapacityDatabaseStorage", flags={"read_only": True}, ) - _element.principal_id = AAZStrType( - serialized_name="principalId", + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", flags={"read_only": True}, ) - - properties = cls._schema_on_200_201.properties - properties.encryption_key = AAZObjectType( - serialized_name="encryptionKey", + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, ) - properties.mobile_network = AAZObjectType( - serialized_name="mobileNetwork", + properties.ocid = AAZStrType( + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - - encryption_key = cls._schema_on_200_201.properties.encryption_key - encryption_key.key_url = AAZStrType( - serialized_name="keyUrl", + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.vm_cluster_count = AAZIntType( + serialized_name="vmClusterCount", + flags={"read_only": True}, ) - mobile_network = cls._schema_on_200_201.properties.mobile_network - mobile_network.id = AAZStrType( - flags={"required": True}, + attached_shape_attributes = cls._schema_on_200_201.properties.attached_shape_attributes + attached_shape_attributes.Element = AAZStrType() + + high_capacity_database_storage = cls._schema_on_200_201.properties.high_capacity_database_storage + high_capacity_database_storage.available_size_in_gbs = AAZIntType( + serialized_name="availableSizeInGbs", + ) + high_capacity_database_storage.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", ) system_data = cls._schema_on_200_201.system_data @@ -376,6 +395,9 @@ def _build_schema_on_200_201(cls): tags = cls._schema_on_200_201.tags tags.Element = AAZStrType() + zones = cls._schema_on_200_201.zones + zones.Element = AAZStrType() + return cls._schema_on_200_201 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_delete.py similarity index 74% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_delete.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_delete.py index d76116ab5e4..8868aad5582 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/_delete.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_delete.py @@ -12,20 +12,20 @@ @register_command( - "mobile-network sim delete", + "oracle-database exascale-db-storage-vault delete", confirmation="Are you sure you want to perform this operation?", ) class Delete(AAZCommand): - """Delete the specified SIM. + """Delete a ExascaleDbStorageVault - :example: Delete sim - az mobile-network sim delete -g rg -n sim-name --sim-group-name sim-group-name -y + :example: ExascaleDbStorageVaults_Delete + az oracle-database exascale-db-storage-vault delete --resource-group rgopenapi --exascale-db-storage-vault-name storagevault1 """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}/sims/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exascaledbstoragevaults/{}", "2025-09-01"], ] } @@ -46,34 +46,23 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["--sim-group-name"], - help="The name of the SIM Group.", + _args_schema.exascale_db_storage_vault_name = AAZStrArg( + options=["-n", "--name", "--exascale-db-storage-vault-name"], + help="The name of the ExascaleDbStorageVault", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) - _args_schema.sim_name = AAZStrArg( - options=["-n", "--name", "--sim-name"], - help="The name of the SIM.", + _args_schema.resource_group = AAZResourceGroupNameArg( required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), ) return cls._args_schema def _execute_operations(self): self.pre_operations() - yield self.SimsDelete(ctx=self.ctx)() + yield self.ExascaleDbStorageVaultsDelete(ctx=self.ctx)() self.post_operations() @register_callback @@ -84,7 +73,7 @@ def pre_operations(self): def post_operations(self): pass - class SimsDelete(AAZHttpOperation): + class ExascaleDbStorageVaultsDelete(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -94,25 +83,25 @@ def __call__(self, *args, **kwargs): return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [200]: + if session.http_response.status_code in [204]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_204, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [204]: + if session.http_response.status_code in [200, 201]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_204, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, @@ -123,7 +112,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}", **self.url_parameters ) @@ -139,15 +128,11 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), - **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, + "exascaleDbStorageVaultName", self.ctx.args.exascale_db_storage_vault_name, required=True, ), **self.serialize_url_param( - "simName", self.ctx.args.sim_name, + "resourceGroupName", self.ctx.args.resource_group, required=True, ), **self.serialize_url_param( @@ -161,16 +146,16 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } return parameters - def on_200(self, session): + def on_204(self, session): pass - def on_204(self, session): + def on_200_201(self, session): pass diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_list.py similarity index 65% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_list.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_list.py index 910a832b901..63a3226956c 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_list.py @@ -12,20 +12,20 @@ @register_command( - "mobile-network sim group list", + "oracle-database exascale-db-storage-vault list", ) class List(AAZCommand): - """List all the SIM groups in a subscription. + """List ExascaleDbStorageVault resources by subscription ID - :example: List sim group by resource group - az mobile-network sim group list -g rg + :example: ExascaleDbStorageVaults_List + az oracle-database exascale-db-storage-vault list """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.mobilenetwork/simgroups", "2023-09-01"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/exascaledbstoragevaults", "2025-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exascaledbstoragevaults", "2025-09-01"], ] } @@ -51,12 +51,12 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - condition_0 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) - condition_1 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_0 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_1 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) if condition_0: - self.SimGroupsListByResourceGroup(ctx=self.ctx)() + self.ExascaleDbStorageVaultsListBySubscription(ctx=self.ctx)() if condition_1: - self.SimGroupsListBySubscription(ctx=self.ctx)() + self.ExascaleDbStorageVaultsListByResourceGroup(ctx=self.ctx)() self.post_operations() @register_callback @@ -72,7 +72,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class SimGroupsListByResourceGroup(AAZHttpOperation): + class ExascaleDbStorageVaultsListBySubscription(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -86,7 +86,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/exascaleDbStorageVaults", **self.url_parameters ) @@ -101,10 +101,6 @@ def error_format(self): @property def url_parameters(self): parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -116,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -151,9 +147,10 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) - _schema_on_200.value = AAZListType() + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) value = cls._schema_on_200.value value.Element = AAZObjectType() @@ -162,16 +159,13 @@ def _build_schema_on_200(cls): _element.id = AAZStrType( flags={"read_only": True}, ) - _element.identity = AAZObjectType() _element.location = AAZStrType( flags={"required": True}, ) _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -180,48 +174,64 @@ def _build_schema_on_200(cls): _element.type = AAZStrType( flags={"read_only": True}, ) + _element.zones = AAZListType() - identity = cls._schema_on_200.value.Element.identity - identity.type = AAZStrType( + properties = cls._schema_on_200.value.Element.properties + properties.additional_flash_cache_in_percent = AAZIntType( + serialized_name="additionalFlashCacheInPercent", + ) + properties.attached_shape_attributes = AAZListType( + serialized_name="attachedShapeAttributes", + flags={"read_only": True}, + ) + properties.description = AAZStrType() + properties.display_name = AAZStrType( + serialized_name="displayName", flags={"required": True}, ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", + properties.exadata_infrastructure_id = AAZStrType( + serialized_name="exadataInfrastructureId", ) - - user_assigned_identities = cls._schema_on_200.value.Element.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", + properties.high_capacity_database_storage = AAZObjectType( + serialized_name="highCapacityDatabaseStorage", flags={"read_only": True}, ) - _element.principal_id = AAZStrType( - serialized_name="principalId", + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", flags={"read_only": True}, ) - - properties = cls._schema_on_200.value.Element.properties - properties.encryption_key = AAZObjectType( - serialized_name="encryptionKey", + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, ) - properties.mobile_network = AAZObjectType( - serialized_name="mobileNetwork", + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - - encryption_key = cls._schema_on_200.value.Element.properties.encryption_key - encryption_key.key_url = AAZStrType( - serialized_name="keyUrl", + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.vm_cluster_count = AAZIntType( + serialized_name="vmClusterCount", + flags={"read_only": True}, ) - mobile_network = cls._schema_on_200.value.Element.properties.mobile_network - mobile_network.id = AAZStrType( - flags={"required": True}, + attached_shape_attributes = cls._schema_on_200.value.Element.properties.attached_shape_attributes + attached_shape_attributes.Element = AAZStrType() + + high_capacity_database_storage = cls._schema_on_200.value.Element.properties.high_capacity_database_storage + high_capacity_database_storage.available_size_in_gbs = AAZIntType( + serialized_name="availableSizeInGbs", + ) + high_capacity_database_storage.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", ) system_data = cls._schema_on_200.value.Element.system_data @@ -247,9 +257,12 @@ def _build_schema_on_200(cls): tags = cls._schema_on_200.value.Element.tags tags.Element = AAZStrType() + zones = cls._schema_on_200.value.Element.zones + zones.Element = AAZStrType() + return cls._schema_on_200 - class SimGroupsListBySubscription(AAZHttpOperation): + class ExascaleDbStorageVaultsListByResourceGroup(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -263,7 +276,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/providers/Microsoft.MobileNetwork/simGroups", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults", **self.url_parameters ) @@ -278,6 +291,10 @@ def error_format(self): @property def url_parameters(self): parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -289,7 +306,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -324,9 +341,10 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) - _schema_on_200.value = AAZListType() + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) value = cls._schema_on_200.value value.Element = AAZObjectType() @@ -335,16 +353,13 @@ def _build_schema_on_200(cls): _element.id = AAZStrType( flags={"read_only": True}, ) - _element.identity = AAZObjectType() _element.location = AAZStrType( flags={"required": True}, ) _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -353,48 +368,64 @@ def _build_schema_on_200(cls): _element.type = AAZStrType( flags={"read_only": True}, ) + _element.zones = AAZListType() - identity = cls._schema_on_200.value.Element.identity - identity.type = AAZStrType( + properties = cls._schema_on_200.value.Element.properties + properties.additional_flash_cache_in_percent = AAZIntType( + serialized_name="additionalFlashCacheInPercent", + ) + properties.attached_shape_attributes = AAZListType( + serialized_name="attachedShapeAttributes", + flags={"read_only": True}, + ) + properties.description = AAZStrType() + properties.display_name = AAZStrType( + serialized_name="displayName", flags={"required": True}, ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", + properties.exadata_infrastructure_id = AAZStrType( + serialized_name="exadataInfrastructureId", ) - - user_assigned_identities = cls._schema_on_200.value.Element.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = cls._schema_on_200.value.Element.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", + properties.high_capacity_database_storage = AAZObjectType( + serialized_name="highCapacityDatabaseStorage", flags={"read_only": True}, ) - _element.principal_id = AAZStrType( - serialized_name="principalId", + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", flags={"read_only": True}, ) - - properties = cls._schema_on_200.value.Element.properties - properties.encryption_key = AAZObjectType( - serialized_name="encryptionKey", + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, ) - properties.mobile_network = AAZObjectType( - serialized_name="mobileNetwork", + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - - encryption_key = cls._schema_on_200.value.Element.properties.encryption_key - encryption_key.key_url = AAZStrType( - serialized_name="keyUrl", + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.vm_cluster_count = AAZIntType( + serialized_name="vmClusterCount", + flags={"read_only": True}, ) - mobile_network = cls._schema_on_200.value.Element.properties.mobile_network - mobile_network.id = AAZStrType( - flags={"required": True}, + attached_shape_attributes = cls._schema_on_200.value.Element.properties.attached_shape_attributes + attached_shape_attributes.Element = AAZStrType() + + high_capacity_database_storage = cls._schema_on_200.value.Element.properties.high_capacity_database_storage + high_capacity_database_storage.available_size_in_gbs = AAZIntType( + serialized_name="availableSizeInGbs", + ) + high_capacity_database_storage.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", ) system_data = cls._schema_on_200.value.Element.system_data @@ -420,6 +451,9 @@ def _build_schema_on_200(cls): tags = cls._schema_on_200.value.Element.tags tags.Element = AAZStrType() + zones = cls._schema_on_200.value.Element.zones + zones.Element = AAZStrType() + return cls._schema_on_200 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_show.py similarity index 65% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_show.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_show.py index f778cec2662..56bf7c4c8c9 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_show.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network sim group show", + "oracle-database exascale-db-storage-vault show", ) class Show(AAZCommand): - """Get information about the specified SIM group. + """Get a ExascaleDbStorageVault - :example: Show sim goup - az mobile-network sim group show -n sim-group-name -g rg + :example: ExascaleDbStorageVaults_Show + az oracle-database exascale-db-storage-vault show --resource-group rgopenapi --exascale-db-storage-vault-name storagevault1 """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exascaledbstoragevaults/{}", "2025-09-01"], ] } @@ -44,24 +44,23 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["-n", "--name", "--sim-group-name"], - help="The name of the SIM Group.", + _args_schema.exascale_db_storage_vault_name = AAZStrArg( + options=["-n", "--name", "--exascale-db-storage-vault-name"], + help="The name of the ExascaleDbStorageVault", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.SimGroupsGet(ctx=self.ctx)() + self.ExascaleDbStorageVaultsGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -76,7 +75,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class SimGroupsGet(AAZHttpOperation): + class ExascaleDbStorageVaultsGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -90,7 +89,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}", **self.url_parameters ) @@ -106,11 +105,11 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "exascaleDbStorageVaultName", self.ctx.args.exascale_db_storage_vault_name, required=True, ), **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, + "resourceGroupName", self.ctx.args.resource_group, required=True, ), **self.serialize_url_param( @@ -124,7 +123,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -160,16 +159,13 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.identity = AAZObjectType() _schema_on_200.location = AAZStrType( flags={"required": True}, ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -178,48 +174,64 @@ def _build_schema_on_200(cls): _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) + _schema_on_200.zones = AAZListType() - identity = cls._schema_on_200.identity - identity.type = AAZStrType( + properties = cls._schema_on_200.properties + properties.additional_flash_cache_in_percent = AAZIntType( + serialized_name="additionalFlashCacheInPercent", + ) + properties.attached_shape_attributes = AAZListType( + serialized_name="attachedShapeAttributes", + flags={"read_only": True}, + ) + properties.description = AAZStrType() + properties.display_name = AAZStrType( + serialized_name="displayName", flags={"required": True}, ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", + properties.exadata_infrastructure_id = AAZStrType( + serialized_name="exadataInfrastructureId", ) - - user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = cls._schema_on_200.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", + properties.high_capacity_database_storage = AAZObjectType( + serialized_name="highCapacityDatabaseStorage", flags={"read_only": True}, ) - _element.principal_id = AAZStrType( - serialized_name="principalId", + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", flags={"read_only": True}, ) - - properties = cls._schema_on_200.properties - properties.encryption_key = AAZObjectType( - serialized_name="encryptionKey", + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, ) - properties.mobile_network = AAZObjectType( - serialized_name="mobileNetwork", + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - - encryption_key = cls._schema_on_200.properties.encryption_key - encryption_key.key_url = AAZStrType( - serialized_name="keyUrl", + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.vm_cluster_count = AAZIntType( + serialized_name="vmClusterCount", + flags={"read_only": True}, ) - mobile_network = cls._schema_on_200.properties.mobile_network - mobile_network.id = AAZStrType( - flags={"required": True}, + attached_shape_attributes = cls._schema_on_200.properties.attached_shape_attributes + attached_shape_attributes.Element = AAZStrType() + + high_capacity_database_storage = cls._schema_on_200.properties.high_capacity_database_storage + high_capacity_database_storage.available_size_in_gbs = AAZIntType( + serialized_name="availableSizeInGbs", + ) + high_capacity_database_storage.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", ) system_data = cls._schema_on_200.system_data @@ -245,6 +257,9 @@ def _build_schema_on_200(cls): tags = cls._schema_on_200.tags tags.Element = AAZStrType() + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + return cls._schema_on_200 diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_update.py new file mode 100644 index 00000000000..39f94e28bac --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_update.py @@ -0,0 +1,559 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database exascale-db-storage-vault update", +) +class Update(AAZCommand): + """Update a ExascaleDbStorageVault + + :example: ExascaleDbStorageVaults_Update + az oracle-database exascale-db-storage-vault update --resource-group rgopenapi --exascale-db-storage-vault-name storagevault1 --zones "[eastus]" --tags "{key4521:New}" + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exascaledbstoragevaults/{}", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + AZ_SUPPORT_GENERIC_UPDATE = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.exascale_db_storage_vault_name = AAZStrArg( + options=["-n", "--name", "--exascale-db-storage-vault-name"], + help="The name of the ExascaleDbStorageVault", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Resource" + + _args_schema = cls._args_schema + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Resource", + help="Resource tags.", + nullable=True, + ) + _args_schema.zones = AAZListArg( + options=["--zones"], + arg_group="Resource", + help="The availability zones.", + nullable=True, + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg( + nullable=True, + ) + + zones = cls._args_schema.zones + zones.Element = AAZStrArg( + nullable=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.ExascaleDbStorageVaultsGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) + yield self.ExascaleDbStorageVaultsCreate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class ExascaleDbStorageVaultsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "exascaleDbStorageVaultName", self.ctx.args.exascale_db_storage_vault_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType() + + properties = cls._schema_on_200.properties + properties.additional_flash_cache_in_percent = AAZIntType( + serialized_name="additionalFlashCacheInPercent", + ) + properties.attached_shape_attributes = AAZListType( + serialized_name="attachedShapeAttributes", + flags={"read_only": True}, + ) + properties.description = AAZStrType() + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.exadata_infrastructure_id = AAZStrType( + serialized_name="exadataInfrastructureId", + ) + properties.high_capacity_database_storage = AAZObjectType( + serialized_name="highCapacityDatabaseStorage", + flags={"read_only": True}, + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.vm_cluster_count = AAZIntType( + serialized_name="vmClusterCount", + flags={"read_only": True}, + ) + + attached_shape_attributes = cls._schema_on_200.properties.attached_shape_attributes + attached_shape_attributes.Element = AAZStrType() + + high_capacity_database_storage = cls._schema_on_200.properties.high_capacity_database_storage + high_capacity_database_storage.available_size_in_gbs = AAZIntType( + serialized_name="availableSizeInGbs", + ) + high_capacity_database_storage.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + class ExascaleDbStorageVaultsCreate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "exascaleDbStorageVaultName", self.ctx.args.exascale_db_storage_vault_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.zones = AAZListType() + + properties = cls._schema_on_200_201.properties + properties.additional_flash_cache_in_percent = AAZIntType( + serialized_name="additionalFlashCacheInPercent", + ) + properties.attached_shape_attributes = AAZListType( + serialized_name="attachedShapeAttributes", + flags={"read_only": True}, + ) + properties.description = AAZStrType() + properties.display_name = AAZStrType( + serialized_name="displayName", + flags={"required": True}, + ) + properties.exadata_infrastructure_id = AAZStrType( + serialized_name="exadataInfrastructureId", + ) + properties.high_capacity_database_storage = AAZObjectType( + serialized_name="highCapacityDatabaseStorage", + flags={"read_only": True}, + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.vm_cluster_count = AAZIntType( + serialized_name="vmClusterCount", + flags={"read_only": True}, + ) + + attached_shape_attributes = cls._schema_on_200_201.properties.attached_shape_attributes + attached_shape_attributes.Element = AAZStrType() + + high_capacity_database_storage = cls._schema_on_200_201.properties.high_capacity_database_storage + high_capacity_database_storage.available_size_in_gbs = AAZIntType( + serialized_name="availableSizeInGbs", + ) + high_capacity_database_storage.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", + ) + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200_201.zones + zones.Element = AAZStrType() + + return cls._schema_on_200_201 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.vars.instance) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZObjectType + ) + _builder.set_prop("tags", AAZDictType, ".tags") + _builder.set_prop("zones", AAZListType, ".zones") + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + zones = _builder.get(".zones") + if zones is not None: + zones.set_elements(AAZStrType, ".") + + return _instance_value + + class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance_by_generic( + self.ctx.vars.instance, + self.ctx.generic_update_args + ) + + +class _UpdateHelper: + """Helper class for Update""" + + +__all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_wait.py similarity index 67% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_wait.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_wait.py index 7d5c305458f..f949d797918 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/group/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/exascale_db_storage_vault/_wait.py @@ -12,7 +12,7 @@ @register_command( - "mobile-network sim group wait", + "oracle-database exascale-db-storage-vault wait", ) class Wait(AAZWaitCommand): """Place the CLI in a waiting state until a condition is met. @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/simgroups/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/exascaledbstoragevaults/{}", "2025-09-01"], ] } @@ -40,24 +40,23 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.sim_group_name = AAZStrArg( - options=["-n", "--name", "--sim-group-name"], - help="The name of the SIM Group.", + _args_schema.exascale_db_storage_vault_name = AAZStrArg( + options=["-n", "--name", "--exascale-db-storage-vault-name"], + help="The name of the ExascaleDbStorageVault", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.SimGroupsGet(ctx=self.ctx)() + self.ExascaleDbStorageVaultsGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -72,7 +71,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) return result - class SimGroupsGet(AAZHttpOperation): + class ExascaleDbStorageVaultsGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -86,7 +85,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}", **self.url_parameters ) @@ -102,11 +101,11 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "exascaleDbStorageVaultName", self.ctx.args.exascale_db_storage_vault_name, required=True, ), **self.serialize_url_param( - "simGroupName", self.ctx.args.sim_group_name, + "resourceGroupName", self.ctx.args.resource_group, required=True, ), **self.serialize_url_param( @@ -120,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -156,16 +155,13 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.identity = AAZObjectType() _schema_on_200.location = AAZStrType( flags={"required": True}, ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -174,48 +170,64 @@ def _build_schema_on_200(cls): _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) + _schema_on_200.zones = AAZListType() - identity = cls._schema_on_200.identity - identity.type = AAZStrType( + properties = cls._schema_on_200.properties + properties.additional_flash_cache_in_percent = AAZIntType( + serialized_name="additionalFlashCacheInPercent", + ) + properties.attached_shape_attributes = AAZListType( + serialized_name="attachedShapeAttributes", + flags={"read_only": True}, + ) + properties.description = AAZStrType() + properties.display_name = AAZStrType( + serialized_name="displayName", flags={"required": True}, ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", + properties.exadata_infrastructure_id = AAZStrType( + serialized_name="exadataInfrastructureId", ) - - user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType() - - _element = cls._schema_on_200.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", + properties.high_capacity_database_storage = AAZObjectType( + serialized_name="highCapacityDatabaseStorage", flags={"read_only": True}, ) - _element.principal_id = AAZStrType( - serialized_name="principalId", + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", flags={"read_only": True}, ) - - properties = cls._schema_on_200.properties - properties.encryption_key = AAZObjectType( - serialized_name="encryptionKey", + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, ) - properties.mobile_network = AAZObjectType( - serialized_name="mobileNetwork", + properties.oci_url = AAZStrType( + serialized_name="ociUrl", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - - encryption_key = cls._schema_on_200.properties.encryption_key - encryption_key.key_url = AAZStrType( - serialized_name="keyUrl", + properties.time_zone = AAZStrType( + serialized_name="timeZone", + ) + properties.vm_cluster_count = AAZIntType( + serialized_name="vmClusterCount", + flags={"read_only": True}, ) - mobile_network = cls._schema_on_200.properties.mobile_network - mobile_network.id = AAZStrType( - flags={"required": True}, + attached_shape_attributes = cls._schema_on_200.properties.attached_shape_attributes + attached_shape_attributes.Element = AAZStrType() + + high_capacity_database_storage = cls._schema_on_200.properties.high_capacity_database_storage + high_capacity_database_storage.available_size_in_gbs = AAZIntType( + serialized_name="availableSizeInGbs", + ) + high_capacity_database_storage.total_size_in_gbs = AAZIntType( + serialized_name="totalSizeInGbs", ) system_data = cls._schema_on_200.system_data @@ -241,6 +253,9 @@ def _build_schema_on_200(cls): tags = cls._schema_on_200.tags tags.Element = AAZStrType() + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + return cls._schema_on_200 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/__cmd_group.py similarity index 89% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/__cmd_group.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/__cmd_group.py index fa6a1fa219a..2d4d610c744 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/__cmd_group.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/__cmd_group.py @@ -12,10 +12,10 @@ @register_command_group( - "mobile-network pccp", + "oracle-database flex-component", ) class __CMDGroup(AAZCommandGroup): - """Manage packet core control plane + """Manage Flex Component """ pass diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/__init__.py similarity index 85% rename from src/mobile-network/azext_mobile_network/aaz/latest/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/__init__.py index f6acc11aa4e..2df85698253 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/__init__.py @@ -8,3 +8,6 @@ # pylint: skip-file # flake8: noqa +from .__cmd_group import * +from ._list import * +from ._show import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/_list.py new file mode 100644 index 00000000000..0a2568f27d3 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/_list.py @@ -0,0 +1,251 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database flex-component list", +) +class List(AAZCommand): + """List FlexComponent resources by SubscriptionLocationResource + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/flexcomponents", "2025-09-01"], + ] + } + + AZ_SUPPORT_PAGINATION = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_paging(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + required=True, + ) + _args_schema.shape = AAZStrArg( + options=["--shape"], + help="If provided, filters the results for the given shape", + enum={"ExaDbXS": "ExaDbXS", "Exadata.X11M": "Exadata.X11M", "Exadata.X9M": "Exadata.X9M"}, + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.FlexComponentsListByParent(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) + next_link = self.deserialize_output(self.ctx.vars.instance.next_link) + return result, next_link + + class FlexComponentsListByParent(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/flexComponents", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "shape", self.ctx.args.shape, + ), + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.available_core_count = AAZIntType( + serialized_name="availableCoreCount", + flags={"read_only": True}, + ) + properties.available_db_storage_in_gbs = AAZIntType( + serialized_name="availableDbStorageInGbs", + flags={"read_only": True}, + ) + properties.available_local_storage_in_gbs = AAZIntType( + serialized_name="availableLocalStorageInGbs", + flags={"read_only": True}, + ) + properties.available_memory_in_gbs = AAZIntType( + serialized_name="availableMemoryInGbs", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) + properties.description_summary = AAZStrType( + serialized_name="descriptionSummary", + flags={"read_only": True}, + ) + properties.hardware_type = AAZStrType( + serialized_name="hardwareType", + flags={"read_only": True}, + ) + properties.minimum_core_count = AAZIntType( + serialized_name="minimumCoreCount", + flags={"read_only": True}, + ) + properties.runtime_minimum_core_count = AAZIntType( + serialized_name="runtimeMinimumCoreCount", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + +__all__ = ["List"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/_show.py new file mode 100644 index 00000000000..f2db02f270a --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/flex_component/_show.py @@ -0,0 +1,240 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database flex-component show", +) +class Show(AAZCommand): + """Get a FlexComponent + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/flexcomponents/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.flex_component_name = AAZStrArg( + options=["-n", "--name", "--flex-component-name"], + help="The name of the FlexComponent", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]{3,24}$", + ), + ) + _args_schema.location = AAZResourceLocationArg( + required=True, + id_part="name", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.FlexComponentsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class FlexComponentsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/flexComponents/{flexComponentName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "flexComponentName", self.ctx.args.flex_component_name, + required=True, + ), + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.available_core_count = AAZIntType( + serialized_name="availableCoreCount", + flags={"read_only": True}, + ) + properties.available_db_storage_in_gbs = AAZIntType( + serialized_name="availableDbStorageInGbs", + flags={"read_only": True}, + ) + properties.available_local_storage_in_gbs = AAZIntType( + serialized_name="availableLocalStorageInGbs", + flags={"read_only": True}, + ) + properties.available_memory_in_gbs = AAZIntType( + serialized_name="availableMemoryInGbs", + flags={"read_only": True}, + ) + properties.compute_model = AAZStrType( + serialized_name="computeModel", + flags={"read_only": True}, + ) + properties.description_summary = AAZStrType( + serialized_name="descriptionSummary", + flags={"read_only": True}, + ) + properties.hardware_type = AAZStrType( + serialized_name="hardwareType", + flags={"read_only": True}, + ) + properties.minimum_core_count = AAZIntType( + serialized_name="minimumCoreCount", + flags={"read_only": True}, + ) + properties.runtime_minimum_core_count = AAZIntType( + serialized_name="runtimeMinimumCoreCount", + flags={"read_only": True}, + ) + properties.shape = AAZStrType( + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/__cmd_group.py new file mode 100644 index 00000000000..6efccd8a0f5 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "oracle-database gi-minor-version", +) +class __CMDGroup(AAZCommandGroup): + """Manage Gi Minor Version + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/__init__.py similarity index 84% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/__init__.py index db73033039b..2df85698253 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/__init__.py @@ -9,9 +9,5 @@ # flake8: noqa from .__cmd_group import * -from ._create import * -from ._delete import * from ._list import * from ._show import * -from ._update import * -from ._wait import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/_list.py new file mode 100644 index 00000000000..7654a03a961 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/_list.py @@ -0,0 +1,233 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database gi-minor-version list", +) +class List(AAZCommand): + """List GiMinorVersion resources by GiVersion + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/giversions/{}/giminorversions", "2025-09-01"], + ] + } + + AZ_SUPPORT_PAGINATION = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_paging(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.giversionname = AAZStrArg( + options=["--giversionname"], + help="GiVersion name", + required=True, + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.location = AAZResourceLocationArg( + required=True, + ) + _args_schema.shape_family = AAZStrArg( + options=["--shape-family"], + help="If provided, filters the results to the set of database versions which are supported for the given shape family.", + enum={"EXADATA": "EXADATA", "EXADB_XS": "EXADB_XS"}, + ) + _args_schema.zone = AAZStrArg( + options=["--zone"], + help="Filters the result for the given Azure Availability Zone", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.GiMinorVersionsListByParent(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) + next_link = self.deserialize_output(self.ctx.vars.instance.next_link) + return result, next_link + + class GiMinorVersionsListByParent(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/giVersions/{giversionname}/giMinorVersions", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "giversionname", self.ctx.args.giversionname, + required=True, + ), + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "shapeFamily", self.ctx.args.shape_family, + ), + **self.serialize_query_param( + "zone", self.ctx.args.zone, + ), + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.version = AAZStrType( + flags={"required": True}, + ) + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + +__all__ = ["List"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/_show.py similarity index 72% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_show.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/_show.py index fa7870b4a07..b1b90dd4388 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_minor_version/_show.py @@ -12,19 +12,16 @@ @register_command( - "mobile-network data-network show", + "oracle-database gi-minor-version show", ) class Show(AAZCommand): - """Get information about the specified data network. - - :example: Show data-network - az mobile-network data-network show -n data-network-name --mobile-network-name mobile-network-name -g rg + """Get a GiMinorVersion """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/datanetworks/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/giversions/{}/giminorversions/{}", "2025-09-01"], ] } @@ -44,34 +41,33 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.data_network_name = AAZStrArg( - options=["-n", "--name", "--data-network-name"], - help="The name of the data network.", + _args_schema.gi_minor_version_name = AAZStrArg( + options=["-n", "--name", "--gi-minor-version-name"], + help="The name of the GiMinorVersion", required=True, - id_part="child_name_1", + id_part="child_name_2", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*(\.[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*)*$", - max_length=64, + pattern="^[a-zA-Z0-9-]{3,24}$", ), ) - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.giversionname = AAZStrArg( + options=["--giversionname"], + help="GiVersion name", required=True, - id_part="name", + id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) - _args_schema.resource_group = AAZResourceGroupNameArg( + _args_schema.location = AAZResourceLocationArg( required=True, + id_part="name", ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.DataNetworksGet(ctx=self.ctx)() + self.GiMinorVersionsGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -86,7 +82,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class DataNetworksGet(AAZHttpOperation): + class GiMinorVersionsGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -100,7 +96,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/giVersions/{giversionname}/giMinorVersions/{giMinorVersionName}", **self.url_parameters ) @@ -116,15 +112,15 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "dataNetworkName", self.ctx.args.data_network_name, + "giMinorVersionName", self.ctx.args.gi_minor_version_name, required=True, ), **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "giversionname", self.ctx.args.giversionname, required=True, ), **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "location", self.ctx.args.location, required=True, ), **self.serialize_url_param( @@ -138,7 +134,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -174,29 +170,24 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - _schema_on_200.tags = AAZDictType() _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.properties - properties.description = AAZStrType() - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, + properties.grid_image_ocid = AAZStrType( + serialized_name="gridImageOcid", + ) + properties.version = AAZStrType( + flags={"required": True}, ) system_data = cls._schema_on_200.system_data @@ -219,9 +210,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/__init__.py index d63ae5a6fc9..2df85698253 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/__init__.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/__init__.py @@ -10,3 +10,4 @@ from .__cmd_group import * from ._list import * +from ._show import * diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/_list.py index 5a12d6a62eb..603a68f21d7 100644 --- a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/_list.py @@ -22,9 +22,9 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/giversions", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/giversions", "2025-09-01"], ] } @@ -48,6 +48,23 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.location = AAZResourceLocationArg( required=True, ) + _args_schema.shape = AAZStrArg( + options=["--shape"], + help="If provided, filters the results for the given shape", + enum={"ExaDbXS": "ExaDbXS", "Exadata.X11M": "Exadata.X11M", "Exadata.X9M": "Exadata.X9M"}, + fmt=AAZStrArgFormat( + max_length=255, + min_length=1, + ), + ) + _args_schema.shape_attribute = AAZStrArg( + options=["--shape-attribute"], + help="Filters the result for the given Shape Attribute, such as BLOCK_STORAGE or SMART_STORAGE.", + ) + _args_schema.zone = AAZStrArg( + options=["--zone"], + help="Filters the result for the given Azure Availability Zone", + ) return cls._args_schema def _execute_operations(self): @@ -112,7 +129,16 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "shape", self.ctx.args.shape, + ), + **self.serialize_query_param( + "shapeAttribute", self.ctx.args.shape_attribute, + ), + **self.serialize_query_param( + "zone", self.ctx.args.zone, + ), + **self.serialize_query_param( + "api-version", "2025-09-01", required=True, ), } @@ -162,9 +188,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -175,7 +199,7 @@ def _build_schema_on_200(cls): properties = cls._schema_on_200.value.Element.properties properties.version = AAZStrType( - flags={"required": True, "read_only": True}, + flags={"required": True}, ) system_data = cls._schema_on_200.value.Element.system_data diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/_show.py new file mode 100644 index 00000000000..8f31003fa7d --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/gi_version/_show.py @@ -0,0 +1,207 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database gi-version show", +) +class Show(AAZCommand): + """Get a GiVersion + + :example: Get Gi Version + az oracle-database gi-version show --location --name + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/giversions/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.giversionname = AAZStrArg( + options=["-n", "--name", "--giversionname"], + help="GiVersion name", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.location = AAZResourceLocationArg( + required=True, + id_part="name", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.GiVersionsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class GiVersionsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/giVersions/{giversionname}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "giversionname", self.ctx.args.giversionname, + required=True, + ), + **self.serialize_url_param( + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.version = AAZStrType( + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/__cmd_group.py similarity index 89% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/__cmd_group.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/__cmd_group.py index 9ce3c80eb54..250b026679d 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/__cmd_group.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/__cmd_group.py @@ -12,10 +12,10 @@ @register_command_group( - "mobile-network pcdp", + "oracle-database network-anchor", ) class __CMDGroup(AAZCommandGroup): - """Manage packet core data plane + """Manage Network Anchor """ pass diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/__init__.py similarity index 100% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pcdp/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/__init__.py diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_create.py new file mode 100644 index 00000000000..41e71427c27 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_create.py @@ -0,0 +1,434 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database network-anchor create", +) +class Create(AAZCommand): + """Create a NetworkAnchor + + :example: NetworkAnchors_Create + az oracle-database network-anchor create --resource-group rgopenapi --network-anchor-name networkAnchor1 --resource-anchor-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgopenapi/providers/Oracle.Database/resourceAnchors/TestRA --subnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg000/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1 --oci-vcn-dns-label test --is-oracle-to-azure-dns-zone-sync-enabled True --is-oracle-dns-listening-endpoint-enabled True --is-oracle-dns-forwarding-endpoint-enabled True --dns-forwarding-rules "[{domain-names:'domain1, domain2',forwarding-ip-address:qe}]" --zones "[2]" --tags "{key:test}" --location eastus + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/networkanchors/{}", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.network_anchor_name = AAZStrArg( + options=["-n", "--name", "--network-anchor-name"], + help="The name of the NetworkAnchor", + required=True, + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]{3,24}$", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.dns_forwarding_rules = AAZListArg( + options=["--dns-forwarding-rules"], + arg_group="Properties", + help="DNS forwarding rules", + ) + _args_schema.dns_listening_endpoint_allowed_cidrs = AAZStrArg( + options=["--dns-listening-endpoint-allowed-cidrs"], + arg_group="Properties", + help="Comma-separated list of CIDRs that are allowed to send requests to the DNS listening endpoint", + ) + _args_schema.is_oracle_dns_forwarding_endpoint_enabled = AAZBoolArg( + options=["--is-oracle-dns-forwarding-endpoint-enabled"], + arg_group="Properties", + help="Indicates whether the Oracle DNS forwarding endpoint is enabled", + default=False, + ) + _args_schema.is_oracle_dns_listening_endpoint_enabled = AAZBoolArg( + options=["--is-oracle-dns-listening-endpoint-enabled"], + arg_group="Properties", + help="Indicates whether the Oracle DNS listening endpoint is enabled", + default=False, + ) + _args_schema.is_oracle_to_azure_dns_zone_sync_enabled = AAZBoolArg( + options=["--is-oracle-to-azure-dns-zone-sync-enabled"], + arg_group="Properties", + help="Indicates whether DNS zone sync from OCI to Azure is enabled", + default=False, + ) + _args_schema.oci_backup_cidr_block = AAZStrArg( + options=["--oci-backup-cidr-block"], + arg_group="Properties", + help="OCI backup subnet cidr block.", + ) + _args_schema.oci_vcn_dns_label = AAZStrArg( + options=["--oci-vcn-dns-label"], + arg_group="Properties", + help="OCI DNS label. This is optional if DNS config is provided.", + ) + _args_schema.resource_anchor_id = AAZStrArg( + options=["--resource-anchor-id"], + arg_group="Properties", + help="Corresponding resource anchor Azure ID", + ) + _args_schema.subnet_id = AAZStrArg( + options=["--subnet-id"], + arg_group="Properties", + help="Client subnet", + ) + + dns_forwarding_rules = cls._args_schema.dns_forwarding_rules + dns_forwarding_rules.Element = AAZObjectArg() + + _element = cls._args_schema.dns_forwarding_rules.Element + _element.domain_names = AAZStrArg( + options=["domain-names"], + help="Comma-separated domain names", + required=True, + ) + _element.forwarding_ip_address = AAZStrArg( + options=["forwarding-ip-address"], + help="Forwarding ip address", + required=True, + ) + + # define Arg Group "Resource" + + _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + arg_group="Resource", + help="The geo-location where the resource lives", + required=True, + fmt=AAZResourceLocationArgFormat( + resource_group_arg="resource_group", + ), + ) + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Resource", + help="Resource tags.", + ) + _args_schema.zones = AAZListArg( + options=["--zones"], + arg_group="Resource", + help="The availability zones.", + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg() + + zones = cls._args_schema.zones + zones.Element = AAZStrArg() + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.NetworkAnchorsCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class NetworkAnchorsCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "networkAnchorName", self.ctx.args.network_anchor_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("properties", AAZObjectType) + _builder.set_prop("tags", AAZDictType, ".tags") + _builder.set_prop("zones", AAZListType, ".zones") + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("dnsForwardingRules", AAZListType, ".dns_forwarding_rules") + properties.set_prop("dnsListeningEndpointAllowedCidrs", AAZStrType, ".dns_listening_endpoint_allowed_cidrs") + properties.set_prop("isOracleDnsForwardingEndpointEnabled", AAZBoolType, ".is_oracle_dns_forwarding_endpoint_enabled") + properties.set_prop("isOracleDnsListeningEndpointEnabled", AAZBoolType, ".is_oracle_dns_listening_endpoint_enabled") + properties.set_prop("isOracleToAzureDnsZoneSyncEnabled", AAZBoolType, ".is_oracle_to_azure_dns_zone_sync_enabled") + properties.set_prop("ociBackupCidrBlock", AAZStrType, ".oci_backup_cidr_block") + properties.set_prop("ociVcnDnsLabel", AAZStrType, ".oci_vcn_dns_label") + properties.set_prop("resourceAnchorId", AAZStrType, ".resource_anchor_id", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("subnetId", AAZStrType, ".subnet_id", typ_kwargs={"flags": {"required": True}}) + + dns_forwarding_rules = _builder.get(".properties.dnsForwardingRules") + if dns_forwarding_rules is not None: + dns_forwarding_rules.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.dnsForwardingRules[]") + if _elements is not None: + _elements.set_prop("domainNames", AAZStrType, ".domain_names", typ_kwargs={"flags": {"required": True}}) + _elements.set_prop("forwardingIpAddress", AAZStrType, ".forwarding_ip_address", typ_kwargs={"flags": {"required": True}}) + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + zones = _builder.get(".zones") + if zones is not None: + zones.set_elements(AAZStrType, ".") + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.zones = AAZListType() + + properties = cls._schema_on_200_201.properties + properties.cidr_block = AAZStrType( + serialized_name="cidrBlock", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_ip_address = AAZStrType( + serialized_name="dnsForwardingEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsForwardingEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.dns_forwarding_rules_url = AAZStrType( + serialized_name="dnsForwardingRulesUrl", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_ip_address = AAZStrType( + serialized_name="dnsListeningEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsListeningEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.is_oracle_dns_forwarding_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsForwardingEndpointEnabled", + ) + properties.is_oracle_dns_listening_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsListeningEndpointEnabled", + ) + properties.is_oracle_to_azure_dns_zone_sync_enabled = AAZBoolType( + serialized_name="isOracleToAzureDnsZoneSyncEnabled", + ) + properties.oci_backup_cidr_block = AAZStrType( + serialized_name="ociBackupCidrBlock", + ) + properties.oci_subnet_id = AAZStrType( + serialized_name="ociSubnetId", + flags={"read_only": True}, + ) + properties.oci_vcn_dns_label = AAZStrType( + serialized_name="ociVcnDnsLabel", + ) + properties.oci_vcn_id = AAZStrType( + serialized_name="ociVcnId", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200_201.zones + zones.Element = AAZStrType() + + return cls._schema_on_200_201 + + +class _CreateHelper: + """Helper class for Create""" + + +__all__ = ["Create"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_delete.py similarity index 80% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_delete.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_delete.py index 87a310bd5f8..595c3f2d328 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_delete.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_delete.py @@ -12,20 +12,20 @@ @register_command( - "mobile-network delete", + "oracle-database network-anchor delete", confirmation="Are you sure you want to perform this operation?", ) class Delete(AAZCommand): - """Delete the specified mobile network. + """Delete a NetworkAnchor - :example: Delete mobile-network - az mobile-network delete -n mobile-network-name -g rg -y + :example: NetworkAnchors_Delete + az oracle-database network-anchor delete --resource-group rgopenapi --network-anchor-name networkAnchor1 """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/networkanchors/{}", "2025-09-01"], ] } @@ -46,14 +46,13 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["-n", "--name", "--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.network_anchor_name = AAZStrArg( + options=["-n", "--name", "--network-anchor-name"], + help="The name of the NetworkAnchor", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern="^[a-zA-Z0-9-]{3,24}$", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( @@ -63,7 +62,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - yield self.MobileNetworksDelete(ctx=self.ctx)() + yield self.NetworkAnchorsDelete(ctx=self.ctx)() self.post_operations() @register_callback @@ -74,7 +73,7 @@ def pre_operations(self): def post_operations(self): pass - class MobileNetworksDelete(AAZHttpOperation): + class NetworkAnchorsDelete(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -84,25 +83,25 @@ def __call__(self, *args, **kwargs): return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [200]: + if session.http_response.status_code in [204]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_204, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [204]: + if session.http_response.status_code in [200, 201]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_204, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, @@ -113,7 +112,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}", **self.url_parameters ) @@ -129,7 +128,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "networkAnchorName", self.ctx.args.network_anchor_name, required=True, ), **self.serialize_url_param( @@ -147,16 +146,16 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } return parameters - def on_200(self, session): + def on_204(self, session): pass - def on_204(self, session): + def on_200_201(self, session): pass diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_list.py new file mode 100644 index 00000000000..e469c2c0ea2 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_list.py @@ -0,0 +1,478 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database network-anchor list", +) +class List(AAZCommand): + """List NetworkAnchor resources by subscription ID + + :example: NetworkAnchors_List + az oracle-database network-anchor list + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/networkanchors", "2025-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/networkanchors", "2025-09-01"], + ] + } + + AZ_SUPPORT_PAGINATION = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_paging(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg() + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + condition_0 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_1 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) + if condition_0: + self.NetworkAnchorsListBySubscription(ctx=self.ctx)() + if condition_1: + self.NetworkAnchorsListByResourceGroup(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) + next_link = self.deserialize_output(self.ctx.vars.instance.next_link) + return result, next_link + + class NetworkAnchorsListBySubscription(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/networkAnchors", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + _element.zones = AAZListType() + + properties = cls._schema_on_200.value.Element.properties + properties.cidr_block = AAZStrType( + serialized_name="cidrBlock", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_ip_address = AAZStrType( + serialized_name="dnsForwardingEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsForwardingEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.dns_forwarding_rules_url = AAZStrType( + serialized_name="dnsForwardingRulesUrl", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_ip_address = AAZStrType( + serialized_name="dnsListeningEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsListeningEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.is_oracle_dns_forwarding_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsForwardingEndpointEnabled", + ) + properties.is_oracle_dns_listening_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsListeningEndpointEnabled", + ) + properties.is_oracle_to_azure_dns_zone_sync_enabled = AAZBoolType( + serialized_name="isOracleToAzureDnsZoneSyncEnabled", + ) + properties.oci_backup_cidr_block = AAZStrType( + serialized_name="ociBackupCidrBlock", + ) + properties.oci_subnet_id = AAZStrType( + serialized_name="ociSubnetId", + flags={"read_only": True}, + ) + properties.oci_vcn_dns_label = AAZStrType( + serialized_name="ociVcnDnsLabel", + ) + properties.oci_vcn_id = AAZStrType( + serialized_name="ociVcnId", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.value.Element.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + class NetworkAnchorsListByResourceGroup(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType() + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + _element.zones = AAZListType() + + properties = cls._schema_on_200.value.Element.properties + properties.cidr_block = AAZStrType( + serialized_name="cidrBlock", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_ip_address = AAZStrType( + serialized_name="dnsForwardingEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsForwardingEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.dns_forwarding_rules_url = AAZStrType( + serialized_name="dnsForwardingRulesUrl", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_ip_address = AAZStrType( + serialized_name="dnsListeningEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsListeningEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.is_oracle_dns_forwarding_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsForwardingEndpointEnabled", + ) + properties.is_oracle_dns_listening_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsListeningEndpointEnabled", + ) + properties.is_oracle_to_azure_dns_zone_sync_enabled = AAZBoolType( + serialized_name="isOracleToAzureDnsZoneSyncEnabled", + ) + properties.oci_backup_cidr_block = AAZStrType( + serialized_name="ociBackupCidrBlock", + ) + properties.oci_subnet_id = AAZStrType( + serialized_name="ociSubnetId", + flags={"read_only": True}, + ) + properties.oci_vcn_dns_label = AAZStrType( + serialized_name="ociVcnDnsLabel", + ) + properties.oci_vcn_id = AAZStrType( + serialized_name="ociVcnId", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.value.Element.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + +__all__ = ["List"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_show.py new file mode 100644 index 00000000000..e420cc09b28 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_show.py @@ -0,0 +1,277 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database network-anchor show", +) +class Show(AAZCommand): + """Get a NetworkAnchor + + :example: NetworkAnchors_Show + az oracle-database network-anchor show --resource-group rgopenapi --network-anchor-name networkanchor1 + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/networkanchors/{}", "2025-09-01"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.network_anchor_name = AAZStrArg( + options=["-n", "--name", "--network-anchor-name"], + help="The name of the NetworkAnchor", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]{3,24}$", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.NetworkAnchorsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class NetworkAnchorsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "networkAnchorName", self.ctx.args.network_anchor_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType() + + properties = cls._schema_on_200.properties + properties.cidr_block = AAZStrType( + serialized_name="cidrBlock", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_ip_address = AAZStrType( + serialized_name="dnsForwardingEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsForwardingEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.dns_forwarding_rules_url = AAZStrType( + serialized_name="dnsForwardingRulesUrl", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_ip_address = AAZStrType( + serialized_name="dnsListeningEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsListeningEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.is_oracle_dns_forwarding_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsForwardingEndpointEnabled", + ) + properties.is_oracle_dns_listening_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsListeningEndpointEnabled", + ) + properties.is_oracle_to_azure_dns_zone_sync_enabled = AAZBoolType( + serialized_name="isOracleToAzureDnsZoneSyncEnabled", + ) + properties.oci_backup_cidr_block = AAZStrType( + serialized_name="ociBackupCidrBlock", + ) + properties.oci_subnet_id = AAZStrType( + serialized_name="ociSubnetId", + flags={"read_only": True}, + ) + properties.oci_vcn_dns_label = AAZStrType( + serialized_name="ociVcnDnsLabel", + ) + properties.oci_vcn_id = AAZStrType( + serialized_name="ociVcnId", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_update.py new file mode 100644 index 00000000000..37fc3bfd346 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_update.py @@ -0,0 +1,609 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database network-anchor update", +) +class Update(AAZCommand): + """Update a NetworkAnchor + + :example: NetworkAnchors_Update + az oracle-database network-anchor update --resource-group rgopenapi --network-anchor-name networkAnchor1 --oci-backup-cidr-block i --is-oracle-to-azure-dns-zone-sync-enabled True --is-oracle-dns-listening-endpoint-enabled True --is-oracle-dns-forwarding-endpoint-enabled True --zones "[2]" --tags "{key4863:New}" + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/networkanchors/{}", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + AZ_SUPPORT_GENERIC_UPDATE = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.network_anchor_name = AAZStrArg( + options=["-n", "--name", "--network-anchor-name"], + help="The name of the NetworkAnchor", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]{3,24}$", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.is_oracle_dns_forwarding_endpoint_enabled = AAZBoolArg( + options=["--is-oracle-dns-forwarding-endpoint-enabled"], + arg_group="Properties", + help="Indicates whether the Oracle DNS forwarding endpoint is enabled", + nullable=True, + ) + _args_schema.is_oracle_dns_listening_endpoint_enabled = AAZBoolArg( + options=["--is-oracle-dns-listening-endpoint-enabled"], + arg_group="Properties", + help="Indicates whether the Oracle DNS listening endpoint is enabled", + nullable=True, + ) + _args_schema.is_oracle_to_azure_dns_zone_sync_enabled = AAZBoolArg( + options=["--is-oracle-to-azure-dns-zone-sync-enabled"], + arg_group="Properties", + help="Indicates whether DNS zone sync from OCI to Azure is enabled", + nullable=True, + ) + _args_schema.oci_backup_cidr_block = AAZStrArg( + options=["--oci-backup-cidr-block"], + arg_group="Properties", + help="OCI backup subnet cidr block.", + nullable=True, + ) + + # define Arg Group "Resource" + + _args_schema = cls._args_schema + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Resource", + help="Resource tags.", + nullable=True, + ) + _args_schema.zones = AAZListArg( + options=["--zones"], + arg_group="Resource", + help="The availability zones.", + nullable=True, + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg( + nullable=True, + ) + + zones = cls._args_schema.zones + zones.Element = AAZStrArg( + nullable=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.NetworkAnchorsGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) + yield self.NetworkAnchorsCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class NetworkAnchorsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "networkAnchorName", self.ctx.args.network_anchor_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.zones = AAZListType() + + properties = cls._schema_on_200.properties + properties.cidr_block = AAZStrType( + serialized_name="cidrBlock", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_ip_address = AAZStrType( + serialized_name="dnsForwardingEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsForwardingEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.dns_forwarding_rules_url = AAZStrType( + serialized_name="dnsForwardingRulesUrl", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_ip_address = AAZStrType( + serialized_name="dnsListeningEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsListeningEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.is_oracle_dns_forwarding_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsForwardingEndpointEnabled", + ) + properties.is_oracle_dns_listening_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsListeningEndpointEnabled", + ) + properties.is_oracle_to_azure_dns_zone_sync_enabled = AAZBoolType( + serialized_name="isOracleToAzureDnsZoneSyncEnabled", + ) + properties.oci_backup_cidr_block = AAZStrType( + serialized_name="ociBackupCidrBlock", + ) + properties.oci_subnet_id = AAZStrType( + serialized_name="ociSubnetId", + flags={"read_only": True}, + ) + properties.oci_vcn_dns_label = AAZStrType( + serialized_name="ociVcnDnsLabel", + ) + properties.oci_vcn_id = AAZStrType( + serialized_name="ociVcnId", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + + return cls._schema_on_200 + + class NetworkAnchorsCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "networkAnchorName", self.ctx.args.network_anchor_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.zones = AAZListType() + + properties = cls._schema_on_200_201.properties + properties.cidr_block = AAZStrType( + serialized_name="cidrBlock", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_ip_address = AAZStrType( + serialized_name="dnsForwardingEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_forwarding_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsForwardingEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.dns_forwarding_rules_url = AAZStrType( + serialized_name="dnsForwardingRulesUrl", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_ip_address = AAZStrType( + serialized_name="dnsListeningEndpointIpAddress", + flags={"read_only": True}, + ) + properties.dns_listening_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsListeningEndpointNsgRulesUrl", + flags={"read_only": True}, + ) + properties.is_oracle_dns_forwarding_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsForwardingEndpointEnabled", + ) + properties.is_oracle_dns_listening_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsListeningEndpointEnabled", + ) + properties.is_oracle_to_azure_dns_zone_sync_enabled = AAZBoolType( + serialized_name="isOracleToAzureDnsZoneSyncEnabled", + ) + properties.oci_backup_cidr_block = AAZStrType( + serialized_name="ociBackupCidrBlock", + ) + properties.oci_subnet_id = AAZStrType( + serialized_name="ociSubnetId", + flags={"read_only": True}, + ) + properties.oci_vcn_dns_label = AAZStrType( + serialized_name="ociVcnDnsLabel", + ) + properties.oci_vcn_id = AAZStrType( + serialized_name="ociVcnId", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", + flags={"required": True}, + ) + properties.subnet_id = AAZStrType( + serialized_name="subnetId", + flags={"required": True}, + ) + properties.vnet_id = AAZStrType( + serialized_name="vnetId", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() + + zones = cls._schema_on_200_201.zones + zones.Element = AAZStrType() + + return cls._schema_on_200_201 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.vars.instance) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZObjectType + ) + _builder.set_prop("properties", AAZObjectType) + _builder.set_prop("tags", AAZDictType, ".tags") + _builder.set_prop("zones", AAZListType, ".zones") + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("isOracleDnsForwardingEndpointEnabled", AAZBoolType, ".is_oracle_dns_forwarding_endpoint_enabled") + properties.set_prop("isOracleDnsListeningEndpointEnabled", AAZBoolType, ".is_oracle_dns_listening_endpoint_enabled") + properties.set_prop("isOracleToAzureDnsZoneSyncEnabled", AAZBoolType, ".is_oracle_to_azure_dns_zone_sync_enabled") + properties.set_prop("ociBackupCidrBlock", AAZStrType, ".oci_backup_cidr_block") + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + zones = _builder.get(".zones") + if zones is not None: + zones.set_elements(AAZStrType, ".") + + return _instance_value + + class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance_by_generic( + self.ctx.vars.instance, + self.ctx.generic_update_args + ) + + +class _UpdateHelper: + """Helper class for Update""" + + +__all__ = ["Update"] diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_wait.py similarity index 67% rename from src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_wait.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_wait.py index 642a3290589..133d1818775 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/network_anchor/_wait.py @@ -12,7 +12,7 @@ @register_command( - "pscloud pool wait", + "oracle-database network-anchor wait", ) class Wait(AAZWaitCommand): """Place the CLI in a waiting state until a condition is met. @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/purestorage.block/storagepools/{}", "2024-11-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/networkanchors/{}", "2025-09-01"], ] } @@ -40,25 +40,23 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.resource_group = AAZResourceGroupNameArg( - required=True, - ) - _args_schema.storage_pool_name = AAZStrArg( - options=["-n", "--name", "--storage-pool-name"], - help="Name of the storage pool", + _args_schema.network_anchor_name = AAZStrArg( + options=["-n", "--name", "--network-anchor-name"], + help="The name of the NetworkAnchor", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9\\-_]{1,127}$", - max_length=127, - min_length=1, + pattern="^[a-zA-Z0-9-]{3,24}$", ), ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.StoragePoolsGet(ctx=self.ctx)() + self.NetworkAnchorsGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -73,7 +71,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) return result - class StoragePoolsGet(AAZHttpOperation): + class NetworkAnchorsGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -87,7 +85,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/PureStorage.Block/storagePools/{storagePoolName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}", **self.url_parameters ) @@ -103,11 +101,11 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "networkAnchorName", self.ctx.args.network_anchor_name, required=True, ), **self.serialize_url_param( - "storagePoolName", self.ctx.args.storage_pool_name, + "resourceGroupName", self.ctx.args.resource_group, required=True, ), **self.serialize_url_param( @@ -121,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2024-11-01", + "api-version", "2025-09-01", required=True, ), } @@ -157,16 +155,13 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.identity = AAZIdentityObjectType() _schema_on_200.location = AAZStrType( flags={"required": True}, ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -175,92 +170,71 @@ def _build_schema_on_200(cls): _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) + _schema_on_200.zones = AAZListType() - identity = cls._schema_on_200.identity - identity.principal_id = AAZStrType( - serialized_name="principalId", + properties = cls._schema_on_200.properties + properties.cidr_block = AAZStrType( + serialized_name="cidrBlock", flags={"read_only": True}, ) - identity.tenant_id = AAZStrType( - serialized_name="tenantId", + properties.dns_forwarding_endpoint_ip_address = AAZStrType( + serialized_name="dnsForwardingEndpointIpAddress", flags={"read_only": True}, ) - identity.type = AAZStrType( - flags={"required": True}, - ) - identity.user_assigned_identities = AAZDictType( - serialized_name="userAssignedIdentities", + properties.dns_forwarding_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsForwardingEndpointNsgRulesUrl", + flags={"read_only": True}, ) - - user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities - user_assigned_identities.Element = AAZObjectType( - nullable=True, + properties.dns_forwarding_rules_url = AAZStrType( + serialized_name="dnsForwardingRulesUrl", + flags={"read_only": True}, ) - - _element = cls._schema_on_200.identity.user_assigned_identities.Element - _element.client_id = AAZStrType( - serialized_name="clientId", + properties.dns_listening_endpoint_ip_address = AAZStrType( + serialized_name="dnsListeningEndpointIpAddress", flags={"read_only": True}, ) - _element.principal_id = AAZStrType( - serialized_name="principalId", + properties.dns_listening_endpoint_nsg_rules_url = AAZStrType( + serialized_name="dnsListeningEndpointNsgRulesUrl", flags={"read_only": True}, ) - - properties = cls._schema_on_200.properties - properties.availability_zone = AAZStrType( - serialized_name="availabilityZone", - flags={"required": True}, + properties.is_oracle_dns_forwarding_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsForwardingEndpointEnabled", ) - properties.avs = AAZObjectType( - flags={"read_only": True}, + properties.is_oracle_dns_listening_endpoint_enabled = AAZBoolType( + serialized_name="isOracleDnsListeningEndpointEnabled", + ) + properties.is_oracle_to_azure_dns_zone_sync_enabled = AAZBoolType( + serialized_name="isOracleToAzureDnsZoneSyncEnabled", ) - properties.data_retention_period = AAZIntType( - serialized_name="dataRetentionPeriod", + properties.oci_backup_cidr_block = AAZStrType( + serialized_name="ociBackupCidrBlock", + ) + properties.oci_subnet_id = AAZStrType( + serialized_name="ociSubnetId", flags={"read_only": True}, ) - properties.provisioned_bandwidth_mb_per_sec = AAZIntType( - serialized_name="provisionedBandwidthMbPerSec", - flags={"required": True}, + properties.oci_vcn_dns_label = AAZStrType( + serialized_name="ociVcnDnsLabel", ) - properties.provisioned_iops = AAZIntType( - serialized_name="provisionedIops", + properties.oci_vcn_id = AAZStrType( + serialized_name="ociVcnId", flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - properties.reservation_resource_id = AAZStrType( - serialized_name="reservationResourceId", - flags={"required": True}, - ) - properties.storage_pool_internal_id = AAZStrType( - serialized_name="storagePoolInternalId", - flags={"read_only": True}, - ) - properties.vnet_injection = AAZObjectType( - serialized_name="vnetInjection", + properties.resource_anchor_id = AAZStrType( + serialized_name="resourceAnchorId", flags={"required": True}, ) - - avs = cls._schema_on_200.properties.avs - avs.avs_enabled = AAZBoolType( - serialized_name="avsEnabled", - flags={"required": True}, - ) - avs.sddc_resource_id = AAZStrType( - serialized_name="sddcResourceId", - ) - - vnet_injection = cls._schema_on_200.properties.vnet_injection - vnet_injection.subnet_id = AAZStrType( + properties.subnet_id = AAZStrType( serialized_name="subnetId", flags={"required": True}, ) - vnet_injection.vnet_id = AAZStrType( + properties.vnet_id = AAZStrType( serialized_name="vnetId", - flags={"required": True}, + flags={"read_only": True}, ) system_data = cls._schema_on_200.system_data @@ -286,6 +260,9 @@ def _build_schema_on_200(cls): tags = cls._schema_on_200.tags tags.Element = AAZStrType() + zones = cls._schema_on_200.zones + zones.Element = AAZStrType() + return cls._schema_on_200 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/__cmd_group.py similarity index 89% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/__cmd_group.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/__cmd_group.py index 89e3690a0c5..6ccc29942ee 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/__cmd_group.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/__cmd_group.py @@ -12,10 +12,10 @@ @register_command_group( - "mobile-network data-network", + "oracle-database resource-anchor", ) class __CMDGroup(AAZCommandGroup): - """Manage data network + """Manage Resource Anchor """ pass diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/__init__.py similarity index 100% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/__init__.py diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_create.py similarity index 79% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_create.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_create.py index 648337bbd50..cbf0e39a8ba 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/site/_create.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_create.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network site create", + "oracle-database resource-anchor create", ) class Create(AAZCommand): - """Create a mobile network site. + """Create a ResourceAnchor - :example: Create site - az mobile-network site create --mobile-network-name mobile-network-name -n site-name -g rg + :example: ResourceAnchors_Create + az oracle-database resource-anchor create --resource-group rgopenapi --resource-anchor-name resourceanchor1 --tags "{key236:wbucrnidikivbujndfk}" --location at """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/sites/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/resourceanchors/{}", "2025-09-01"], ] } @@ -45,33 +45,23 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.resource_anchor_name = AAZStrArg( + options=["-n", "--name", "--resource-anchor-name"], + help="The name of the ResourceAnchor", required=True, fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern="^[a-zA-Z0-9-]{3,24}$", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.site_name = AAZStrArg( - options=["-n", "--name", "--site-name"], - help="The name of the mobile network site.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - # define Arg Group "Parameters" + # define Arg Group "Resource" _args_schema = cls._args_schema _args_schema.location = AAZResourceLocationArg( - arg_group="Parameters", + arg_group="Resource", help="The geo-location where the resource lives", required=True, fmt=AAZResourceLocationArgFormat( @@ -80,7 +70,7 @@ def _build_arguments_schema(cls, *args, **kwargs): ) _args_schema.tags = AAZDictArg( options=["--tags"], - arg_group="Parameters", + arg_group="Resource", help="Resource tags.", ) @@ -90,7 +80,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - yield self.SitesCreateOrUpdate(ctx=self.ctx)() + yield self.ResourceAnchorsCreateOrUpdate(ctx=self.ctx)() self.post_operations() @register_callback @@ -105,7 +95,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class SitesCreateOrUpdate(AAZHttpOperation): + class ResourceAnchorsCreateOrUpdate(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -135,7 +125,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/sites/{siteName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}", **self.url_parameters ) @@ -151,17 +141,13 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "resourceAnchorName", self.ctx.args.resource_anchor_name, required=True, ), **self.serialize_url_param( "resourceGroupName", self.ctx.args.resource_group, required=True, ), - **self.serialize_url_param( - "siteName", self.ctx.args.site_name, - required=True, - ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -173,7 +159,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -234,9 +220,7 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200_201.properties = AAZObjectType() _schema_on_200_201.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -247,8 +231,8 @@ def _build_schema_on_200_201(cls): ) properties = cls._schema_on_200_201.properties - properties.network_functions = AAZListType( - serialized_name="networkFunctions", + properties.linked_compartment_id = AAZStrType( + serialized_name="linkedCompartmentId", flags={"read_only": True}, ) properties.provisioning_state = AAZStrType( @@ -256,14 +240,6 @@ def _build_schema_on_200_201(cls): flags={"read_only": True}, ) - network_functions = cls._schema_on_200_201.properties.network_functions - network_functions.Element = AAZObjectType() - - _element = cls._schema_on_200_201.properties.network_functions.Element - _element.id = AAZStrType( - flags={"required": True}, - ) - system_data = cls._schema_on_200_201.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_delete.py new file mode 100644 index 00000000000..b3409127257 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_delete.py @@ -0,0 +1,166 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database resource-anchor delete", + confirmation="Are you sure you want to perform this operation?", +) +class Delete(AAZCommand): + """Delete a ResourceAnchor + + :example: ResourceAnchors_Delete + az oracle-database resource-anchor delete --resource-group rgopenapi --resource-anchor-name resourceanchor1 + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/resourceanchors/{}", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, None) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_anchor_name = AAZStrArg( + options=["-n", "--name", "--resource-anchor-name"], + help="The name of the ResourceAnchor", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]{3,24}$", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.ResourceAnchorsDelete(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + class ResourceAnchorsDelete(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [204]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_204, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}", + **self.url_parameters + ) + + @property + def method(self): + return "DELETE" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceAnchorName", self.ctx.args.resource_anchor_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + def on_204(self, session): + pass + + def on_200_201(self, session): + pass + + +class _DeleteHelper: + """Helper class for Delete""" + + +__all__ = ["Delete"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_list.py similarity index 78% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_list.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_list.py index f4c28ea8399..0913776e88b 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_list.py @@ -12,20 +12,20 @@ @register_command( - "mobile-network list", + "oracle-database resource-anchor list", ) class List(AAZCommand): - """List all the mobile networks in a subscription. + """List ResourceAnchor resources by subscription ID - :example: List mobile-network by resource group - az mobile-network list -g rg + :example: ResourceAnchors_List + az oracle-database resource-anchor list """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.mobilenetwork/mobilenetworks", "2023-09-01"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/resourceanchors", "2025-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/resourceanchors", "2025-09-01"], ] } @@ -51,12 +51,12 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - condition_0 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) - condition_1 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_0 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + condition_1 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) if condition_0: - self.MobileNetworksListByResourceGroup(ctx=self.ctx)() + self.ResourceAnchorsListBySubscription(ctx=self.ctx)() if condition_1: - self.MobileNetworksListBySubscription(ctx=self.ctx)() + self.ResourceAnchorsListByResourceGroup(ctx=self.ctx)() self.post_operations() @register_callback @@ -72,7 +72,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class MobileNetworksListByResourceGroup(AAZHttpOperation): + class ResourceAnchorsListBySubscription(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -86,7 +86,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/resourceAnchors", **self.url_parameters ) @@ -101,10 +101,6 @@ def error_format(self): @property def url_parameters(self): parameters = { - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, - required=True, - ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -116,7 +112,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -151,9 +147,10 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) - _schema_on_200.value = AAZListType() + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) value = cls._schema_on_200.value value.Element = AAZObjectType() @@ -168,9 +165,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -181,27 +176,15 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.value.Element.properties - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", + properties.linked_compartment_id = AAZStrType( + serialized_name="linkedCompartmentId", flags={"read_only": True}, ) - properties.public_land_mobile_network_identifier = AAZObjectType( - serialized_name="publicLandMobileNetworkIdentifier", - flags={"required": True}, - ) - properties.service_key = AAZStrType( - serialized_name="serviceKey", + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", flags={"read_only": True}, ) - public_land_mobile_network_identifier = cls._schema_on_200.value.Element.properties.public_land_mobile_network_identifier - public_land_mobile_network_identifier.mcc = AAZStrType( - flags={"required": True}, - ) - public_land_mobile_network_identifier.mnc = AAZStrType( - flags={"required": True}, - ) - system_data = cls._schema_on_200.value.Element.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", @@ -227,7 +210,7 @@ def _build_schema_on_200(cls): return cls._schema_on_200 - class MobileNetworksListBySubscription(AAZHttpOperation): + class ResourceAnchorsListByResourceGroup(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -241,7 +224,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/providers/Microsoft.MobileNetwork/mobileNetworks", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors", **self.url_parameters ) @@ -256,6 +239,10 @@ def error_format(self): @property def url_parameters(self): parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), **self.serialize_url_param( "subscriptionId", self.ctx.subscription_id, required=True, @@ -267,7 +254,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -302,9 +289,10 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) - _schema_on_200.value = AAZListType() + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) value = cls._schema_on_200.value value.Element = AAZObjectType() @@ -319,9 +307,7 @@ def _build_schema_on_200(cls): _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -332,27 +318,15 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.value.Element.properties - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", + properties.linked_compartment_id = AAZStrType( + serialized_name="linkedCompartmentId", flags={"read_only": True}, ) - properties.public_land_mobile_network_identifier = AAZObjectType( - serialized_name="publicLandMobileNetworkIdentifier", - flags={"required": True}, - ) - properties.service_key = AAZStrType( - serialized_name="serviceKey", + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", flags={"read_only": True}, ) - public_land_mobile_network_identifier = cls._schema_on_200.value.Element.properties.public_land_mobile_network_identifier - public_land_mobile_network_identifier.mcc = AAZStrType( - flags={"required": True}, - ) - public_land_mobile_network_identifier.mnc = AAZStrType( - flags={"required": True}, - ) - system_data = cls._schema_on_200.value.Element.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_show.py similarity index 78% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_show.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_show.py index 89909821b6a..e5fbd8182c2 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_show.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network show", + "oracle-database resource-anchor show", ) class Show(AAZCommand): - """Get information about the specified mobile network. + """Get a ResourceAnchor - :example: Show mobile-network - az mobile-network show -n mobile-network-name -g rg + :example: ResourceAnchors_Show + az oracle-database resource-anchor show --resource-group rgopenapi --resource-anchor-name resourceanchor1 """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/resourceanchors/{}", "2025-09-01"], ] } @@ -44,14 +44,13 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["-n", "--name", "--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.resource_anchor_name = AAZStrArg( + options=["-n", "--name", "--resource-anchor-name"], + help="The name of the ResourceAnchor", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern="^[a-zA-Z0-9-]{3,24}$", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( @@ -61,7 +60,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - self.MobileNetworksGet(ctx=self.ctx)() + self.ResourceAnchorsGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -76,7 +75,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class MobileNetworksGet(AAZHttpOperation): + class ResourceAnchorsGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -90,7 +89,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}", **self.url_parameters ) @@ -106,7 +105,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "resourceAnchorName", self.ctx.args.resource_anchor_name, required=True, ), **self.serialize_url_param( @@ -124,7 +123,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -166,9 +165,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -179,27 +176,15 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.properties - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", + properties.linked_compartment_id = AAZStrType( + serialized_name="linkedCompartmentId", flags={"read_only": True}, ) - properties.public_land_mobile_network_identifier = AAZObjectType( - serialized_name="publicLandMobileNetworkIdentifier", - flags={"required": True}, - ) - properties.service_key = AAZStrType( - serialized_name="serviceKey", + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", flags={"read_only": True}, ) - public_land_mobile_network_identifier = cls._schema_on_200.properties.public_land_mobile_network_identifier - public_land_mobile_network_identifier.mcc = AAZStrType( - flags={"required": True}, - ) - public_land_mobile_network_identifier.mnc = AAZStrType( - flags={"required": True}, - ) - system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( serialized_name="createdAt", diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_update.py similarity index 61% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_update.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_update.py index b68b372ddd4..64c9a0cec62 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_update.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_update.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network data-network update", + "oracle-database resource-anchor update", ) class Update(AAZCommand): - """Update a data network. + """Update a ResourceAnchor - :example: Update data-network tags - az mobile-network data-network update -n data-network-name -g rg --mobile-network-name mobile-network-name --tags "{tag:test,tag2:test2}" + :example: ResourceAnchors_Update + az oracle-database resource-anchor update --resource-group rgopenapi --resource-anchor-name resourceanchor1 --tags "{key236:new}" """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/datanetworks/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/resourceanchors/{}", "2025-09-01"], ] } @@ -47,36 +47,25 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.data_network_name = AAZStrArg( - options=["-n", "--name", "--data-network-name"], - help="The name of the data network.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*(\.[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*)*$", - max_length=64, - ), - ) - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.resource_anchor_name = AAZStrArg( + options=["-n", "--name", "--resource-anchor-name"], + help="The name of the ResourceAnchor", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern="^[a-zA-Z0-9-]{3,24}$", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - # define Arg Group "Parameters" + # define Arg Group "Resource" _args_schema = cls._args_schema _args_schema.tags = AAZDictArg( options=["--tags"], - arg_group="Parameters", + arg_group="Resource", help="Resource tags.", nullable=True, ) @@ -85,26 +74,16 @@ def _build_arguments_schema(cls, *args, **kwargs): tags.Element = AAZStrArg( nullable=True, ) - - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.description = AAZStrArg( - options=["--description"], - arg_group="Properties", - help="An optional description for this data network.", - nullable=True, - ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.DataNetworksGet(ctx=self.ctx)() + self.ResourceAnchorsGet(ctx=self.ctx)() self.pre_instance_update(self.ctx.vars.instance) self.InstanceUpdateByJson(ctx=self.ctx)() self.InstanceUpdateByGeneric(ctx=self.ctx)() self.post_instance_update(self.ctx.vars.instance) - yield self.DataNetworksCreateOrUpdate(ctx=self.ctx)() + yield self.ResourceAnchorsCreateOrUpdate(ctx=self.ctx)() self.post_operations() @register_callback @@ -127,7 +106,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class DataNetworksGet(AAZHttpOperation): + class ResourceAnchorsGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -141,7 +120,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}", **self.url_parameters ) @@ -157,11 +136,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "dataNetworkName", self.ctx.args.data_network_name, - required=True, - ), - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "resourceAnchorName", self.ctx.args.resource_anchor_name, required=True, ), **self.serialize_url_param( @@ -179,7 +154,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -210,11 +185,63 @@ def _build_schema_on_200(cls): return cls._schema_on_200 cls._schema_on_200 = AAZObjectType() - _UpdateHelper._build_schema_data_network_read(cls._schema_on_200) + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.linked_compartment_id = AAZStrType( + serialized_name="linkedCompartmentId", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() return cls._schema_on_200 - class DataNetworksCreateOrUpdate(AAZHttpOperation): + class ResourceAnchorsCreateOrUpdate(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -244,7 +271,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}", **self.url_parameters ) @@ -260,11 +287,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "dataNetworkName", self.ctx.args.data_network_name, - required=True, - ), - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "resourceAnchorName", self.ctx.args.resource_anchor_name, required=True, ), **self.serialize_url_param( @@ -282,7 +305,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -325,7 +348,59 @@ def _build_schema_on_200_201(cls): return cls._schema_on_200_201 cls._schema_on_200_201 = AAZObjectType() - _UpdateHelper._build_schema_data_network_read(cls._schema_on_200_201) + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.linked_compartment_id = AAZStrType( + serialized_name="linkedCompartmentId", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() return cls._schema_on_200_201 @@ -340,13 +415,8 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("tags", AAZDictType, ".tags") - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("description", AAZStrType, ".description") - tags = _builder.get(".tags") if tags is not None: tags.set_elements(AAZStrType, ".") @@ -365,81 +435,5 @@ def __call__(self, *args, **kwargs): class _UpdateHelper: """Helper class for Update""" - _schema_data_network_read = None - - @classmethod - def _build_schema_data_network_read(cls, _schema): - if cls._schema_data_network_read is not None: - _schema.id = cls._schema_data_network_read.id - _schema.location = cls._schema_data_network_read.location - _schema.name = cls._schema_data_network_read.name - _schema.properties = cls._schema_data_network_read.properties - _schema.system_data = cls._schema_data_network_read.system_data - _schema.tags = cls._schema_data_network_read.tags - _schema.type = cls._schema_data_network_read.type - return - - cls._schema_data_network_read = _schema_data_network_read = AAZObjectType() - - data_network_read = _schema_data_network_read - data_network_read.id = AAZStrType( - flags={"read_only": True}, - ) - data_network_read.location = AAZStrType( - flags={"required": True}, - ) - data_network_read.name = AAZStrType( - flags={"read_only": True}, - ) - data_network_read.properties = AAZObjectType( - flags={"client_flatten": True}, - ) - data_network_read.system_data = AAZObjectType( - serialized_name="systemData", - flags={"read_only": True}, - ) - data_network_read.tags = AAZDictType() - data_network_read.type = AAZStrType( - flags={"read_only": True}, - ) - - properties = _schema_data_network_read.properties - properties.description = AAZStrType() - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - - system_data = _schema_data_network_read.system_data - system_data.created_at = AAZStrType( - serialized_name="createdAt", - ) - system_data.created_by = AAZStrType( - serialized_name="createdBy", - ) - system_data.created_by_type = AAZStrType( - serialized_name="createdByType", - ) - system_data.last_modified_at = AAZStrType( - serialized_name="lastModifiedAt", - ) - system_data.last_modified_by = AAZStrType( - serialized_name="lastModifiedBy", - ) - system_data.last_modified_by_type = AAZStrType( - serialized_name="lastModifiedByType", - ) - - tags = _schema_data_network_read.tags - tags.Element = AAZStrType() - - _schema.id = cls._schema_data_network_read.id - _schema.location = cls._schema_data_network_read.location - _schema.name = cls._schema_data_network_read.name - _schema.properties = cls._schema_data_network_read.properties - _schema.system_data = cls._schema_data_network_read.system_data - _schema.tags = cls._schema_data_network_read.tags - _schema.type = cls._schema_data_network_read.type - __all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_wait.py similarity index 80% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_wait.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_wait.py index 1d200f62db4..df4ba20b99e 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/resource_anchor/_wait.py @@ -12,7 +12,7 @@ @register_command( - "mobile-network data-network wait", + "oracle-database resource-anchor wait", ) class Wait(AAZWaitCommand): """Place the CLI in a waiting state until a condition is met. @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/datanetworks/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/resourceanchors/{}", "2025-09-01"], ] } @@ -40,24 +40,13 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.data_network_name = AAZStrArg( - options=["-n", "--name", "--data-network-name"], - help="The name of the data network.", - required=True, - id_part="child_name_1", - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*(\.[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])*)*$", - max_length=64, - ), - ) - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.resource_anchor_name = AAZStrArg( + options=["-n", "--name", "--resource-anchor-name"], + help="The name of the ResourceAnchor", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern="^[a-zA-Z0-9-]{3,24}$", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( @@ -67,7 +56,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - self.DataNetworksGet(ctx=self.ctx)() + self.ResourceAnchorsGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -82,7 +71,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) return result - class DataNetworksGet(AAZHttpOperation): + class ResourceAnchorsGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -96,7 +85,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks/{dataNetworkName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}", **self.url_parameters ) @@ -112,11 +101,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "dataNetworkName", self.ctx.args.data_network_name, - required=True, - ), - **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "resourceAnchorName", self.ctx.args.resource_anchor_name, required=True, ), **self.serialize_url_param( @@ -134,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -176,9 +161,7 @@ def _build_schema_on_200(cls): _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, @@ -189,7 +172,10 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.properties - properties.description = AAZStrType() + properties.linked_compartment_id = AAZStrType( + serialized_name="linkedCompartmentId", + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/__cmd_group.py similarity index 90% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/__cmd_group.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/__cmd_group.py index 3b193f58c2a..85ae873cf6f 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/__cmd_group.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/__cmd_group.py @@ -12,10 +12,10 @@ @register_command_group( - "mobile-network sim", + "oracle-database system-version", ) class __CMDGroup(AAZCommandGroup): - """Manage sim + """System Version """ pass diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/__init__.py new file mode 100644 index 00000000000..2df85698253 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/__init__.py @@ -0,0 +1,13 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from .__cmd_group import * +from ._list import * +from ._show import * diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/_list.py similarity index 75% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_list.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/_list.py index 961fa49584b..d06aaafdd85 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/data_network/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/_list.py @@ -12,19 +12,16 @@ @register_command( - "mobile-network data-network list", + "oracle-database system-version list", ) class List(AAZCommand): - """List all data networks in the mobile network. - - :example: List data-network by resource group - az mobile-network data-network list --mobile-network-name mobile-network-name -g rg + """List SystemVersion resources by Location """ _aaz_info = { "version": "2023-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/datanetworks", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/systemversions", "2023-09-01"], ] } @@ -45,23 +42,14 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", - required=True, - fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, - ), - ) - _args_schema.resource_group = AAZResourceGroupNameArg( + _args_schema.location = AAZResourceLocationArg( required=True, ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.DataNetworksListByMobileNetwork(ctx=self.ctx)() + self.SystemVersionsListByLocation(ctx=self.ctx)() self.post_operations() @register_callback @@ -77,7 +65,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class DataNetworksListByMobileNetwork(AAZHttpOperation): + class SystemVersionsListByLocation(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -91,7 +79,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/dataNetworks", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/systemVersions", **self.url_parameters ) @@ -107,11 +95,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, - required=True, - ), - **self.serialize_url_param( - "resourceGroupName", self.ctx.args.resource_group, + "location", self.ctx.args.location, required=True, ), **self.serialize_url_param( @@ -160,9 +144,10 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) - _schema_on_200.value = AAZListType() + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) value = cls._schema_on_200.value value.Element = AAZObjectType() @@ -171,9 +156,6 @@ def _build_schema_on_200(cls): _element.id = AAZStrType( flags={"read_only": True}, ) - _element.location = AAZStrType( - flags={"required": True}, - ) _element.name = AAZStrType( flags={"read_only": True}, ) @@ -184,16 +166,14 @@ def _build_schema_on_200(cls): serialized_name="systemData", flags={"read_only": True}, ) - _element.tags = AAZDictType() _element.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.value.Element.properties - properties.description = AAZStrType() - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, + properties.system_version = AAZStrType( + serialized_name="systemVersion", + flags={"required": True, "read_only": True}, ) system_data = cls._schema_on_200.value.Element.system_data @@ -216,9 +196,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.value.Element.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/_show.py similarity index 70% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/_show.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/_show.py index cff06dcadd5..ba191f2b7bc 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/pccp/version/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/system_version/_show.py @@ -12,19 +12,16 @@ @register_command( - "mobile-network pccp version show", + "oracle-database system-version show", ) class Show(AAZCommand): - """Get information about the specified packet core control plane version. - - :example: Show Packet Core Control Plane version - az mobile-network pccp version show --version-name pmn-2211-0-80 + """Get a SystemVersion """ _aaz_info = { "version": "2023-09-01", "resources": [ - ["mgmt-plane", "/providers/microsoft.mobilenetwork/packetcorecontrolplaneversions/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/providers/oracle.database/locations/{}/systemversions/{}", "2023-09-01"], ] } @@ -44,16 +41,24 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.version_name = AAZStrArg( - options=["--version-name"], - help="The name of the packet core control plane version.", + _args_schema.location = AAZResourceLocationArg( + required=True, + id_part="name", + ) + _args_schema.systemversionname = AAZStrArg( + options=["-n", "--name", "--systemversionname"], + help="SystemVersion name", required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern=".*", + ), ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.PacketCoreControlPlaneVersionsGet(ctx=self.ctx)() + self.SystemVersionsGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -68,7 +73,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class PacketCoreControlPlaneVersionsGet(AAZHttpOperation): + class SystemVersionsGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -82,7 +87,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/providers/Microsoft.MobileNetwork/packetCoreControlPlaneVersions/{versionName}", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/systemVersions/{systemversionname}", **self.url_parameters ) @@ -98,7 +103,15 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "versionName", self.ctx.args.version_name, + "location", self.ctx.args.location, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + **self.serialize_url_param( + "systemversionname", self.ctx.args.systemversionname, required=True, ), } @@ -148,7 +161,7 @@ def _build_schema_on_200(cls): flags={"read_only": True}, ) _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, + flags={"client_flatten": True}, ) _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", @@ -159,33 +172,9 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.properties - properties.platforms = AAZListType() - properties.provisioning_state = AAZStrType( - serialized_name="provisioningState", - flags={"read_only": True}, - ) - - platforms = cls._schema_on_200.properties.platforms - platforms.Element = AAZObjectType() - - _element = cls._schema_on_200.properties.platforms.Element - _element.maximum_platform_software_version = AAZStrType( - serialized_name="maximumPlatformSoftwareVersion", - ) - _element.minimum_platform_software_version = AAZStrType( - serialized_name="minimumPlatformSoftwareVersion", - ) - _element.obsolete_version = AAZStrType( - serialized_name="obsoleteVersion", - ) - _element.platform_type = AAZStrType( - serialized_name="platformType", - ) - _element.recommended_version = AAZStrType( - serialized_name="recommendedVersion", - ) - _element.version_state = AAZStrType( - serialized_name="versionState", + properties.system_version = AAZStrType( + serialized_name="systemVersion", + flags={"required": True, "read_only": True}, ) system_data = cls._schema_on_200.system_data diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/__cmd_group.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/__cmd_group.py new file mode 100644 index 00000000000..815dc870e43 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "oracle-database virtual-network-address", +) +class __CMDGroup(AAZCommandGroup): + """Virtual Network Address + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/__init__.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/__init__.py similarity index 100% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/sim/policy/__init__.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/__init__.py diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_create.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_create.py similarity index 63% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_create.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_create.py index 5b326095ba2..0895146b0fd 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_create.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_create.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network slice create", + "oracle-database virtual-network-address create", ) class Create(AAZCommand): - """Create a network slice. + """Create a VirtualNetworkAddress - :example: Create slice - az mobile-network slice create --mobile-network-name mobile-network-name -n slice-name -g rg --snssai "{sst:1,sd:123abc}" + :example: Create Virtual Network Address + az oracle-database cloud-vm-cluster virtual-network-address create --cloudvmclustername --resource-group --name --ip-address --vm-ocid """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/slices/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses/{}", "2025-09-01"], ] } @@ -45,85 +45,50 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.slice_name = AAZStrArg( - options=["-n", "--name", "--slice-name"], - help="The name of the network slice.", + _args_schema.virtualnetworkaddressname = AAZStrArg( + options=["-n", "--name", "--virtualnetworkaddressname"], + help="Virtual IP address hostname.", required=True, fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", + max_length=63, + min_length=1, ), ) - # define Arg Group "Parameters" - - _args_schema = cls._args_schema - _args_schema.location = AAZResourceLocationArg( - arg_group="Parameters", - help="The geo-location where the resource lives", - required=True, - fmt=AAZResourceLocationArgFormat( - resource_group_arg="resource_group", - ), - ) - _args_schema.tags = AAZDictArg( - options=["--tags"], - arg_group="Parameters", - help="Resource tags.", - ) - - tags = cls._args_schema.tags - tags.Element = AAZStrArg() - # define Arg Group "Properties" _args_schema = cls._args_schema - _args_schema.description = AAZStrArg( - options=["--description"], + _args_schema.ip_address = AAZStrArg( + options=["--ip-address"], arg_group="Properties", - help="An optional description for this network slice.", + help="Virtual network Address address.", ) - _args_schema.snssai = AAZObjectArg( - options=["--snssai"], + _args_schema.vm_ocid = AAZStrArg( + options=["--vm-ocid"], arg_group="Properties", - help="Single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.", - required=True, - ) - - snssai = cls._args_schema.snssai - snssai.sd = AAZStrArg( - options=["sd"], - help="Slice differentiator (SD).", + help="Virtual Machine OCID.", fmt=AAZStrArgFormat( - pattern="^[A-Fa-f0-9]{6}$", - ), - ) - snssai.sst = AAZIntArg( - options=["sst"], - help="Slice/service type (SST).", - required=True, - fmt=AAZIntArgFormat( - maximum=255, - minimum=0, + max_length=255, + min_length=1, ), ) return cls._args_schema def _execute_operations(self): self.pre_operations() - yield self.SlicesCreateOrUpdate(ctx=self.ctx)() + yield self.VirtualNetworkAddressesCreateOrUpdate(ctx=self.ctx)() self.post_operations() @register_callback @@ -138,7 +103,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class SlicesCreateOrUpdate(AAZHttpOperation): + class VirtualNetworkAddressesCreateOrUpdate(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -168,7 +133,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", **self.url_parameters ) @@ -184,7 +149,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( @@ -192,11 +157,11 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "sliceName", self.ctx.args.slice_name, + "subscriptionId", self.ctx.subscription_id, required=True, ), **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, required=True, ), } @@ -206,7 +171,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -231,23 +196,12 @@ def content(self): typ=AAZObjectType, typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) - _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, ".", typ_kwargs={"flags": {"required": True, "client_flatten": True}}) - _builder.set_prop("tags", AAZDictType, ".tags") + _builder.set_prop("properties", AAZObjectType) properties = _builder.get(".properties") if properties is not None: - properties.set_prop("description", AAZStrType, ".description") - properties.set_prop("snssai", AAZObjectType, ".snssai", typ_kwargs={"flags": {"required": True}}) - - snssai = _builder.get(".properties.snssai") - if snssai is not None: - snssai.set_prop("sd", AAZStrType, ".sd") - snssai.set_prop("sst", AAZIntType, ".sst", typ_kwargs={"flags": {"required": True}}) - - tags = _builder.get(".tags") - if tags is not None: - tags.set_elements(AAZStrType, ".") + properties.set_prop("ipAddress", AAZStrType, ".ip_address") + properties.set_prop("vmOcid", AAZStrType, ".vm_ocid") return self.serialize_content(_content_value) @@ -272,38 +226,46 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.location = AAZStrType( - flags={"required": True}, - ) _schema_on_200_201.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200_201.properties = AAZObjectType() _schema_on_200_201.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - _schema_on_200_201.tags = AAZDictType() _schema_on_200_201.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200_201.properties - properties.description = AAZStrType() + properties.domain = AAZStrType( + flags={"read_only": True}, + ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - properties.snssai = AAZObjectType( - flags={"required": True}, + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, ) - - snssai = cls._schema_on_200_201.properties.snssai - snssai.sd = AAZStrType() - snssai.sst = AAZIntType( - flags={"required": True}, + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", ) system_data = cls._schema_on_200_201.system_data @@ -326,9 +288,6 @@ def _build_schema_on_200_201(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200_201.tags - tags.Element = AAZStrType() - return cls._schema_on_200_201 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_delete.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_delete.py similarity index 74% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_delete.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_delete.py index d9751a23b9d..b083717df95 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/service/_delete.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_delete.py @@ -12,20 +12,20 @@ @register_command( - "mobile-network service delete", + "oracle-database virtual-network-address delete", confirmation="Are you sure you want to perform this operation?", ) class Delete(AAZCommand): - """Delete the specified service. + """Delete a VirtualNetworkAddress - :example: Delete service - az mobile-network service delete --mobile-network-name mobile-network-name -n service -g rg -y + :example: Delete Virtual Network Address + az oracle-database cloud-vm-cluster virtual-network-address delete --cloudvmclustername --resource-group --name """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/services/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses/{}", "2025-09-01"], ] } @@ -46,34 +46,34 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.service_name = AAZStrArg( - options=["-n", "--name", "--service-name"], - help="The name of the service. You must not use any of the following reserved strings - `default`, `requested` or `service`", + _args_schema.virtualnetworkaddressname = AAZStrArg( + options=["-n", "--name", "--virtualnetworkaddressname"], + help="Virtual IP address hostname.", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^(?!(default|requested|service)$)[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", + max_length=63, + min_length=1, ), ) return cls._args_schema def _execute_operations(self): self.pre_operations() - yield self.ServicesDelete(ctx=self.ctx)() + yield self.VirtualNetworkAddressesDelete(ctx=self.ctx)() self.post_operations() @register_callback @@ -84,7 +84,7 @@ def pre_operations(self): def post_operations(self): pass - class ServicesDelete(AAZHttpOperation): + class VirtualNetworkAddressesDelete(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -94,25 +94,25 @@ def __call__(self, *args, **kwargs): return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [200]: + if session.http_response.status_code in [204]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_200, + self.on_204, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, ) - if session.http_response.status_code in [204]: + if session.http_response.status_code in [200, 201]: return self.client.build_lro_polling( self.ctx.args.no_wait, session, - self.on_204, + self.on_200_201, self.on_error, lro_options={"final-state-via": "location"}, path_format_arguments=self.url_parameters, @@ -123,7 +123,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/services/{serviceName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", **self.url_parameters ) @@ -139,7 +139,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( @@ -147,11 +147,11 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "serviceName", self.ctx.args.service_name, + "subscriptionId", self.ctx.subscription_id, required=True, ), **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, required=True, ), } @@ -161,16 +161,16 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } return parameters - def on_200(self, session): + def on_204(self, session): pass - def on_204(self, session): + def on_200_201(self, session): pass diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_list.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_list.py similarity index 76% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_list.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_list.py index e21bde9419b..22aca843cb1 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_list.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_list.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network slice list", + "oracle-database virtual-network-address list", ) class List(AAZCommand): - """List all slices in the mobile network. + """List VirtualNetworkAddress resources by CloudVmCluster - :example: List slice by resource group - az mobile-network slice list --mobile-network-name mobile-network-name -g rg + :example: List Virtual Network Address + az oracle-database cloud-vm-cluster virtual-network-address list --cloudvmclustername --resource-group """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/slices", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses", "2025-09-01"], ] } @@ -45,13 +45,12 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( @@ -61,7 +60,7 @@ def _build_arguments_schema(cls, *args, **kwargs): def _execute_operations(self): self.pre_operations() - self.SlicesListByMobileNetwork(ctx=self.ctx)() + self.VirtualNetworkAddressesListByParent(ctx=self.ctx)() self.post_operations() @register_callback @@ -77,7 +76,7 @@ def _output(self, *args, **kwargs): next_link = self.deserialize_output(self.ctx.vars.instance.next_link) return result, next_link - class SlicesListByMobileNetwork(AAZHttpOperation): + class VirtualNetworkAddressesListByParent(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -91,7 +90,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses", **self.url_parameters ) @@ -107,7 +106,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( @@ -125,7 +124,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -160,9 +159,10 @@ def _build_schema_on_200(cls): _schema_on_200 = cls._schema_on_200 _schema_on_200.next_link = AAZStrType( serialized_name="nextLink", - flags={"read_only": True}, ) - _schema_on_200.value = AAZListType() + _schema_on_200.value = AAZListType( + flags={"required": True}, + ) value = cls._schema_on_200.value value.Element = AAZObjectType() @@ -171,38 +171,46 @@ def _build_schema_on_200(cls): _element.id = AAZStrType( flags={"read_only": True}, ) - _element.location = AAZStrType( - flags={"required": True}, - ) _element.name = AAZStrType( flags={"read_only": True}, ) - _element.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _element.properties = AAZObjectType() _element.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - _element.tags = AAZDictType() _element.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.value.Element.properties - properties.description = AAZStrType() + properties.domain = AAZStrType( + flags={"read_only": True}, + ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - properties.snssai = AAZObjectType( - flags={"required": True}, + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, ) - - snssai = cls._schema_on_200.value.Element.properties.snssai - snssai.sd = AAZStrType() - snssai.sst = AAZIntType( - flags={"required": True}, + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", ) system_data = cls._schema_on_200.value.Element.system_data @@ -225,9 +233,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.value.Element.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_show.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_show.py similarity index 72% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_show.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_show.py index fca7937d484..28d548fc81e 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_show.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_show.py @@ -12,19 +12,19 @@ @register_command( - "mobile-network slice show", + "oracle-database virtual-network-address show", ) class Show(AAZCommand): - """Get information about the specified network slice. + """Get a VirtualNetworkAddress - :example: Show slice - az mobile-network slice show --mobile-network-name mobile=network-name -n slice-name -g rg + :example: Get Vnet address + az oracle-database cloud-vm-cluster virtual-network-address show --cloudvmclustername --resource-group --name """ _aaz_info = { - "version": "2023-09-01", + "version": "2025-09-01", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/slices/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses/{}", "2025-09-01"], ] } @@ -44,34 +44,34 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.slice_name = AAZStrArg( - options=["-n", "--name", "--slice-name"], - help="The name of the network slice.", + _args_schema.virtualnetworkaddressname = AAZStrArg( + options=["-n", "--name", "--virtualnetworkaddressname"], + help="Virtual IP address hostname.", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", + max_length=63, + min_length=1, ), ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.SlicesGet(ctx=self.ctx)() + self.VirtualNetworkAddressesGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -86,7 +86,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) return result - class SlicesGet(AAZHttpOperation): + class VirtualNetworkAddressesGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -100,7 +100,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", **self.url_parameters ) @@ -116,7 +116,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( @@ -124,11 +124,11 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "sliceName", self.ctx.args.slice_name, + "subscriptionId", self.ctx.subscription_id, required=True, ), **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, required=True, ), } @@ -138,7 +138,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -174,38 +174,46 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - _schema_on_200.tags = AAZDictType() _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.properties - properties.description = AAZStrType() + properties.domain = AAZStrType( + flags={"read_only": True}, + ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - properties.snssai = AAZObjectType( - flags={"required": True}, + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, ) - - snssai = cls._schema_on_200.properties.snssai - snssai.sd = AAZStrType() - snssai.sst = AAZIntType( - flags={"required": True}, + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", ) system_data = cls._schema_on_200.system_data @@ -228,9 +236,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_update.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_update.py new file mode 100644 index 00000000000..075224cca47 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_update.py @@ -0,0 +1,464 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "oracle-database virtual-network-address update", +) +class Update(AAZCommand): + """Update a VirtualNetworkAddress + + :example: Update Vnet address + az oracle-database cloud-vm-cluster virtual-network-address update --cloudvmclustername --resource-group --name + """ + + _aaz_info = { + "version": "2025-09-01", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses/{}", "2025-09-01"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + AZ_SUPPORT_GENERIC_UPDATE = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern=".*", + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.virtualnetworkaddressname = AAZStrArg( + options=["-n", "--name", "--virtualnetworkaddressname"], + help="Virtual IP address hostname.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + pattern=".*", + max_length=63, + min_length=1, + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.VirtualNetworkAddressesGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) + yield self.VirtualNetworkAddressesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class VirtualNetworkAddressesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "cloudvmclustername", self.ctx.args.cloudvmclustername, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + **self.serialize_url_param( + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType() + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.domain = AAZStrType( + flags={"read_only": True}, + ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, + ) + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + class VirtualNetworkAddressesCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "cloudvmclustername", self.ctx.args.cloudvmclustername, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + **self.serialize_url_param( + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2025-09-01", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType() + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.domain = AAZStrType( + flags={"read_only": True}, + ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, + ) + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", + ) + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200_201 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.vars.instance) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZObjectType + ) + + return _instance_value + + class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance_by_generic( + self.ctx.vars.instance, + self.ctx.generic_update_args + ) + + +class _UpdateHelper: + """Helper class for Update""" + + +__all__ = ["Update"] diff --git a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_wait.py b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_wait.py similarity index 75% rename from src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_wait.py rename to src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_wait.py index 3166e6710d2..ba5c7258ea9 100644 --- a/src/mobile-network/azext_mobile_network/aaz/latest/mobile_network/slice/_wait.py +++ b/src/oracle-database/azext_oracle_database/aaz/latest/oracle_database/virtual_network_address/_wait.py @@ -12,7 +12,7 @@ @register_command( - "mobile-network slice wait", + "oracle-database virtual-network-address wait", ) class Wait(AAZWaitCommand): """Place the CLI in a waiting state until a condition is met. @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.mobilenetwork/mobilenetworks/{}/slices/{}", "2023-09-01"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/oracle.database/cloudvmclusters/{}/virtualnetworkaddresses/{}", "2025-09-01"], ] } @@ -40,34 +40,34 @@ def _build_arguments_schema(cls, *args, **kwargs): # define Arg Group "" _args_schema = cls._args_schema - _args_schema.mobile_network_name = AAZStrArg( - options=["--mobile-network-name"], - help="The name of the mobile network.", + _args_schema.cloudvmclustername = AAZStrArg( + options=["--cloudvmclustername"], + help="CloudVmCluster name", required=True, id_part="name", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", ), ) _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.slice_name = AAZStrArg( - options=["-n", "--name", "--slice-name"], - help="The name of the network slice.", + _args_schema.virtualnetworkaddressname = AAZStrArg( + options=["-n", "--name", "--virtualnetworkaddressname"], + help="Virtual IP address hostname.", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( - pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]*$", - max_length=64, + pattern=".*", + max_length=63, + min_length=1, ), ) return cls._args_schema def _execute_operations(self): self.pre_operations() - self.SlicesGet(ctx=self.ctx)() + self.VirtualNetworkAddressesGet(ctx=self.ctx)() self.post_operations() @register_callback @@ -82,7 +82,7 @@ def _output(self, *args, **kwargs): result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) return result - class SlicesGet(AAZHttpOperation): + class VirtualNetworkAddressesGet(AAZHttpOperation): CLIENT_TYPE = "MgmtClient" def __call__(self, *args, **kwargs): @@ -96,7 +96,7 @@ def __call__(self, *args, **kwargs): @property def url(self): return self.client.format_url( - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/slices/{sliceName}", + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}", **self.url_parameters ) @@ -112,7 +112,7 @@ def error_format(self): def url_parameters(self): parameters = { **self.serialize_url_param( - "mobileNetworkName", self.ctx.args.mobile_network_name, + "cloudvmclustername", self.ctx.args.cloudvmclustername, required=True, ), **self.serialize_url_param( @@ -120,11 +120,11 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "sliceName", self.ctx.args.slice_name, + "subscriptionId", self.ctx.subscription_id, required=True, ), **self.serialize_url_param( - "subscriptionId", self.ctx.subscription_id, + "virtualnetworkaddressname", self.ctx.args.virtualnetworkaddressname, required=True, ), } @@ -134,7 +134,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2023-09-01", + "api-version", "2025-09-01", required=True, ), } @@ -170,38 +170,46 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.location = AAZStrType( - flags={"required": True}, - ) _schema_on_200.name = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.properties = AAZObjectType( - flags={"required": True, "client_flatten": True}, - ) + _schema_on_200.properties = AAZObjectType() _schema_on_200.system_data = AAZObjectType( serialized_name="systemData", flags={"read_only": True}, ) - _schema_on_200.tags = AAZDictType() _schema_on_200.type = AAZStrType( flags={"read_only": True}, ) properties = cls._schema_on_200.properties - properties.description = AAZStrType() + properties.domain = AAZStrType( + flags={"read_only": True}, + ) + properties.ip_address = AAZStrType( + serialized_name="ipAddress", + ) + properties.lifecycle_details = AAZStrType( + serialized_name="lifecycleDetails", + flags={"read_only": True}, + ) + properties.lifecycle_state = AAZStrType( + serialized_name="lifecycleState", + flags={"read_only": True}, + ) + properties.ocid = AAZStrType( + flags={"read_only": True}, + ) properties.provisioning_state = AAZStrType( serialized_name="provisioningState", flags={"read_only": True}, ) - properties.snssai = AAZObjectType( - flags={"required": True}, + properties.time_assigned = AAZStrType( + serialized_name="timeAssigned", + flags={"read_only": True}, ) - - snssai = cls._schema_on_200.properties.snssai - snssai.sd = AAZStrType() - snssai.sst = AAZIntType( - flags={"required": True}, + properties.vm_ocid = AAZStrType( + serialized_name="vmOcid", ) system_data = cls._schema_on_200.system_data @@ -224,9 +232,6 @@ def _build_schema_on_200(cls): serialized_name="lastModifiedByType", ) - tags = cls._schema_on_200.tags - tags.Element = AAZStrType() - return cls._schema_on_200 diff --git a/src/oracle-database/azext_oracle_database/azext_metadata.json b/src/oracle-database/azext_oracle_database/azext_metadata.json index 34f7fac3fed..06012c7c942 100644 --- a/src/oracle-database/azext_oracle_database/azext_metadata.json +++ b/src/oracle-database/azext_oracle_database/azext_metadata.json @@ -1,3 +1,3 @@ { - "azext.minCliCoreVersion": "2.57.0" + "azext.minCliCoreVersion": "2.75.0" } \ No newline at end of file diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_basedb_delete_operations.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_basedb_delete_operations.yaml new file mode 100644 index 00000000000..10400e211c6 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_basedb_delete_operations.yaml @@ -0,0 +1,194 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database db-system delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes --no-wait + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: DELETE + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/bhtest/providers/Oracle.Database/dbSystems/bhDBiad1?api-version=2025-09-01 + response: + body: + string: 'null' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/6e765b5a-1bd9-458e-be0a-aac9722757df*4D2416F8150F09121B6692AC582D85DD11C086EFF45B2C66555ADD349E9C345E?api-version=2025-09-01&t=638992641608254447&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=N5kMgA8-j0s4XTHr6DmSKqfhftVDtIwNhf55m2N9_lfpnvvikRyWYejW2P-CCLJnphWuJMS59snD0fZHj7B6WsUYR58YAbOM7mGY2F0-NnZjUbRPShME0yZjgKkwiAMDzNlMXMHsqk7oxnxaaSNkwkJPd-ZDhZA7g6OO9PcGe6iRIatrUHSiGIZkgCSXWKN2rZZ7b-6jXF4zJugKQOy3CfDT8fBmoCM_sKXJl1caRaTqm4g5kCH37JAVA0WHGzUueWEjqZY41X9rV9KzHXoR3Lxovabk2PWyMoU0AKVcenk63Csy5amMYrx5__6PooEVOncTe5_3hX_s7Ppf6Bjutg&h=EMknpRE2OGtBcRDZAa4Ep5xonkerY0nHJuq9Z8GuNIY + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 19:35:59 GMT + etag: + - '"ef09dcd4-0000-0100-0000-691f6da00000"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/6e765b5a-1bd9-458e-be0a-aac9722757df*4D2416F8150F09121B6692AC582D85DD11C086EFF45B2C66555ADD349E9C345E?api-version=2025-09-01&t=638992641608410714&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=G6xqnl5yeqggvTftEJwFo-LSk0uS4ZpatHxWheXQCZm7OPuW0nW2iKtk7EEIEmlyb4isgvhcUsrvR15SPTCawEfXzntQ-xGg4jFL48jR-ajgVHaryvOXyVo83bbRiUZenUs-C1zJkmOBbM_TXvLj4euBIMOgn59bMeeavyFqG4zQpW6DNFgLBn73MoV5kUvE_i4fCfqVMrW9r-es7b3k-ZOL-GeJDtxTbetQdA5-_hMc9zSZNbOmB5W33jo7x4syybN43JBC2pUPOpe356XECBBcs0KkGyMOw5Q_geDuQWXYjJKLy0lTMAZwqz8mQvR09-jtx0JIgv1yHm3uvkTH4Q&h=QXB9bkgsMNx45VDjE2IKnefJS58wuQoRda_E7TKNVuU + opc-request-id: + - oci-9BBA71066A48B4D-202511201935/52D171BBD7D27B019C6D1F6949414486/1C8ED25A7E518BF6C419DF0ECB74ED77 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/53606fca-92c3-4e4c-b9be-a5bea672b8b8 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-deletes: + - '199' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '2999' + x-msedge-ref: + - 'Ref A: C98E1D3E70AF42A180FD2508FC95708C Ref B: BY1AA1072319040 Ref C: 2025-11-20T19:35:54Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database network-anchor delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes --no-wait + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: DELETE + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/PowerShellTestRg/providers/Oracle.Database/networkAnchors/PowershellTest1?api-version=2025-09-01 + response: + body: + string: 'null' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/d293f07b-9e2d-4207-a32e-2a8799f5e950*A04394113BA1E23FA39EC6FFA2408CCC43A03BFB6506309C9046FCFCC582D141?api-version=2025-09-01&t=638992641636993632&c=MIIHpTCCBo2gAwIBAgITfwY2O9Fi5lSmLyOBKgAEBjY70TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUxMDIwMDQxMjEwWhcNMjYwNDE4MDQxMjEwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMHQm7ZXwmvz3bp_tBu0ZYNZMpMcRUJSHrld-E9b4RqS0ymmswmhM267lbAI2oCZNI82E4DZNNZApPYz9GqZQ2OYxE0G0E_dyvstulti8jSM29pm5HiR_hxNyzt_q0uSnmqQnWuxQMco30qz4XjZaQkJNBATBraJWnioUZtMKhrbXrMOMral9bW_6ba5EqNlc3iBHJ8x7dblRrVcao1gyCk1mEXz9vR8Ut0wZ-KLWuSUcbcS7CPzUuSYQ1eJdym4YYAqEQQM1z40lpqT6OlbqRLu3DC5dN2NbGHUPkHODMhUbKY3RnwHKdrKQbuDk16nRBjl2ZML6kXZGz_BMd-elV0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQ7Uo6SICZvdsfQb4hxJfOTmnlMAzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBADp-OzkMAESDX27pXk3NL5_uU6RuCBkTjHnVxyWwp89arbWDWeL0FNU75N4hZMsK4FU9oUeatHrGk09j6u3o6qgzbyH7vWX9v5ijaUpNPeacRaMTpWvVZZLg6AERFF7oiplb-vCmLHZTMYbJH6dZI35unEEDgzD9n8QhuMBQ8dXhS145FHrAVc9nnNB25FQt29UfdpwrVFPQuEkgwKKCG8Qy5VDtGnceMRw2bnDwtYNngCgVmd2cPtwgizpflj_F8NURyxhnrQvuOwCkQavcJTq5RSXgEp3U471r3TZoEkKrAmcNF3Fyz5M0gOv6EQmdHg-lLMeFUmOVsXvWTlMjQQw&s=Dp5gNThCoOitTcSnlo88Zix2ztHAxzCqKolNK4W_x7YSX0fQXjewrCsuGZGSa18oWc9T_M0NcZsduv9y4lnJJH6NfpbKS1_-cwc1cuQlFgdj9f9G0CDN2njFbLyK9oNa6SnCkaD0NPD_93lQ5rGYoo_44i5C_fIg1kUkykbSw6XbKK73cD39sDFQw2UTvHb6dPfRV2-ss4xLnFhWO1rXFmcv1ENC7IpGlrKoxvolpZ0mpF8UPcGsmJv4E6Ok2MSZgRdPu6_Kr2o-qAwmHRdNd6hLpOiasQXauLjQ_eiTB_p1lO9S4OjSJ2NdyiFPiSfad0ObHgYMT0BjkYNdD8tT8g&h=FW60jlucLtc4WalqxSNdg95eOzoXyc-XrFyqeghySqU + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 19:36:02 GMT + etag: + - '"43081697-0000-0100-0000-691f6da30000"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/d293f07b-9e2d-4207-a32e-2a8799f5e950*A04394113BA1E23FA39EC6FFA2408CCC43A03BFB6506309C9046FCFCC582D141?api-version=2025-09-01&t=638992641637149810&c=MIIHpTCCBo2gAwIBAgITfwY2O9Fi5lSmLyOBKgAEBjY70TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUxMDIwMDQxMjEwWhcNMjYwNDE4MDQxMjEwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMHQm7ZXwmvz3bp_tBu0ZYNZMpMcRUJSHrld-E9b4RqS0ymmswmhM267lbAI2oCZNI82E4DZNNZApPYz9GqZQ2OYxE0G0E_dyvstulti8jSM29pm5HiR_hxNyzt_q0uSnmqQnWuxQMco30qz4XjZaQkJNBATBraJWnioUZtMKhrbXrMOMral9bW_6ba5EqNlc3iBHJ8x7dblRrVcao1gyCk1mEXz9vR8Ut0wZ-KLWuSUcbcS7CPzUuSYQ1eJdym4YYAqEQQM1z40lpqT6OlbqRLu3DC5dN2NbGHUPkHODMhUbKY3RnwHKdrKQbuDk16nRBjl2ZML6kXZGz_BMd-elV0CAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQ7Uo6SICZvdsfQb4hxJfOTmnlMAzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBADp-OzkMAESDX27pXk3NL5_uU6RuCBkTjHnVxyWwp89arbWDWeL0FNU75N4hZMsK4FU9oUeatHrGk09j6u3o6qgzbyH7vWX9v5ijaUpNPeacRaMTpWvVZZLg6AERFF7oiplb-vCmLHZTMYbJH6dZI35unEEDgzD9n8QhuMBQ8dXhS145FHrAVc9nnNB25FQt29UfdpwrVFPQuEkgwKKCG8Qy5VDtGnceMRw2bnDwtYNngCgVmd2cPtwgizpflj_F8NURyxhnrQvuOwCkQavcJTq5RSXgEp3U471r3TZoEkKrAmcNF3Fyz5M0gOv6EQmdHg-lLMeFUmOVsXvWTlMjQQw&s=JokHlwGorUBE3SHTc-4W4a40EwL-LVrO2FQDnYgruEZz7o6Gvyj5xqZupJEhMMWOGeJzeMmPLFTrKdn0Ej9o-nZhor-LixmUgSUpvN0QkZah5iVa2FHLwG09LOwq-NMONY0rMWWhRvX-zNw_JlEzmGfwPXKbZaahmNDofGAz522z9P4qFpyrseLCItkwi24IQpamPAF1dESEF9HZF-FM6vUvo-wG38GQL8eaUbcpqYRyObfOUQUkm7CTK_IFvp6Wig418XQN8E7RStrpgTCkvjW7FUyBS5kAZ9EBVLzeFkVuv0GwBPPd1YAWPOpYMH0r_F8AQEI5Qeis3s_4BoaEnQ&h=GzzT19quLHHo4Uo7V9Zf7wu_tCpVTIDoPfIL8b8mIDw + opc-request-id: + - oci-4EE4E7617AE66C1-202511201936/6A975B2B45514BB9A26D1F694941449B/1D719EAAC99B6FFDC147828210524CF5 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/canadacentral/aec83b43-b066-4914-b01e-8b963ff9a2ed + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-deletes: + - '199' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '2999' + x-msedge-ref: + - 'Ref A: D5BAA1DCE30744F9A7FD912851E79B38 Ref B: BY1AA1072320023 Ref C: 2025-11-20T19:36:01Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database resource-anchor delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --resource-group --yes --no-wait + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: DELETE + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/PowerShellTestRg/providers/Oracle.Database/resourceAnchors/powershell?api-version=2025-09-01 + response: + body: + string: 'null' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/198e19b3-e6df-4e47-a75e-cc9d769a00a9*7E237D3AE81CD01A6E61188701BF4009CD942AD7627EC68E0A267E376D88FA00?api-version=2025-09-01&t=638992641681632306&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=g7qbY3V2xrfba979QXfm2kRsEMYodfsPSLma0j2hOPMHBRkdYS-8s3RIuonMlkm9t62ixg_zm8KL3VbACcptN3jpWLHOWKhyElr7rbcpx5jEJmVlQxrQjD94MkoQK0mrQ2ExpeS66y1YvQL27S_pq6ZMfB0gS6nMDRls0s76MHs2h8kcUBFDzx31AQKYrdDDIjLqTNsargynjJiESzqNw7724fyk6gobq9L9glmx6DamTCtfcnnhNtb1fRTTbj-ld-7rw05RyfPkOrPo7KQWtG_Xpz7fm6T898fVudFF3lvLhypAHYGk02fpTWpbaZZ8yVlPzaZ-GythObS2hhV4fQ&h=8tqrkJ9TPEXSD6GYGf1fQ7zG6i8okWmuGCi1d3jE740 + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 19:36:07 GMT + etag: + - '"ae00723b-0000-0700-0000-691f6da80000"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/198e19b3-e6df-4e47-a75e-cc9d769a00a9*7E237D3AE81CD01A6E61188701BF4009CD942AD7627EC68E0A267E376D88FA00?api-version=2025-09-01&t=638992641681632306&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=g7qbY3V2xrfba979QXfm2kRsEMYodfsPSLma0j2hOPMHBRkdYS-8s3RIuonMlkm9t62ixg_zm8KL3VbACcptN3jpWLHOWKhyElr7rbcpx5jEJmVlQxrQjD94MkoQK0mrQ2ExpeS66y1YvQL27S_pq6ZMfB0gS6nMDRls0s76MHs2h8kcUBFDzx31AQKYrdDDIjLqTNsargynjJiESzqNw7724fyk6gobq9L9glmx6DamTCtfcnnhNtb1fRTTbj-ld-7rw05RyfPkOrPo7KQWtG_Xpz7fm6T898fVudFF3lvLhypAHYGk02fpTWpbaZZ8yVlPzaZ-GythObS2hhV4fQ&h=8tqrkJ9TPEXSD6GYGf1fQ7zG6i8okWmuGCi1d3jE740 + opc-request-id: + - oci-3FA8F0107B5F1FC-202511201936/D86A017D4EABD907A56D1F694941440E/72721FAFBE9D0F4053478A8760DD8082 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/eastus/2bad638c-c343-444e-bd4b-5120e2ab4ce0 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-deletes: + - '199' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '2999' + x-msedge-ref: + - 'Ref A: A070C1A0F30E431D966E595BB07281D4 Ref B: BY1AA1072319029 Ref C: 2025-11-20T19:36:04Z' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_create_db_system.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_create_db_system.yaml new file mode 100644 index 00000000000..7497b2715d8 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_create_db_system.yaml @@ -0,0 +1,185 @@ +interactions: +- request: + body: '{"location": "eastus", "properties": {"adminPassword": "TesT##1234", "computeCount": + 4, "computeModel": "OCPU", "databaseEdition": "EnterpriseEdition", "dbSystemOptions": + {"storageManagement": "LVM"}, "dbVersion": "19.27.0.0", "displayName": "BaseDbWhitelisMih", + "hostname": "basedbNew", "initialDataStorageSizeInGb": 256, "licenseModel": + "LicenseIncluded", "networkAnchorId": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors/AzureCliTest", + "nodeCount": 1, "pdbName": "pdbNameSep05", "resourceAnchorId": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/resourceAnchors/AzureCliTestRA", + "shape": "VM.Standard.E5.Flex", "source": "None", "sshPublicKeys": ["ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDHJDAu814QnRaYFbuFswJX1IdpFAa8yVk4sneI3Q+QLoTyE4W5GR5f6TR5FqA03zxp41chkvjLysnc+EYJmjXQIbvrsEfaUenGu2AbYE3szBK9v+8iUy8JLgjoGuuxTU3BNCvMlTd00yw/qrOYbEDU9ZBnZVY/0nv2E03AzGUUObZJ8IUgNRUmNdWVFQiVUcmkRRM+XsIEUpuh0S6YJLLweZd+H50Y1mhKWXnZZH8Ed/5EmkSr7cO5WEKU2O/KSbavybkjUVWi6dcQMfwmNLBH9aByqAW8QvcZkZDvxLmimLnm3Jd/QDVvGesjyLbUrWfpbsaDXs+DgjTlFlxyqLPYMON5cfSg8wBj3Y176yWxwmrPnkro8X1Y93poSDQZb9SU68DsTrgVa6FoXWPkbUXz/nZX9GkTwE1Nhy2EPL4J+J50ZUZWG0bK25dFTKrzimLn1Qmvrx3so9qDId9LWbpYI6cJYxDTkGdGpuaHqDqGAi+5HeeXxx3/zO8pErPxy20= + generated-by-azure"]}, "zones": ["1"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database db-system create + Connection: + - keep-alive + Content-Length: + - '1369' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --location --zones --database-edition --admin-password + --resource-anchor-id --network-anchor-id --hostname --shape --display-name + --node-count --initial-data-storage-size-in-gb --compute-model --compute-count + --db-version --pdb-name --db-system-options --ssh-public-keys --no-wait + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: PUT + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/dbSystems/AzureCliSdkNewDdT?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/dbSystems/AzureCliSdkNewDdT","name":"AzureCliSdkNewDdT","type":"oracle.database/dbsystems","location":"eastus","zones":["1"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-12-03T22:20:36.9709745Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-03T22:20:36.9709745Z"},"properties":{"source":"None","provisioningState":"Accepted","ociUrl":"https://cloud.oracle.com/dbaas/dbsystems/ocid1.dbsystem.oc1.iad.anuwcljr2edokzyarm7fwcjw7zgmirayg7r6wmmfxhpu2xwkwij3zqgpzmwa?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaao3rjdbq7sge6kfngahqcum6frw4bnjvsjdy2dfnzrubj6cevnkuq","resourceAnchorId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourcegroups/azurecli/providers/oracle.database/resourceanchors/azureclitestra","networkAnchorId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors/AzureCliTest","clusterName":null,"dataStorageSizeInGbs":256,"dbSystemOptions":{"storageManagement":"LVM"},"diskRedundancy":"High","domain":"ocidelegated.ociazureclivne.oraclevcn.com","gridImageOcid":null,"hostname":"basedbnew","ocid":"ocid1.dbsystem.oc1.iad.anuwcljr2edokzyarm7fwcjw7zgmirayg7r6wmmfxhpu2xwkwij3zqgpzmwa","licenseModel":"LicenseIncluded","lifecycleDetails":null,"lifecycleState":"Provisioning","listenerPort":1521,"memorySizeInGbs":64,"nodeCount":1,"scanDnsName":null,"scanIps":null,"shape":"VM.Standard.E5.Flex","sshPublicKeys":["ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDHJDAu814QnRaYFbuFswJX1IdpFAa8yVk4sneI3Q+QLoTyE4W5GR5f6TR5FqA03zxp41chkvjLysnc+EYJmjXQIbvrsEfaUenGu2AbYE3szBK9v+8iUy8JLgjoGuuxTU3BNCvMlTd00yw/qrOYbEDU9ZBnZVY/0nv2E03AzGUUObZJ8IUgNRUmNdWVFQiVUcmkRRM+XsIEUpuh0S6YJLLweZd+H50Y1mhKWXnZZH8Ed/5EmkSr7cO5WEKU2O/KSbavybkjUVWi6dcQMfwmNLBH9aByqAW8QvcZkZDvxLmimLnm3Jd/QDVvGesjyLbUrWfpbsaDXs+DgjTlFlxyqLPYMON5cfSg8wBj3Y176yWxwmrPnkro8X1Y93poSDQZb9SU68DsTrgVa6FoXWPkbUXz/nZX9GkTwE1Nhy2EPL4J+J50ZUZWG0bK25dFTKrzimLn1Qmvrx3so9qDId9LWbpYI6cJYxDTkGdGpuaHqDqGAi+5HeeXxx3/zO8pErPxy20= + generated-by-azure"],"storageVolumePerformanceMode":"HighPerformance","timeZone":"UTC","version":null,"displayName":"AzureCliSdkNewDdT","computeModel":"OCPU","computeCount":4,"databaseEdition":"EnterpriseEdition","adminPassword":null,"dbVersion":"19.27.0.0"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/9ce72702-23e8-4402-80b2-a2fe2e24caca*5EFBE1946C300220DB87C6D238BD2F2E0A521ABBD4DD35815F6A60205B7B3594?api-version=2025-09-01&t=639003972480022151&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=Cr9FqdFIfb9IukbmD0cUEEmNEvoPWoUOPSS5MbNEay0j0ZybNkweSG2tNprgo6KrCa_qTpjfHRw2L9LxpdetZypR2W_5yOjNupjRC2KheyLaKoSA_YzDUFvTMcOpvj00LYalRpzsDRo8rH1V1Vzg7oko6d7vlqgRji5UfxHaYgLosVy-KO79jafQ8dPKDTktofKQyjcvdiFTMyMdw67NvTnLsQpB11LEmDB0L0yziowc51XhQVbOIvm6_2TTg8NR3sx_5DDrV4_HyJcP7Ip3Q8RFxA7gPdBsWCc03EWH_uo967vskUp5n5VJBuUn9JsaRFx2T83Zwyli4rL2BihWuA&h=6mc-m1SJhr8GH5rOAK-fL0a4d_E8WjsVj6FmBQ4PrvU + cache-control: + - no-cache + content-length: + - '2456' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 03 Dec 2025 22:20:47 GMT + etag: + - '"3a12b030-0000-0100-0000-6930b7bf0000"' + expires: + - '-1' + opc-request-id: + - oci-8B3D75C63A7912B-202512032220/9EF46A307B23ED6FB5B7306949414480/1643DFADF41DB392C2B2DDE6D195BD86 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT4H + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/eastus/f94f7338-c1d7-4d75-b32a-86d0199aca9a + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 633E9EFC67C849DD938B84B522C20706 Ref B: SJC211051205049 Ref C: 2025-12-03T22:20:35Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database db-system show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/dbSystems/AzureCliSdkNewDdT?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/dbSystems/AzureCliSdkNewDdT","name":"AzureCliSdkNewDdT","type":"oracle.database/dbsystems","location":"eastus","zones":["1"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-12-03T22:20:36.9709745Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-03T22:20:36.9709745Z"},"properties":{"source":"None","provisioningState":"Accepted","ociUrl":"https://cloud.oracle.com/dbaas/dbsystems/ocid1.dbsystem.oc1.iad.anuwcljr2edokzyarm7fwcjw7zgmirayg7r6wmmfxhpu2xwkwij3zqgpzmwa?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaao3rjdbq7sge6kfngahqcum6frw4bnjvsjdy2dfnzrubj6cevnkuq","resourceAnchorId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourcegroups/azurecli/providers/oracle.database/resourceanchors/azureclitestra","networkAnchorId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors/AzureCliTest","clusterName":null,"dataStorageSizeInGbs":256,"dbSystemOptions":{"storageManagement":"LVM"},"diskRedundancy":"High","domain":"ocidelegated.ociazureclivne.oraclevcn.com","gridImageOcid":null,"hostname":"basedbnew","ocid":"ocid1.dbsystem.oc1.iad.anuwcljr2edokzyarm7fwcjw7zgmirayg7r6wmmfxhpu2xwkwij3zqgpzmwa","licenseModel":"LicenseIncluded","lifecycleDetails":null,"lifecycleState":"Provisioning","listenerPort":1521,"memorySizeInGbs":64,"nodeCount":1,"scanDnsName":null,"scanIps":null,"shape":"VM.Standard.E5.Flex","sshPublicKeys":["ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDHJDAu814QnRaYFbuFswJX1IdpFAa8yVk4sneI3Q+QLoTyE4W5GR5f6TR5FqA03zxp41chkvjLysnc+EYJmjXQIbvrsEfaUenGu2AbYE3szBK9v+8iUy8JLgjoGuuxTU3BNCvMlTd00yw/qrOYbEDU9ZBnZVY/0nv2E03AzGUUObZJ8IUgNRUmNdWVFQiVUcmkRRM+XsIEUpuh0S6YJLLweZd+H50Y1mhKWXnZZH8Ed/5EmkSr7cO5WEKU2O/KSbavybkjUVWi6dcQMfwmNLBH9aByqAW8QvcZkZDvxLmimLnm3Jd/QDVvGesjyLbUrWfpbsaDXs+DgjTlFlxyqLPYMON5cfSg8wBj3Y176yWxwmrPnkro8X1Y93poSDQZb9SU68DsTrgVa6FoXWPkbUXz/nZX9GkTwE1Nhy2EPL4J+J50ZUZWG0bK25dFTKrzimLn1Qmvrx3so9qDId9LWbpYI6cJYxDTkGdGpuaHqDqGAi+5HeeXxx3/zO8pErPxy20= + generated-by-azure"],"storageVolumePerformanceMode":"HighPerformance","timeZone":"UTC","version":null,"displayName":"AzureCliSdkNewDdT","computeModel":"OCPU","computeCount":4,"databaseEdition":"EnterpriseEdition","adminPassword":null,"dbVersion":"19.27.0.0"}}' + headers: + cache-control: + - no-cache + content-length: + - '2456' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 03 Dec 2025 22:20:48 GMT + etag: + - '"3a12b030-0000-0100-0000-6930b7bf0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 50B4AFCAB0C7416EAE442CC03FA3625A Ref B: SJC211051203037 Ref C: 2025-12-03T22:20:48Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database db-system list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/dbSystems?api-version=2025-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/dbSystems/AzureCliSdkNewDdT","name":"AzureCliSdkNewDdT","type":"oracle.database/dbsystems","location":"eastus","zones":["1"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-12-03T22:20:36.9709745Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-03T22:20:36.9709745Z"},"properties":{"source":"None","provisioningState":"Accepted","ociUrl":"https://cloud.oracle.com/dbaas/dbsystems/ocid1.dbsystem.oc1.iad.anuwcljr2edokzyarm7fwcjw7zgmirayg7r6wmmfxhpu2xwkwij3zqgpzmwa?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaao3rjdbq7sge6kfngahqcum6frw4bnjvsjdy2dfnzrubj6cevnkuq","resourceAnchorId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourcegroups/azurecli/providers/oracle.database/resourceanchors/azureclitestra","networkAnchorId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors/AzureCliTest","dataStorageSizeInGbs":256,"dbSystemOptions":{"storageManagement":"LVM"},"diskRedundancy":"High","domain":"ocidelegated.ociazureclivne.oraclevcn.com","hostname":"basedbnew","ocid":"ocid1.dbsystem.oc1.iad.anuwcljr2edokzyarm7fwcjw7zgmirayg7r6wmmfxhpu2xwkwij3zqgpzmwa","licenseModel":"LicenseIncluded","lifecycleState":"Provisioning","listenerPort":1521,"memorySizeInGbs":64,"nodeCount":1,"shape":"VM.Standard.E5.Flex","sshPublicKeys":["ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDHJDAu814QnRaYFbuFswJX1IdpFAa8yVk4sneI3Q+QLoTyE4W5GR5f6TR5FqA03zxp41chkvjLysnc+EYJmjXQIbvrsEfaUenGu2AbYE3szBK9v+8iUy8JLgjoGuuxTU3BNCvMlTd00yw/qrOYbEDU9ZBnZVY/0nv2E03AzGUUObZJ8IUgNRUmNdWVFQiVUcmkRRM+XsIEUpuh0S6YJLLweZd+H50Y1mhKWXnZZH8Ed/5EmkSr7cO5WEKU2O/KSbavybkjUVWi6dcQMfwmNLBH9aByqAW8QvcZkZDvxLmimLnm3Jd/QDVvGesjyLbUrWfpbsaDXs+DgjTlFlxyqLPYMON5cfSg8wBj3Y176yWxwmrPnkro8X1Y93poSDQZb9SU68DsTrgVa6FoXWPkbUXz/nZX9GkTwE1Nhy2EPL4J+J50ZUZWG0bK25dFTKrzimLn1Qmvrx3so9qDId9LWbpYI6cJYxDTkGdGpuaHqDqGAi+5HeeXxx3/zO8pErPxy20= + generated-by-azure"],"storageVolumePerformanceMode":"HighPerformance","timeZone":"UTC","displayName":"AzureCliSdkNewDdT","computeModel":"OCPU","computeCount":4,"databaseEdition":"EnterpriseEdition","dbVersion":"19.27.0.0"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2334' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 03 Dec 2025 22:20:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 76fb9fe8-85fc-414e-b5e7-48a6c3742319 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 19F274036F534194B3F297C554B87553 Ref B: SJC211051204019 Ref C: 2025-12-03T22:20:49Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_create_network_anchor.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_create_network_anchor.yaml new file mode 100644 index 00000000000..ed6bfcb7b04 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_create_network_anchor.yaml @@ -0,0 +1,173 @@ +interactions: +- request: + body: '{"location": "eastus", "properties": {"isOracleDnsForwardingEndpointEnabled": + false, "isOracleDnsListeningEndpointEnabled": false, "isOracleToAzureDnsZoneSyncEnabled": + false, "resourceAnchorId": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/resourceAnchors/AzureCliTestRA", + "subnetId": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Microsoft.Network/virtualNetworks/AzureCliVnet/subnets/delegated"}, + "zones": ["2"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database network-anchor create + Connection: + - keep-alive + Content-Length: + - '513' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --location --resource-anchor-id --subnet-id --zone + --no-wait + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: PUT + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors/AzureCliTestF?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors/AzureCliTestF","name":"AzureCliTestF","type":"oracle.database/networkanchors","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-20T15:44:29.0477591Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T15:44:29.0477591Z"},"properties":{"resourceAnchorId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/resourceAnchors/AzureCliTestRA","provisioningState":"Accepted","vnetId":null,"subnetId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Microsoft.Network/virtualNetworks/AzureCliVnet/subnets/delegated","cidrBlock":null,"ociVcnId":null,"ociVcnDnsLabel":null,"ociSubnetId":null,"ociBackupCidrBlock":null,"isOracleToAzureDnsZoneSyncEnabled":false,"isOracleDnsListeningEndpointEnabled":false,"isOracleDnsForwardingEndpointEnabled":false,"dnsListeningEndpointIpAddress":null,"dnsForwardingEndpointIpAddress":null,"dnsForwardingRulesUrl":null,"dnsListeningEndpointNsgRulesUrl":null,"dnsForwardingEndpointNsgRulesUrl":null}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/17dfff61-8417-40cf-854c-c68830810c1e*93BB2CDED35CC53F9DE4E6312AF12904C63A7B36E326414F1F18254F3780A8B0?api-version=2025-09-01&t=638992502817041476&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=g0D-dbpnfMxIby7FsBBqfm6_5QgitOEALj_bw1IKAFpPD2t_IvN7nHyvQiHuMFX82d4eqYBJheiAmpaINtj-WHLhcy-snS0Q1dpcSCKzb6qlOBHxQTJA5DSPp33U9rz9XKFTrW59foRv5xr5uqqvFdvM22PNepst3M3Go-eoN8l_XI7ra4MLEFrJzwZkcgCqvGsNN7zrV7wgbCwAcSmA_1DSjWhu6xeyyYUjtL1J_emIhxftx_-iA0m21qnaC2JXH02FYL3zD-h30Ob6_-MTyl2CCBOUjc2SO79cKs-y26csk3NsbGPJL_dYmbMB4nRvuM7nqHkw8yQp9IkHz5YbyQ&h=8HxnxdObAnV6Ka8OVfpWJ-DHK_xBdKXk505T0odSy18 + cache-control: + - no-cache + content-length: + - '1268' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 15:44:40 GMT + etag: + - '"2b08c7c5-0000-0100-0000-691f37690000"' + expires: + - '-1' + opc-request-id: + - oci-CE9D33DB5DD93C9-202511201544/D7FCCF1E8C4347B15D371F69494144C3/4A053175C89C10DCA61FE7D656B959E9 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT4H + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/eastus/824569f0-4815-4b7e-9696-d4a008b7fdcd + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: B3E2FD620DC940988143F67E0AB40934 Ref B: BY1AA1072315025 Ref C: 2025-11-20T15:44:27Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database network-anchor show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors/AzureCliTestF?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors/AzureCliTestF","name":"AzureCliTestF","type":"oracle.database/networkanchors","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-20T15:44:29.0477591Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T15:44:29.0477591Z"},"properties":{"resourceAnchorId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/resourceAnchors/AzureCliTestRA","provisioningState":"Accepted","vnetId":null,"subnetId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Microsoft.Network/virtualNetworks/AzureCliVnet/subnets/delegated","cidrBlock":null,"ociVcnId":null,"ociVcnDnsLabel":null,"ociSubnetId":null,"ociBackupCidrBlock":null,"isOracleToAzureDnsZoneSyncEnabled":false,"isOracleDnsListeningEndpointEnabled":false,"isOracleDnsForwardingEndpointEnabled":false,"dnsListeningEndpointIpAddress":null,"dnsForwardingEndpointIpAddress":null,"dnsForwardingRulesUrl":null,"dnsListeningEndpointNsgRulesUrl":null,"dnsForwardingEndpointNsgRulesUrl":null}}' + headers: + cache-control: + - no-cache + content-length: + - '1268' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 15:44:43 GMT + etag: + - '"2b08c7c5-0000-0100-0000-691f37690000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F5E18330874742018B0695C2F5E81513 Ref B: BY1AA1072317029 Ref C: 2025-11-20T15:44:43Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database network-anchor list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors?api-version=2025-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors/AzureCliTest","name":"AzureCliTest","type":"oracle.database/networkanchors","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T18:06:18.8650818Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T18:15:07.9370154Z"},"properties":{"resourceAnchorId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/resourceAnchors/AzureCliTestRA","provisioningState":"Succeeded","subnetId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Microsoft.Network/virtualNetworks/AzureCliVnet/subnets/delegated","cidrBlock":"10.0.1.0/24","ociVcnId":"ocid1.vcn.oc1.iad.amaaaaaa2edokzya7dm3jji2soep4b2gudme4ea37crwmseezzxtl6emzgrq","ociVcnDnsLabel":"ociAzureCliVne","ociSubnetId":"ocid1.subnet.oc1.iad.aaaaaaaaby5ktinssdgjomcl34m35dgewbrcxq7ryimeououymu6am53xkmq","isOracleToAzureDnsZoneSyncEnabled":false,"isOracleDnsListeningEndpointEnabled":false,"isOracleDnsForwardingEndpointEnabled":false}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/networkAnchors/AzureCliTestF","name":"AzureCliTestF","type":"oracle.database/networkanchors","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-20T15:44:29.0477591Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T15:44:29.0477591Z"},"properties":{"resourceAnchorId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Oracle.Database/resourceAnchors/AzureCliTestRA","provisioningState":"Accepted","subnetId":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCli/providers/Microsoft.Network/virtualNetworks/AzureCliVnet/subnets/delegated","isOracleToAzureDnsZoneSyncEnabled":false,"isOracleDnsListeningEndpointEnabled":false,"isOracleDnsForwardingEndpointEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2223' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 15:44:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 962d852d-d36b-4c35-babc-1bcfdabdf539 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 343EDD8B1F74470E80AF451985F199A0 Ref B: BY1AA1072319054 Ref C: 2025-11-20T15:44:46Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_create_resource_anchor.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_create_resource_anchor.yaml new file mode 100644 index 00000000000..3202048e482 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_create_resource_anchor.yaml @@ -0,0 +1,166 @@ +interactions: +- request: + body: '{"location": "global"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database resource-anchor create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --location --no-wait + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: PUT + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCliNew/providers/Oracle.Database/resourceAnchors/AzureCliTestRAF?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCliNew/providers/Oracle.Database/resourceAnchors/AzureCliTestRAF","name":"AzureCliTestRAF","type":"oracle.database/resourceanchors","location":"global","systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-20T15:46:34.8563349Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T15:46:34.8563349Z"},"properties":{"provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/aadfb765-93c2-4b1f-86c5-c974c0a168cd*FA40554471C888AC0BF05A99630FB303D3FDFCAB4204A8FEB2DA7609935457EB?api-version=2025-09-01&t=638992503964500315&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=Fe68xP-IiWAeJX4OmcOuFthn12r0GNtSi4L6YjX04GycTqqMZm6jvPp9T3TMmY44kSyCjoATbzuYcGD0ZGmn5yLR41o9wBJle-0YpwKNfKhN6-8EPoz2yILLjEIuzi3TZBB4SmURNRE01pUd0iDsjm3Egddv-BPvNS4Ktp3WEWLmzSm4f6a4K8A36v1nG3TqCqhS8xNqtq2yd2m3Mqp1UMl_ZZWmgUksXtJ7yXpp_dh7hCuKf5DX7JA2D7JtOck5hwsRkx2TPuaJIaNpMmM-AG2PqHzjya_OkrZ_NSVDlXuJpAmIch_tjAeg7opQtysPDwZaTV-V2NsCIIDkGwsLzA&h=xRBOPmgO4YE8JObMNZX_iiTPWcC-fbn42cblhNrfQqY + cache-control: + - no-cache + content-length: + - '517' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 15:46:36 GMT + etag: + - '"ad009332-0000-0700-0000-691f37dc0000"' + expires: + - '-1' + opc-request-id: + - oci-6697FBA92A30E0D-202511201546/423A214162026409DB371F6949414433/5C44D428E3B4368C29D5BDA9E89A8B8A + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/eastus/24f902d7-47d8-4168-963e-fe7e43d6d72c + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 8DA9DAA44E104C4F993F51A62805B8AB Ref B: SJC211051201049 Ref C: 2025-11-20T15:46:33Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database resource-anchor show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCliNew/providers/Oracle.Database/resourceAnchors/AzureCliTestRAF?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCliNew/providers/Oracle.Database/resourceAnchors/AzureCliTestRAF","name":"AzureCliTestRAF","type":"oracle.database/resourceanchors","location":"global","systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-20T15:46:34.8563349Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T15:46:34.8563349Z"},"properties":{"provisioningState":"Accepted"}}' + headers: + cache-control: + - no-cache + content-length: + - '517' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 15:46:36 GMT + etag: + - '"ad009332-0000-0700-0000-691f37dc0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8D497B85870B40F391249757B2FF10D9 Ref B: BY1AA1072316042 Ref C: 2025-11-20T15:46:37Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database resource-anchor list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCliNew/providers/Oracle.Database/resourceAnchors?api-version=2025-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/AzureCliNew/providers/Oracle.Database/resourceAnchors/AzureCliTestRAF","name":"AzureCliTestRAF","type":"oracle.database/resourceanchors","location":"global","systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-20T15:46:34.8563349Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T15:46:34.8563349Z"},"properties":{"provisioningState":"Accepted"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '529' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 15:46:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 6c14ea1b-6876-4e3b-92b8-1e9b9c309a47 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 38115EF63CA34F8EAF7C896B04E772D1 Ref B: SJC211051203047 Ref C: 2025-11-20T15:46:38Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_exad_vmcluster.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_exad_vmcluster.yaml new file mode 100644 index 00000000000..fc1f7904969 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_exad_vmcluster.yaml @@ -0,0 +1,153 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database exascale-db-storage-vault show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultTe?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultTe","name":"Ofake_AzCli_vaultTe","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:42:52.1416114Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:44:31.5921851Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzya6neglqifamkxessbq7laxly5nviudmwptut4b4m6sw3a","attachedShapeAttributes":[],"ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzya6neglqifamkxessbq7laxly5nviudmwptut4b4m6sw3a?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea"}}' + headers: + cache-control: + - no-cache + content-length: + - '1290' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Nov 2025 22:22:53 GMT + etag: + - '"0d005148-0000-0100-0000-691e01ff0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 04170F5B1D5C4358AB77D55B6ECAAB83 Ref B: BY1AA1072319040 Ref C: 2025-11-19T22:22:53Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "properties": {"displayName": "Ofake_AzCli_exadbcluster", + "enabledEcpuCount": 16, "exascaleDbStorageVaultId": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultTe", + "gridImageOcid": "ocid1.dbpatch.oc1.iad.xxx", + "hostname": "test-host", "nodeCount": 2, "shape": "EXADBXS", "sshPublicKeys": + ["ssh-rsa AAAAB= + generated-by-azure"], "subnetId": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated", + "totalEcpuCount": 32, "vmFileSystemStorage": {"totalSizeInGbs": 1024}, "vnetId": + "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet"}, + "zones": ["2"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database exadb-vm-cluster create + Connection: + - keep-alive + Content-Length: + - '1455' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --location --zone --exascale-db-storage-vault-id --display-name + --enabled-ecpu-count --grid-image-ocid --hostname --node-count --shape --ssh-public-keys + --vnet-id --subnet-id --total-ecpu-count --vm-file-system-storage --no-wait + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: PUT + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exadbVmClusters/Ofake_AzCli_exadbcluster?api-version=2025-09-01 + response: + body: + string: '{"error":{"code":"400","message":"Error returned by CreateExadbVmCluster + operation in Database service.(400, InvalidParameter, false) Both Exadb VM + Cluster and Exascale Database Storage Vault either should be real or fake + resources. Exascale Database Storage Vault ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzya6neglqifamkxessbq7laxly5nviudmwptut4b4m6sw3a + is null resource, but VM Cluster Resource needs to be created as Fake resource. + (opc-request-id: oci-82A263793475A39-202511192222/6CC50DC6356C6E39898AFFFA5D14230E/5EADFCE0D2641619F5BEEA473C46FE51)\nTimestamp: + 2025-11-19T22:23:11.332Z\nClient version: Oracle-JavaSDK/2.85.1-preview1-SNAPSHOT\nRequest + Endpoint: https://database.us-ashburn-1.oraclecloud.com/20160918/exadbVmClusters\nTroubleshooting + Tips: See https://docs.oracle.com/en-us/iaas/Content/API/References/apierrors.htm#apierrors_400__400_invalidparameter + for more information about resolving this error\nAlso see https://docs.oracle.com/iaas/api/#/en/database/20160918/ExadbVmCluster/CreateExadbVmCluster + for details on this operation''s requirements.\nTo get more info on the failing + request, you can enable debug level logs as mentioned in `Using SLF4J for + Logging section` in https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconfig.htm.\nIf + you are unable to resolve this Database issue, please contact Oracle support + and provide them this full error message.","details":[{"code":"400","target":"CreateCloudVmClusterDetails","message":"Error + returned by CreateExadbVmCluster operation in Database service.(400, InvalidParameter, + false) Both Exadb VM Cluster and Exascale Database Storage Vault either should + be real or fake resources. Exascale Database Storage Vault ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzya6neglqifamkxessbq7laxly5nviudmwptut4b4m6sw3a + is null resource, but VM Cluster Resource needs to be created as Fake resource. + (opc-request-id: oci-82A263793475A39-202511192222/6CC50DC6356C6E39898AFFFA5D14230E/5EADFCE0D2641619F5BEEA473C46FE51)\nTimestamp: + 2025-11-19T22:23:11.332Z\nClient version: Oracle-JavaSDK/2.85.1-preview1-SNAPSHOT\nRequest + Endpoint: https://database.us-ashburn-1.oraclecloud.com/20160918/exadbVmClusters\nTroubleshooting + Tips: See https://docs.oracle.com/en-us/iaas/Content/API/References/apierrors.htm#apierrors_400__400_invalidparameter + for more information about resolving this error\nAlso see https://docs.oracle.com/iaas/api/#/en/database/20160918/ExadbVmCluster/CreateExadbVmCluster + for details on this operation''s requirements.\nTo get more info on the failing + request, you can enable debug level logs as mentioned in `Using SLF4J for + Logging section` in https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconfig.htm.\nIf + you are unable to resolve this Database issue, please contact Oracle support + and provide them this full error message."}]}}' + headers: + cache-control: + - no-cache + content-length: + - '2844' + content-type: + - application/json + date: + - Wed, 19 Nov 2025 22:23:11 GMT + expires: + - '-1' + opc-request-id: + - oci-82A263793475A39-202511192222/3B18D552D781B7CE41431E69494144F6/870FCA6FABAD8A6AF3CC8238155F01BC + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus3/f61659e9-6e8f-4423-9e1a-eb673f5a375a + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 2B277A7B9F904CA8BA568816DE970BB7 Ref B: BY1AA1072315060 Ref C: 2025-11-19T22:22:55Z' + status: + code: 400 + message: Bad Request +version: 1 diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_exascale_lifecycle.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_exascale_lifecycle.yaml new file mode 100644 index 00000000000..607027d648c --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_exascale_lifecycle.yaml @@ -0,0 +1,332 @@ +interactions: +- request: + body: '{"location": "eastus", "properties": {"description": "Test Description", + "displayName": "test-vault", "highCapacityDatabaseStorageInput": {"totalSizeInGbs": + 300}}, "zones": ["2"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database exascale-db-storage-vault create + Connection: + - keep-alive + Content-Length: + - '179' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --location --zone --description --display-name --high-capacity-database-storage-input + --no-wait + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: PUT + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultTe?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultTe","name":"Ofake_AzCli_vaultTe","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:42:52.1416114Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-19T17:42:52.1416114Z"},"properties":{"additionalFlashCacheInPercent":null,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"availableSizeInGbs":null,"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":null,"provisioningState":"Accepted","lifecycleState":"Provisioning","lifecycleDetails":null,"vmClusterCount":null,"ocid":null,"ociUrl":null,"exadataInfrastructureId":null,"attachedShapeAttributes":null}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/6b8530cd-69e3-41b3-8b23-7257b7afedca*36EF578AAB8B5D6C96369FA820C5530487DDFEAC6AC769E598F2D75206E874B2?api-version=2025-09-01&t=638991709862507973&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=rb48XqOFbt8Z2ibXuR4Wc0OpywTSF1IJH_ryb6Z4vzLDR7j3vlH68LVF3n6GtkcbbpY1wanVVvpLwuLsB7Ukrq8pLXQMWW8bf06cztvr0o-CR12UviTv4HavLYtOQp6_GO2HVqvWanv1saEzKPlIxnMBKLaw44YLg4gbfcrG3AMipw6W7Siu21q_qNPHSl2JYxvShlUn3AP5KoaA1mw_BOLJZ2miwLhmAPcO3TBfJ4mw3Nqi1kuV-EBQQqBEG3E5qLR4GfH21hV00FBGc6xOE0MDU7xUAzz7Rg49OwO3H_csyL0OOKwmMe8bdWCJx_clHppqUAK3tYsdKEKgBixJqw&h=KYfZpUkwG6aUz73e51lfzNVVprZ2yXclCbmVnLs7Eq0 + cache-control: + - no-cache + content-length: + - '972' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Nov 2025 17:43:05 GMT + etag: + - '"0d004d48-0000-0100-0000-691e01aa0000"' + expires: + - '-1' + opc-request-id: + - oci-8AABF1CC28EC272-202511191742/FF783677FF43D9DB9C011E694941446F/EDFE16A31B69C8F34AAA8DB5B8B304CC + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT4H + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/eastus/8083af0b-5dc6-48b9-895e-6090ea7bc5ce + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 4386455A80A6492084C3DAD14CB4190C Ref B: BY1AA1072315029 Ref C: 2025-11-19T17:42:50Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database exascale-db-storage-vault show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultTe?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultTe","name":"Ofake_AzCli_vaultTe","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:42:52.1416114Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-19T17:42:52.1416114Z"},"properties":{"additionalFlashCacheInPercent":null,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"availableSizeInGbs":null,"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":null,"provisioningState":"Accepted","lifecycleState":"Provisioning","lifecycleDetails":null,"vmClusterCount":null,"ocid":null,"ociUrl":null,"exadataInfrastructureId":null,"attachedShapeAttributes":null}}' + headers: + cache-control: + - no-cache + content-length: + - '972' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Nov 2025 17:43:07 GMT + etag: + - '"0d004d48-0000-0100-0000-691e01aa0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2058967E96CD47E697E938302F213C03 Ref B: SJC211051201025 Ref C: 2025-11-19T17:43:06Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database exascale-db-storage-vault list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults?api-version=2025-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vault","name":"Ofake_AzCli_vault","type":"oracle.database/exascaledbstoragevaults","location":"canadacentral","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:16:33.4929601Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:17:57.217389Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyajmy6lijumyain747hx6t33trs4n3ycmxjo3vfme2tyhq","ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyajmy6lijumyain747hx6t33trs4n3ycmxjo3vfme2tyhq?region=ca-toronto-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","attachedShapeAttributes":[]}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultNew","name":"Ofake_AzCli_vaultNew","type":"oracle.database/exascaledbstoragevaults","location":"canadacentral","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:19:56.939487Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:21:14.4841508Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyarlzkiomdcesrjxmd2wpf56lmnhkmsrfegmziqckxt7xq","attachedShapeAttributes":[],"ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyarlzkiomdcesrjxmd2wpf56lmnhkmsrfegmziqckxt7xq?region=ca-toronto-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea"}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultN","name":"Ofake_AzCli_vaultN","type":"oracle.database/exascaledbstoragevaults","location":"canadacentral","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:22:47.6351786Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:23:59.0575208Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyai2pik6bqb6fnoglqorr5363j2mxdrv62kbwjwhho7f2a","ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyai2pik6bqb6fnoglqorr5363j2mxdrv62kbwjwhho7f2a?region=ca-toronto-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","attachedShapeAttributes":[]}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultNe","name":"Ofake_AzCli_vaultNe","type":"oracle.database/exascaledbstoragevaults","location":"canadacentral","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:26:52.9643061Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:28:03.2908435Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyakowbfiqbjqbld6zq6b6arurt4tu7vay3t5gf24yyyxwq","attachedShapeAttributes":[],"ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyakowbfiqbjqbld6zq6b6arurt4tu7vay3t5gf24yyyxwq?region=ca-toronto-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea"}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultNee","name":"Ofake_AzCli_vaultNee","type":"oracle.database/exascaledbstoragevaults","location":"canadacentral","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:27:56.7226998Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:29:13.6915072Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyapwtodhwhp4vcfpansgcgc366sp24n4thny7kela45h4q","attachedShapeAttributes":[],"ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyapwtodhwhp4vcfpansgcgc366sp24n4thny7kela45h4q?region=ca-toronto-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea"}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultNt","name":"Ofake_AzCli_vaultNt","type":"oracle.database/exascaledbstoragevaults","location":"canadacentral","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:30:10.7450369Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:31:18.1824011Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyal347aw3dmwzotxqpz5bnyphodfawbjuwhpw5gkh26caa","attachedShapeAttributes":[],"ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyal347aw3dmwzotxqpz5bnyphodfawbjuwhpw5gkh26caa?region=ca-toronto-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea"}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultNet","name":"Ofake_AzCli_vaultNet","type":"oracle.database/exascaledbstoragevaults","location":"canadacentral","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:32:22.4236831Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:33:28.1755503Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyay6k6x3x3ig3ik4vyllt5vap6bpn22vokxltzktffp6ga","attachedShapeAttributes":[],"ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyay6k6x3x3ig3ik4vyllt5vap6bpn22vokxltzktffp6ga?region=ca-toronto-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea"}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultT","name":"Ofake_AzCli_vaultT","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:38:56.8027492Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:40:26.0717761Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzyap57ixs53z3odlx4e4xpu3pfqennqwlrrmtbtwziv56vq","ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzyap57ixs53z3odlx4e4xpu3pfqennqwlrrmtbtwziv56vq?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","attachedShapeAttributes":[]}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultTe","name":"Ofake_AzCli_vaultTe","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:42:52.1416114Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-19T17:42:52.1416114Z"},"properties":{"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"provisioningState":"Accepted","lifecycleState":"Provisioning"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11270' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Nov 2025 17:43:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 84a59c16-2922-4ad7-bca8-1d645b4eb824 + - 8bd64a5a-6d25-415b-ba16-e1b066968890 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B0EB5F9297074932BB1D77A33BED3448 Ref B: BY1AA1072318031 Ref C: 2025-11-19T17:43:07Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database exascale-db-storage-vault show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultT?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultT","name":"Ofake_AzCli_vaultT","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:38:56.8027492Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:40:26.0717761Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzyap57ixs53z3odlx4e4xpu3pfqennqwlrrmtbtwziv56vq","ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzyap57ixs53z3odlx4e4xpu3pfqennqwlrrmtbtwziv56vq?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","attachedShapeAttributes":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '1288' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Nov 2025 17:43:08 GMT + etag: + - '"0d004a48-0000-0100-0000-691e010a0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B262837D856041EB938E5E0210E4D21B Ref B: SJC211051203029 Ref C: 2025-11-19T17:43:08Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "properties": {"displayName": "Ofake_AzCli_exadbcluster", + "enabledEcpuCount": 16, "exascaleDbStorageVaultId": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultT", + "gridImageOcid": "ocid1.dbpatch.oc1.iad.xxx", + "hostname": "test-host", "nodeCount": 2, "shape": "EXADBXS", "sshPublicKeys": + ["ssh-rsa AAAAB= + generated-by-azure"], "subnetId": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated", + "totalEcpuCount": 32, "vmFileSystemStorage": {"totalSizeInGbs": 1024}, "vnetId": + "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet"}, + "zones": ["2"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database exadb-vm-cluster create + Connection: + - keep-alive + Content-Length: + - '1454' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --location --zone --exascale-db-storage-vault-id --display-name + --enabled-ecpu-count --grid-image-ocid --hostname --node-count --shape --ssh-public-key + --vnet-id --subnet-id --total-ecpu-count --vm-file-system-storage --no-wait + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: PUT + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exadbVmClusters/Ofake_AzCli_exadbcluster?api-version=2025-09-01 + response: + body: + string: '{"error":{"code":"400","message":"Error returned by CreateExadbVmCluster + operation in Database service.(400, InvalidParameter, false) Both Exadb VM + Cluster and Exascale Database Storage Vault either should be real or fake + resources. Exascale Database Storage Vault ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzyap57ixs53z3odlx4e4xpu3pfqennqwlrrmtbtwziv56vq + is null resource, but VM Cluster Resource needs to be created as Fake resource. + (opc-request-id: oci-758962D5ADA352E-202511191743/1FBD7CD8B0F5FDF3445E807396173979/EBDBC9F2A1195FF9719E36DB91D8CE2A)\nTimestamp: + 2025-11-19T17:43:28.212Z\nClient version: Oracle-JavaSDK/2.85.1-preview1-SNAPSHOT\nRequest + Endpoint: https://database.us-ashburn-1.oraclecloud.com/20160918/exadbVmClusters\nTroubleshooting + Tips: See https://docs.oracle.com/en-us/iaas/Content/API/References/apierrors.htm#apierrors_400__400_invalidparameter + for more information about resolving this error\nAlso see https://docs.oracle.com/iaas/api/#/en/database/20160918/ExadbVmCluster/CreateExadbVmCluster + for details on this operation''s requirements.\nTo get more info on the failing + request, you can enable debug level logs as mentioned in `Using SLF4J for + Logging section` in https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconfig.htm.\nIf + you are unable to resolve this Database issue, please contact Oracle support + and provide them this full error message.","details":[{"code":"400","target":"CreateCloudVmClusterDetails","message":"Error + returned by CreateExadbVmCluster operation in Database service.(400, InvalidParameter, + false) Both Exadb VM Cluster and Exascale Database Storage Vault either should + be real or fake resources. Exascale Database Storage Vault ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzyap57ixs53z3odlx4e4xpu3pfqennqwlrrmtbtwziv56vq + is null resource, but VM Cluster Resource needs to be created as Fake resource. + (opc-request-id: oci-758962D5ADA352E-202511191743/1FBD7CD8B0F5FDF3445E807396173979/EBDBC9F2A1195FF9719E36DB91D8CE2A)\nTimestamp: + 2025-11-19T17:43:28.212Z\nClient version: Oracle-JavaSDK/2.85.1-preview1-SNAPSHOT\nRequest + Endpoint: https://database.us-ashburn-1.oraclecloud.com/20160918/exadbVmClusters\nTroubleshooting + Tips: See https://docs.oracle.com/en-us/iaas/Content/API/References/apierrors.htm#apierrors_400__400_invalidparameter + for more information about resolving this error\nAlso see https://docs.oracle.com/iaas/api/#/en/database/20160918/ExadbVmCluster/CreateExadbVmCluster + for details on this operation''s requirements.\nTo get more info on the failing + request, you can enable debug level logs as mentioned in `Using SLF4J for + Logging section` in https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconfig.htm.\nIf + you are unable to resolve this Database issue, please contact Oracle support + and provide them this full error message."}]}}' + headers: + cache-control: + - no-cache + content-length: + - '2844' + content-type: + - application/json + date: + - Wed, 19 Nov 2025 17:43:27 GMT + expires: + - '-1' + opc-request-id: + - oci-758962D5ADA352E-202511191743/DB3723D37ED04009AF011E69494144AD/20781A99364007E41F0A184E9C085791 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/eastus/3664f169-6886-4abf-9d67-3c7962f8eeb8 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 9186F5BA9BC948538224AFB02AC3BB3C Ref B: SJC211051203051 Ref C: 2025-11-19T17:43:09Z' + status: + code: 400 + message: Bad Request +version: 1 diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_exascale_storage_vault_lifecycle.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_exascale_storage_vault_lifecycle.yaml new file mode 100644 index 00000000000..891b78b1490 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_exascale_storage_vault_lifecycle.yaml @@ -0,0 +1,176 @@ +interactions: +- request: + body: '{"location": "eastus", "properties": {"description": "Test Description", + "displayName": "test-vault", "highCapacityDatabaseStorageInput": {"totalSizeInGbs": + 300}}, "zones": ["2"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database exascale-db-storage-vault create + Connection: + - keep-alive + Content-Length: + - '179' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --location --zone --description --display-name --high-capacity-database-storage-input + --no-wait + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: PUT + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/AzCli_vaultTest?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/AzCli_vaultTest","name":"AzCli_vaultTest","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-20T15:41:43.4414484Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T15:41:43.4414484Z"},"properties":{"additionalFlashCacheInPercent":null,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"availableSizeInGbs":null,"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":null,"provisioningState":"Accepted","lifecycleState":"Provisioning","lifecycleDetails":null,"vmClusterCount":null,"ocid":null,"ociUrl":null,"exadataInfrastructureId":null,"attachedShapeAttributes":null}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/providers/Oracle.Database/locations/EASTUS/operationStatuses/a1e0d629-57b6-4824-8aba-c60c6e7977a0*2DFC747B58D2E988655114D3F17EA8112F2A76995099F46C3A0564E33733DC81?api-version=2025-09-01&t=638992501175979570&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=KiSQ-Uy4n0WtG6jfkDu899I3h_o3ksBCphmYNlRBw9mP7vydT9KqwKPbwvLnmgc8GNMe1L8VL86wyR8tEZ75FG74dhWIMH99ZmmhL6rz6mpr8gpbkPyNYCr54bJDU79hR82qLDBXpkznI-RiOEk3tI1LrMmgCmlHFhr3N-uUyzEOpustRyQDjYa2EQo4kU-_Np46o2nEuJt0pixyNW6Ib3XhUoz21hwdO7zxzBwomEp6JEQKsLCHKOTg549lZAniRFUpZEjouhCLT7HxNuqiwefJXa-VdYpB0cbk0vxdr6LfPArIFwnr8CBqhTHxoySpea1ycrmFcFOCARMxfBwMHA&h=MklFLGUHfhyXQKiGpaBLFAoNaJQs6rdfhHu3atGf9MM + cache-control: + - no-cache + content-length: + - '964' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 15:41:57 GMT + etag: + - '"0d00da4a-0000-0100-0000-691f36c50000"' + expires: + - '-1' + opc-request-id: + - oci-BFF3FA530EF50A3-202511201541/3AB9CD646C16EFDBB7361F69494144F7/777AA87B2E6E2768E6A78572EE62960A + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT4H + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/184ec37e-3e89-4bb7-b1b6-178639941eef + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 5BEF9A23FA564040A85B4E91D35A406F Ref B: BY1AA1072315062 Ref C: 2025-11-20T15:41:41Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database exascale-db-storage-vault show + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/AzCli_vaultTest?api-version=2025-09-01 + response: + body: + string: '{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/AzCli_vaultTest","name":"AzCli_vaultTest","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-20T15:41:43.4414484Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T15:41:43.4414484Z"},"properties":{"additionalFlashCacheInPercent":null,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"availableSizeInGbs":null,"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":null,"provisioningState":"Accepted","lifecycleState":"Provisioning","lifecycleDetails":null,"vmClusterCount":null,"ocid":null,"ociUrl":null,"exadataInfrastructureId":null,"attachedShapeAttributes":null}}' + headers: + cache-control: + - no-cache + content-length: + - '964' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 15:41:58 GMT + etag: + - '"0d00da4a-0000-0100-0000-691f36c50000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: B4CD2180AE1C4FD9800A0AE2849824B5 Ref B: BY1AA1072315025 Ref C: 2025-11-20T15:41:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate, zstd + CommandName: + - oracle-database exascale-db-storage-vault list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.79.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) + method: GET + uri: https://www-proxy-adcq7-new.us.oracle.com:80/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults?api-version=2025-09-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vault","name":"Ofake_AzCli_vault","type":"oracle.database/exascaledbstoragevaults","location":"canadacentral","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:16:33.4929601Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:17:57.217389Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyajmy6lijumyain747hx6t33trs4n3ycmxjo3vfme2tyhq","ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.ca-toronto-1.an2g6ljr2edokzyajmy6lijumyain747hx6t33trs4n3ycmxjo3vfme2tyhq?region=ca-toronto-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","attachedShapeAttributes":[]}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultTe","name":"Ofake_AzCli_vaultTe","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T17:42:52.1416114Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T17:44:31.5921851Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzya6neglqifamkxessbq7laxly5nviudmwptut4b4m6sw3a","attachedShapeAttributes":[],"ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzya6neglqifamkxessbq7laxly5nviudmwptut4b4m6sw3a?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea"}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/Ofake_AzCli_vaultTest","name":"Ofake_AzCli_vaultTest","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-19T21:52:16.4441894Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-11-19T21:54:19.5850215Z"},"properties":{"additionalFlashCacheInPercent":0,"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"timeZone":"UTC","provisioningState":"Succeeded","lifecycleState":"Available","vmClusterCount":0,"ocid":"ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzyafh2bwziybgawfnul5ikjt27ntap5nkvhcgzcix4umnfa","ociUrl":"https://cloud.oracle.com/dbaas/exadb-xs/exascaleStorageVaults/ocid1.exascaledbstoragevault.oc1.iad.anuwcljt2edokzyafh2bwziybgawfnul5ikjt27ntap5nkvhcgzcix4umnfa?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","attachedShapeAttributes":[]}},{"id":"/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/testAzureCLi/providers/Oracle.Database/exascaleDbStorageVaults/AzCli_vaultTest","name":"AzCli_vaultTest","type":"oracle.database/exascaledbstoragevaults","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-20T15:41:43.4414484Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-20T15:41:43.4414484Z"},"properties":{"description":"Test + Description","displayName":"test-vault","highCapacityDatabaseStorage":{"totalSizeInGbs":300},"highCapacityDatabaseStorageInput":{"totalSizeInGbs":300},"provisioningState":"Accepted","lifecycleState":"Provisioning"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4660' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Nov 2025 15:42:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 3aa50904-23a1-48ad-957d-8ee22aa7f7e8 + - dc738275-8f41-467a-baf5-52d0da5712df + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 11C0E7007F164D3791F7BEE5DD6FF000 Ref B: BY1AA1072320052 Ref C: 2025-11-20T15:41:59Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_adbs.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_adbs.yaml index 222a2bfab31..e067ae46d7d 100644 --- a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_adbs.yaml +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_adbs.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database autonomous-database version list Connection: @@ -13,39 +13,43 @@ interactions: ParameterSetName: - --location User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions?api-version=2025-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/19c","name":"19c","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"AJD","isDefaultForFree":false,"isDefaultForPaid":true,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"19c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/19c","name":"19c","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"APEX","isDefaultForFree":false,"isDefaultForPaid":true,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"19c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/19c","name":"19c","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"DW","isDefaultForFree":false,"isDefaultForPaid":true,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"19c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/19c","name":"19c","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"OLTP","isDefaultForFree":false,"isDefaultForPaid":true,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"19c"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/19c","name":"19c","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"APEX","isDefaultForFree":true,"isDefaultForPaid":true,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"19c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/19c","name":"19c","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"AJD","isDefaultForFree":false,"isDefaultForPaid":false,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"19c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/19c","name":"19c","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"OLTP","isDefaultForFree":true,"isDefaultForPaid":true,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"19c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/19c","name":"19c","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"DW","isDefaultForFree":true,"isDefaultForPaid":true,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"19c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/19c","name":"19c","type":"Oracle.Database/autonomousDbVersions","properties":{"isDefaultForFree":true,"isDefaultForPaid":true,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"19c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/23ai","name":"23ai","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"OLTP","isDefaultForFree":false,"isDefaultForPaid":false,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"23ai"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/23ai","name":"23ai","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"APEX","isDefaultForFree":false,"isDefaultForPaid":false,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"23ai"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/23ai","name":"23ai","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"AJD","isDefaultForFree":true,"isDefaultForPaid":true,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"23ai"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/23ai","name":"23ai","type":"Oracle.Database/autonomousDbVersions","properties":{"dbWorkload":"DW","isDefaultForFree":false,"isDefaultForPaid":false,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"23ai"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDbVersions/23ai","name":"23ai","type":"Oracle.Database/autonomousDbVersions","properties":{"isDefaultForFree":false,"isDefaultForPaid":false,"isFreeTierEnabled":true,"isPaidEnabled":true,"version":"23ai"}}]}' headers: cache-control: - no-cache content-length: - - '1344' + - '3320' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 13:06:42 GMT + - Fri, 05 Dec 2025 04:34:07 GMT expires: - '-1' opc-request-id: - - /47E6164EEBE6664E756E1196C2A3A68C/E5DC6145D6912F98782AFA1841939FE6 + - oci-8530C17AD6AE1B5-202512050434/E31274F5D501E757BE60326949414495/E5FC48D6985EB70603AD7C70CBBF6321 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/9a61ff11-30ba-4da1-922c-add292ce4a9d x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 70227C220FDD452299FAE54949D1CB24 Ref B: AMS231020614035 Ref C: 2024-07-05T13:06:41Z' + - 'Ref A: 5508B8A7AA464DEC82EB23B97F0044B3 Ref B: BY1AA1072317052 Ref C: 2025-12-05T04:34:06Z' status: code: 200 message: OK @@ -55,7 +59,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database gi-version list Connection: @@ -63,39 +67,43 @@ interactions: ParameterSetName: - --location User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions?api-version=2025-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/19.0.0.0","name":"19.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"19.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/23.0.0.0","name":"23.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"23.0.0.0"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*Exadata.X9M+z*1+v*19.0.0.0","name":"s*Exadata.X9M+z*1+v*19.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"19.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*Exadata.X9M+z*1+v*26.0.0.0","name":"s*Exadata.X9M+z*1+v*26.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"26.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*Exadata.X11M+z*1+v*19.0.0.0","name":"s*Exadata.X11M+z*1+v*19.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"19.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*Exadata.X11M+z*1+v*26.0.0.0","name":"s*Exadata.X11M+z*1+v*26.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"26.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*ExaDbXS+z*1+v*19.0.0.0","name":"s*ExaDbXS+z*1+v*19.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"19.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*ExaDbXS+z*1+v*26.0.0.0","name":"s*ExaDbXS+z*1+v*26.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"26.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*Exadata.X9M+z*2+v*19.0.0.0","name":"s*Exadata.X9M+z*2+v*19.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"19.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*Exadata.X9M+z*2+v*26.0.0.0","name":"s*Exadata.X9M+z*2+v*26.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"26.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*Exadata.X11M+z*2+v*19.0.0.0","name":"s*Exadata.X11M+z*2+v*19.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"19.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*Exadata.X11M+z*2+v*26.0.0.0","name":"s*Exadata.X11M+z*2+v*26.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"26.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*ExaDbXS+z*2+v*19.0.0.0","name":"s*ExaDbXS+z*2+v*19.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"19.0.0.0"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/giVersions/s*ExaDbXS+z*2+v*26.0.0.0","name":"s*ExaDbXS+z*2+v*26.0.0.0","type":"Oracle.Database/Locations/giVersions","properties":{"version":"26.0.0.0"}}]}' headers: cache-control: - no-cache content-length: - - '459' + - '3155' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 13:06:44 GMT + - Fri, 05 Dec 2025 04:34:17 GMT expires: - '-1' opc-request-id: - - /F7436C352BC9740218397D9AE1CF6FB8/586976A777147AC5571D53B7A695D8CF + - oci-C5760A05A75A877-202512050434/48921FD1E328BC36C1603269494144E3/AC2EE7367871F4F35291C8200DB4CA0F pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/aab23c56-fc7a-4bea-ba9b-a600f3a5775e x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2E68818F9A264F6EBA57CD24604B2A67 Ref B: AMS231020615007 Ref C: 2024-07-05T13:06:43Z' + - 'Ref A: 384EEE38CB574509B105753F15820835 Ref B: BY1AA1072319034 Ref C: 2025-12-05T04:34:08Z' status: code: 200 message: OK @@ -105,7 +113,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database autonomous-database character-set list Connection: @@ -113,9 +121,9 @@ interactions: ParameterSetName: - --location User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets?api-version=2025-09-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/al32utf8","type":"DATABASE","properties":{"characterSet":"AL32UTF8"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8ados710","type":"DATABASE","properties":{"characterSet":"AR8ADOS710"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8ados720","type":"DATABASE","properties":{"characterSet":"AR8ADOS720"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8aptec715","type":"DATABASE","properties":{"characterSet":"AR8APTEC715"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8arabicmacs","type":"DATABASE","properties":{"characterSet":"AR8ARABICMACS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8asmo8x","type":"DATABASE","properties":{"characterSet":"AR8ASMO8X"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8iso8859p6","type":"DATABASE","properties":{"characterSet":"AR8ISO8859P6"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8mswin1256","type":"DATABASE","properties":{"characterSet":"AR8MSWIN1256"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8mussad768","type":"DATABASE","properties":{"characterSet":"AR8MUSSAD768"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8nafitha711","type":"DATABASE","properties":{"characterSet":"AR8NAFITHA711"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8nafitha721","type":"DATABASE","properties":{"characterSet":"AR8NAFITHA721"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8sakhr706","type":"DATABASE","properties":{"characterSet":"AR8SAKHR706"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ar8sakhr707","type":"DATABASE","properties":{"characterSet":"AR8SAKHR707"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/az8iso8859p9e","type":"DATABASE","properties":{"characterSet":"AZ8ISO8859P9E"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/bg8mswin","type":"DATABASE","properties":{"characterSet":"BG8MSWIN"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/bg8pc437s","type":"DATABASE","properties":{"characterSet":"BG8PC437S"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/blt8cp921","type":"DATABASE","properties":{"characterSet":"BLT8CP921"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/blt8iso8859p13","type":"DATABASE","properties":{"characterSet":"BLT8ISO8859P13"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/blt8mswin1257","type":"DATABASE","properties":{"characterSet":"BLT8MSWIN1257"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/blt8pc775","type":"DATABASE","properties":{"characterSet":"BLT8PC775"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/bn8bscii","type":"DATABASE","properties":{"characterSet":"BN8BSCII"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/cdn8pc863","type":"DATABASE","properties":{"characterSet":"CDN8PC863"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/cel8iso8859p14","type":"DATABASE","properties":{"characterSet":"CEL8ISO8859P14"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/cl8iso8859p5","type":"DATABASE","properties":{"characterSet":"CL8ISO8859P5"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/cl8isoir111","type":"DATABASE","properties":{"characterSet":"CL8ISOIR111"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/cl8koi8r","type":"DATABASE","properties":{"characterSet":"CL8KOI8R"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/cl8koi8u","type":"DATABASE","properties":{"characterSet":"CL8KOI8U"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/cl8maccyrillics","type":"DATABASE","properties":{"characterSet":"CL8MACCYRILLICS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/cl8mswin1251","type":"DATABASE","properties":{"characterSet":"CL8MSWIN1251"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ee8iso8859p2","type":"DATABASE","properties":{"characterSet":"EE8ISO8859P2"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ee8macces","type":"DATABASE","properties":{"characterSet":"EE8MACCES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ee8maccroatians","type":"DATABASE","properties":{"characterSet":"EE8MACCROATIANS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ee8mswin1250","type":"DATABASE","properties":{"characterSet":"EE8MSWIN1250"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ee8pc852","type":"DATABASE","properties":{"characterSet":"EE8PC852"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/el8dec","type":"DATABASE","properties":{"characterSet":"EL8DEC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/el8iso8859p7","type":"DATABASE","properties":{"characterSet":"EL8ISO8859P7"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/el8macgreeks","type":"DATABASE","properties":{"characterSet":"EL8MACGREEKS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/el8mswin1253","type":"DATABASE","properties":{"characterSet":"EL8MSWIN1253"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/el8pc437s","type":"DATABASE","properties":{"characterSet":"EL8PC437S"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/el8pc851","type":"DATABASE","properties":{"characterSet":"EL8PC851"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/el8pc869","type":"DATABASE","properties":{"characterSet":"EL8PC869"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/et8mswin923","type":"DATABASE","properties":{"characterSet":"ET8MSWIN923"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/hu8abmod","type":"DATABASE","properties":{"characterSet":"HU8ABMOD"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/hu8cwi2","type":"DATABASE","properties":{"characterSet":"HU8CWI2"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/in8iscii","type":"DATABASE","properties":{"characterSet":"IN8ISCII"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/is8pc861","type":"DATABASE","properties":{"characterSet":"IS8PC861"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/iw8iso8859p8","type":"DATABASE","properties":{"characterSet":"IW8ISO8859P8"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/iw8machebrews","type":"DATABASE","properties":{"characterSet":"IW8MACHEBREWS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/iw8mswin1255","type":"DATABASE","properties":{"characterSet":"IW8MSWIN1255"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/iw8pc1507","type":"DATABASE","properties":{"characterSet":"IW8PC1507"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ja16euc","type":"DATABASE","properties":{"characterSet":"JA16EUC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ja16euctilde","type":"DATABASE","properties":{"characterSet":"JA16EUCTILDE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ja16sjis","type":"DATABASE","properties":{"characterSet":"JA16SJIS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ja16sjistilde","type":"DATABASE","properties":{"characterSet":"JA16SJISTILDE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ja16vms","type":"DATABASE","properties":{"characterSet":"JA16VMS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ko16ksc5601","type":"DATABASE","properties":{"characterSet":"KO16KSC5601"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ko16ksccs","type":"DATABASE","properties":{"characterSet":"KO16KSCCS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ko16mswin949","type":"DATABASE","properties":{"characterSet":"KO16MSWIN949"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/la8iso6937","type":"DATABASE","properties":{"characterSet":"LA8ISO6937"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/la8passport","type":"DATABASE","properties":{"characterSet":"LA8PASSPORT"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/lt8mswin921","type":"DATABASE","properties":{"characterSet":"LT8MSWIN921"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/lt8pc772","type":"DATABASE","properties":{"characterSet":"LT8PC772"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/lt8pc774","type":"DATABASE","properties":{"characterSet":"LT8PC774"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/lv8pc1117","type":"DATABASE","properties":{"characterSet":"LV8PC1117"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/lv8pc8lr","type":"DATABASE","properties":{"characterSet":"LV8PC8LR"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/lv8rst104090","type":"DATABASE","properties":{"characterSet":"LV8RST104090"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/n8pc865","type":"DATABASE","properties":{"characterSet":"N8PC865"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ne8iso8859p10","type":"DATABASE","properties":{"characterSet":"NE8ISO8859P10"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/nee8iso8859p4","type":"DATABASE","properties":{"characterSet":"NEE8ISO8859P4"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ru8besta","type":"DATABASE","properties":{"characterSet":"RU8BESTA"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ru8pc855","type":"DATABASE","properties":{"characterSet":"RU8PC855"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/ru8pc866","type":"DATABASE","properties":{"characterSet":"RU8PC866"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/se8iso8859p3","type":"DATABASE","properties":{"characterSet":"SE8ISO8859P3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/th8macthais","type":"DATABASE","properties":{"characterSet":"TH8MACTHAIS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/th8tisascii","type":"DATABASE","properties":{"characterSet":"TH8TISASCII"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/tr8dec","type":"DATABASE","properties":{"characterSet":"TR8DEC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/tr8macturkishs","type":"DATABASE","properties":{"characterSet":"TR8MACTURKISHS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/tr8mswin1254","type":"DATABASE","properties":{"characterSet":"TR8MSWIN1254"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/tr8pc857","type":"DATABASE","properties":{"characterSet":"TR8PC857"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/us7ascii","type":"DATABASE","properties":{"characterSet":"US7ASCII"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/us8pc437","type":"DATABASE","properties":{"characterSet":"US8PC437"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/utf8","type":"DATABASE","properties":{"characterSet":"UTF8"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/vn8mswin1258","type":"DATABASE","properties":{"characterSet":"VN8MSWIN1258"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/vn8vn3","type":"DATABASE","properties":{"characterSet":"VN8VN3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8dec","type":"DATABASE","properties":{"characterSet":"WE8DEC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8dg","type":"DATABASE","properties":{"characterSet":"WE8DG"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8iso8859p1","type":"DATABASE","properties":{"characterSet":"WE8ISO8859P1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8iso8859p15","type":"DATABASE","properties":{"characterSet":"WE8ISO8859P15"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8iso8859p9","type":"DATABASE","properties":{"characterSet":"WE8ISO8859P9"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8macroman8s","type":"DATABASE","properties":{"characterSet":"WE8MACROMAN8S"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8mswin1252","type":"DATABASE","properties":{"characterSet":"WE8MSWIN1252"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8ncr4970","type":"DATABASE","properties":{"characterSet":"WE8NCR4970"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8nextstep","type":"DATABASE","properties":{"characterSet":"WE8NEXTSTEP"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8pc850","type":"DATABASE","properties":{"characterSet":"WE8PC850"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8pc858","type":"DATABASE","properties":{"characterSet":"WE8PC858"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8pc860","type":"DATABASE","properties":{"characterSet":"WE8PC860"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/we8roman8","type":"DATABASE","properties":{"characterSet":"WE8ROMAN8"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zhs16cgb231280","type":"DATABASE","properties":{"characterSet":"ZHS16CGB231280"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zhs16gbk","type":"DATABASE","properties":{"characterSet":"ZHS16GBK"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zht16big5","type":"DATABASE","properties":{"characterSet":"ZHT16BIG5"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zht16ccdc","type":"DATABASE","properties":{"characterSet":"ZHT16CCDC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zht16dbt","type":"DATABASE","properties":{"characterSet":"ZHT16DBT"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zht16hkscs","type":"DATABASE","properties":{"characterSet":"ZHT16HKSCS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zht16hkscs31","type":"DATABASE","properties":{"characterSet":"ZHT16HKSCS31"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zht16mswin950","type":"DATABASE","properties":{"characterSet":"ZHT16MSWIN950"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zht32euc","type":"DATABASE","properties":{"characterSet":"ZHT32EUC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zht32sops","type":"DATABASE","properties":{"characterSet":"ZHT32SOPS"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseCharacterSets/zht32tris","type":"DATABASE","properties":{"characterSet":"ZHT32TRIS"}}]}' @@ -127,25 +135,29 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 13:06:46 GMT + - Fri, 05 Dec 2025 04:34:19 GMT expires: - '-1' opc-request-id: - - /3971CD477D393CCCA9522F5C46563EE4/CB69B53E54FFAD0A5123661D88F020FC + - oci-B5991AE9932E8E9-202512050434/53923A03CA4B039CCB6032694941444D/11EAA9C1A910627136096DB2C1A0AF66 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/a5e31981-c701-4a43-a9a0-4d4f924853b3 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: ECC3404943F9450AB2793C106A559492 Ref B: AMS231022012011 Ref C: 2024-07-05T13:06:45Z' + - 'Ref A: 56ABC6EB7C83457AB188894F5F9A90AB Ref B: BY1AA1072318060 Ref C: 2025-12-05T04:34:18Z' status: code: 200 message: OK @@ -155,7 +167,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database autonomous-database national-character-set list Connection: @@ -163,9 +175,9 @@ interactions: ParameterSetName: - --location User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseNationalCharacterSets?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseNationalCharacterSets?api-version=2025-09-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseNationalCharacterSets/al16utf16","type":"NATIONAL","properties":{"characterSet":"AL16UTF16"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/autonomousDatabaseNationalCharacterSets/utf8","type":"NATIONAL","properties":{"characterSet":"UTF8"}}]}' @@ -177,25 +189,29 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 13:06:48 GMT + - Fri, 05 Dec 2025 04:34:22 GMT expires: - '-1' opc-request-id: - - /F734154B05833AADD2376ADD0AAA17B6/C563739825E245116FB031EBFBEA7015 + - oci-D1F80BDC27F136D-202512050434/A39AA0F01A8CC8EBCD603269494144B7/CEA3A9501F9F79595D5C94E3CD39D9A7 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/bb8b30bb-8d64-470f-a2a4-9814dcaf07c1 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C9D6586D4F644743B77A7E6BD7E06E9B Ref B: AMS231032608035 Ref C: 2024-07-05T13:06:47Z' + - 'Ref A: 85A5BE9B6EF743F587B7E5E58E8B4C39 Ref B: SJC211051203025 Ref C: 2025-12-05T04:34:21Z' status: code: 200 message: OK @@ -205,7 +221,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database database-system-shape list Connection: @@ -213,39 +229,43 @@ interactions: ParameterSetName: - --location User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes?api-version=2025-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes/Exadata.X9M","name":"Exadata.X9M","type":"Oracle.Database/Locations/dbSystemShapes","properties":{"shapeFamily":"EXADATA","availableCoreCount":0,"minimumCoreCount":0,"runtimeMinimumCoreCount":null,"coreCountIncrement":null,"minStorageCount":null,"maxStorageCount":null,"availableDataStoragePerServerInTbs":null,"availableMemoryPerNodeInGbs":1390,"availableDbNodePerNodeInGbs":2243,"minCoreCountPerNode":0,"availableMemoryInGbs":null,"minMemoryPerNodeInGbs":30,"availableDbNodeStorageInGbs":null,"minDbNodeStoragePerNodeInGbs":60,"availableDataStorageInTbs":63,"minDataStorageInTbs":2,"minimumNodeCount":2,"maximumNodeCount":32,"availableCoreCountPerNode":126}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes/sf*EXADB_XS+z*1+s*ExaDbXS","name":"sf*EXADB_XS+z*1+s*ExaDbXS","type":"Oracle.Database/Locations/dbSystemShapes","properties":{"shapeFamily":"EXADB_XS","shapeName":"ExaDbXS","availableCoreCount":2000,"minimumCoreCount":8,"coreCountIncrement":4,"minCoreCountPerNode":8,"minDbNodeStoragePerNodeInGbs":220,"minimumNodeCount":1,"maximumNodeCount":10,"availableCoreCountPerNode":200,"computeModel":"ECPU"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes/sf*VIRTUALMACHINE+z*1+s*VM.Standard.x86","name":"sf*VIRTUALMACHINE+z*1+s*VM.Standard.x86","type":"Oracle.Database/Locations/dbSystemShapes","properties":{"shapeFamily":"VIRTUALMACHINE","shapeName":"VM.Standard.x86","availableCoreCount":256,"minimumCoreCount":4,"coreCountIncrement":4,"minCoreCountPerNode":4,"minimumNodeCount":1,"maximumNodeCount":1,"availableCoreCountPerNode":256,"computeModel":"ECPU"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes/sf*EXADATA+z*1+s*Exadata.X11M","name":"sf*EXADATA+z*1+s*Exadata.X11M","type":"Oracle.Database/Locations/dbSystemShapes","properties":{"shapeFamily":"EXADATA","shapeName":"Exadata.X11M","availableCoreCount":0,"minimumCoreCount":0,"minStorageCount":3,"maxStorageCount":64,"availableMemoryPerNodeInGbs":1390,"availableDbNodePerNodeInGbs":2243,"minCoreCountPerNode":0,"minMemoryPerNodeInGbs":30,"minDbNodeStoragePerNodeInGbs":60,"availableDataStorageInTbs":63,"minDataStorageInTbs":2,"minimumNodeCount":2,"maximumNodeCount":32,"availableCoreCountPerNode":760,"computeModel":"ECPU","areServerTypesSupported":true,"displayName":"X11M"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes/sf*EXADATA+z*1+s*Exadata.X9M","name":"sf*EXADATA+z*1+s*Exadata.X9M","type":"Oracle.Database/Locations/dbSystemShapes","properties":{"shapeFamily":"EXADATA","shapeName":"Exadata.X9M","availableCoreCount":0,"minimumCoreCount":0,"minStorageCount":3,"maxStorageCount":64,"availableMemoryPerNodeInGbs":1390,"availableDbNodePerNodeInGbs":2243,"minCoreCountPerNode":0,"minMemoryPerNodeInGbs":30,"minDbNodeStoragePerNodeInGbs":60,"availableDataStorageInTbs":64,"minDataStorageInTbs":2,"minimumNodeCount":2,"maximumNodeCount":32,"availableCoreCountPerNode":126,"computeModel":"OCPU"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes/sf*EXADB_XS+z*2+s*ExaDbXS","name":"sf*EXADB_XS+z*2+s*ExaDbXS","type":"Oracle.Database/Locations/dbSystemShapes","properties":{"shapeFamily":"EXADB_XS","shapeName":"ExaDbXS","availableCoreCount":2000,"minimumCoreCount":8,"coreCountIncrement":4,"minCoreCountPerNode":8,"minDbNodeStoragePerNodeInGbs":220,"minimumNodeCount":1,"maximumNodeCount":10,"availableCoreCountPerNode":200,"computeModel":"ECPU"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes/sf*EXADATA+z*2+s*Exadata.X11M","name":"sf*EXADATA+z*2+s*Exadata.X11M","type":"Oracle.Database/Locations/dbSystemShapes","properties":{"shapeFamily":"EXADATA","shapeName":"Exadata.X11M","availableCoreCount":0,"minimumCoreCount":0,"minStorageCount":3,"maxStorageCount":64,"availableMemoryPerNodeInGbs":1390,"availableDbNodePerNodeInGbs":2243,"minCoreCountPerNode":0,"minMemoryPerNodeInGbs":30,"minDbNodeStoragePerNodeInGbs":60,"availableDataStorageInTbs":63,"minDataStorageInTbs":2,"minimumNodeCount":2,"maximumNodeCount":32,"availableCoreCountPerNode":760,"computeModel":"ECPU","areServerTypesSupported":true,"displayName":"X11M"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes/sf*EXADATA+z*2+s*Exadata.X9M","name":"sf*EXADATA+z*2+s*Exadata.X9M","type":"Oracle.Database/Locations/dbSystemShapes","properties":{"shapeFamily":"EXADATA","shapeName":"Exadata.X9M","availableCoreCount":0,"minimumCoreCount":0,"minStorageCount":3,"maxStorageCount":64,"availableMemoryPerNodeInGbs":1390,"availableDbNodePerNodeInGbs":2243,"minCoreCountPerNode":0,"minMemoryPerNodeInGbs":30,"minDbNodeStoragePerNodeInGbs":60,"availableDataStorageInTbs":64,"minDataStorageInTbs":2,"minimumNodeCount":2,"maximumNodeCount":32,"availableCoreCountPerNode":126,"computeModel":"OCPU"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dbSystemShapes/sf*VIRTUALMACHINE+z*2+s*VM.Standard.x86","name":"sf*VIRTUALMACHINE+z*2+s*VM.Standard.x86","type":"Oracle.Database/Locations/dbSystemShapes","properties":{"shapeFamily":"VIRTUALMACHINE","shapeName":"VM.Standard.x86","availableCoreCount":256,"minimumCoreCount":4,"coreCountIncrement":4,"minCoreCountPerNode":4,"minimumNodeCount":1,"maximumNodeCount":1,"availableCoreCountPerNode":256,"computeModel":"ECPU"}}]}' headers: cache-control: - no-cache content-length: - - '789' + - '4975' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 13:06:49 GMT + - Fri, 05 Dec 2025 04:34:34 GMT expires: - '-1' opc-request-id: - - /8133FDDD9430BF060DC269057ABB60B5/1E7E5CA28A7C018C2D9295FBD38D7F11 + - oci-F413B5056D323CB-202512050434/A393BB0C4C9A89C6D0603269494144B5/A7548BBFC1EA79DD041D6A96217C4DA9 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/60451db5-dd3c-470e-8056-734d90ac1fbf x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '3750' x-msedge-ref: - - 'Ref A: C1FAE98A79C94B17B337CA611DF8D14A Ref B: AMS231032608037 Ref C: 2024-07-05T13:06:48Z' + - 'Ref A: 82A9EAEA69584185A3FDE9A1C72160C8 Ref B: SJC211051205011 Ref C: 2025-12-05T04:34:23Z' status: code: 200 message: OK @@ -255,7 +275,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database dns-private-zone list Connection: @@ -263,39 +283,43 @@ interactions: ParameterSetName: - --location User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones?api-version=2025-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocibackupdeleg.ocipstestvnet.oraclevcn.com","name":"ocibackupdeleg.ocipstestvnet.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaholrpbvsgqwsqyakmowa2vj7d6epusf6p5o6lvplnhfeoydsj7rq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaholrpbvsgqwsqyakmowa2vj7d6epusf6p5o6lvplnhfeoydsj7rq","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaytqscqgo3vowvligvkeaiqozwywcbkm336keyzz34xiorgfximza","zoneType":"Primary","timeCreated":"2024-07-04T16:00:50.464Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocidelegated.ocipstestvnet.oraclevcn.com","name":"ocidelegated.ocipstestvnet.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaah4rwrfuscditbdg7yjutywp3xpwyuqmcj2bymvb4dn47xoxmvenq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaah4rwrfuscditbdg7yjutywp3xpwyuqmcj2bymvb4dn47xoxmvenq","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaytqscqgo3vowvligvkeaiqozwywcbkm336keyzz34xiorgfximza","zoneType":"Primary","timeCreated":"2024-07-04T15:56:26.678Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocibackupdeleg.ocidbqavcn1.oraclevcn.com","name":"ocibackupdeleg.ocidbqavcn1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaacx64by45y2pipky3wi3nbv3jwo3oid5doqiapdgldmj4rc7535aq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaacx64by45y2pipky3wi3nbv3jwo3oid5doqiapdgldmj4rc7535aq","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaazmyd4s4uwgqfccdrhldyei7gdwvmckqe2gcf7rqyzx5745rqcz7a","zoneType":"Primary","timeCreated":"2024-07-04T04:02:38.916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocidelegated.ocidbqavcn1.oraclevcn.com","name":"ocidelegated.ocidbqavcn1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaazuiq2jepw622jmc4dmbhcbzispdwzgg2gkzg2emi7cko2x7cuahq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaazuiq2jepw622jmc4dmbhcbzispdwzgg2gkzg2emi7cko2x7cuahq","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaazmyd4s4uwgqfccdrhldyei7gdwvmckqe2gcf7rqyzx5745rqcz7a","zoneType":"Primary","timeCreated":"2024-07-04T03:59:20.598Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/oui8ipy0.ocidelegated.ocidarenvnet.adb.us-ashburn-1.oraclevcn.com","name":"oui8ipy0.ocidelegated.ocidarenvnet.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaam563f3cjrbly4mx6khcp7d6vjrlyz26z4sqa6g6epian3hvz4itq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaam563f3cjrbly4mx6khcp7d6vjrlyz26z4sqa6g6epian3hvz4itq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","zoneType":"Primary","timeCreated":"2024-07-02T18:26:04.384Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/oui8ipy0.adb.us-ashburn-1.oraclevcn.com","name":"oui8ipy0.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaambbgq5ddkr3aknt4gg45btysa5yzysxxobvznhbyy3otr3lxao3a","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaambbgq5ddkr3aknt4gg45btysa5yzysxxobvznhbyy3otr3lxao3a","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","zoneType":"Primary","timeCreated":"2024-07-02T18:25:57.372Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/oui8ipy0.adbapps.us-ashburn-1.oraclevcn.com","name":"oui8ipy0.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa3lgfw6wj4g7ewdca55aa6hq2xtqimzcksajrjdsq6zfk4agijjha","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa3lgfw6wj4g7ewdca55aa6hq2xtqimzcksajrjdsq6zfk4agijjha","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","zoneType":"Primary","timeCreated":"2024-07-02T18:25:50.993Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/oui8ipy0.ocidelegated.ocidarenvnet.adbapps.us-ashburn-1.oraclevcn.com","name":"oui8ipy0.ocidelegated.ocidarenvnet.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaasmuboqsy6pku36m2jvxxx2c54hm7mqxn25p4pim2y7g3gwtms73a","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaasmuboqsy6pku36m2jvxxx2c54hm7mqxn25p4pim2y7g3gwtms73a","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","zoneType":"Primary","timeCreated":"2024-07-02T18:25:45.498Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/oui8ipy0.adb.us-ashburn-1.oraclecloudapps.com","name":"oui8ipy0.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaanxiivmfxemec7gjwm7hnrg3n7suzq3i7qibedabh77qfiqa77ina","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaanxiivmfxemec7gjwm7hnrg3n7suzq3i7qibedabh77qfiqa77ina","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","zoneType":"Primary","timeCreated":"2024-07-02T18:25:39.909Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/oui8ipy0.adb.us-ashburn-1.oraclecloud.com","name":"oui8ipy0.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaahy2rgedscjsu2qqaurrtmmfgdjlwzjj4fycx5i5azrcx5y7b3g7q","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaahy2rgedscjsu2qqaurrtmmfgdjlwzjj4fycx5i5azrcx5y7b3g7q","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","zoneType":"Primary","timeCreated":"2024-07-02T18:25:33.198Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocidelegated.ocidarenvnet.oraclevcn.com","name":"ocidelegated.ocidarenvnet.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa4qpgs7rynrexxpddmnogirqtrb6leccx5ndvdzgejty4wfp3bdbq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa4qpgs7rynrexxpddmnogirqtrb6leccx5ndvdzgejty4wfp3bdbq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","zoneType":"Primary","timeCreated":"2024-07-02T17:54:25.690Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/haisu723.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","name":"haisu723.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaznknfnvtcighms4gwqma4naphja7bauvl6id34zikbw5ds4qjbqa","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaznknfnvtcighms4gwqma4naphja7bauvl6id34zikbw5ds4qjbqa","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T03:22:52.130Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/haisu723.adb.us-ashburn-1.oraclevcn.com","name":"haisu723.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaqgfa2ne43mhr53dctsmvofypebdho25ti2c5wlyrsz6tdwjxmokq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaqgfa2ne43mhr53dctsmvofypebdho25ti2c5wlyrsz6tdwjxmokq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T03:22:45.007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/haisu723.adbapps.us-ashburn-1.oraclevcn.com","name":"haisu723.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaj7o5y5ne7nwmo6gcwri2sypotzedmo5y4mgzoyez6xmsygkwpk6q","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaj7o5y5ne7nwmo6gcwri2sypotzedmo5y4mgzoyez6xmsygkwpk6q","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T03:22:39.398Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/haisu723.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","name":"haisu723.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa5nn6m6vtm5fseuua722qb2burjj47mbundxxv76vdim52fguf7ca","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa5nn6m6vtm5fseuua722qb2burjj47mbundxxv76vdim52fguf7ca","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T03:22:32.928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/haisu723.adb.us-ashburn-1.oraclecloudapps.com","name":"haisu723.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaatsm6g7kbgonxvoxicyufnvrlif74mpg2mm5jxcrzlkwx2z7fbdqa","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaatsm6g7kbgonxvoxicyufnvrlif74mpg2mm5jxcrzlkwx2z7fbdqa","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T03:22:27.438Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/haisu723.adb.us-ashburn-1.oraclecloud.com","name":"haisu723.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaynvaamvmw5vryg2plubrlrjovwqqwd7vaoggzatpug3qxmyzlfha","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaynvaamvmw5vryg2plubrlrjovwqqwd7vaoggzatpug3qxmyzlfha","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T03:22:21.867Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wvrdwnp0.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","name":"wvrdwnp0.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaemodaieiilzxnl44vnbdyh4jblisq3dqiee7macpgeujikg34ttq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaemodaieiilzxnl44vnbdyh4jblisq3dqiee7macpgeujikg34ttq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T01:57:36.395Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wvrdwnp0.adb.us-ashburn-1.oraclevcn.com","name":"wvrdwnp0.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaasqhrg27hf4gijb2gyvr7ezl62rrgc3kywk7sld4adud2gsdfwoaa","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaasqhrg27hf4gijb2gyvr7ezl62rrgc3kywk7sld4adud2gsdfwoaa","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T01:57:31.116Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wvrdwnp0.adbapps.us-ashburn-1.oraclevcn.com","name":"wvrdwnp0.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaak2gtpteugz42je5dkisgq2lmsojbpkvcwnb4ezxzgobpwupb2ijq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaak2gtpteugz42je5dkisgq2lmsojbpkvcwnb4ezxzgobpwupb2ijq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T01:57:24.912Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wvrdwnp0.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","name":"wvrdwnp0.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaqdrqhdvefz62qxhhssuwak6zbj34ypvpqyjwq2akk2gehm6xjciq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaqdrqhdvefz62qxhhssuwak6zbj34ypvpqyjwq2akk2gehm6xjciq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T01:57:18.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wvrdwnp0.adb.us-ashburn-1.oraclecloudapps.com","name":"wvrdwnp0.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaafz5rqqpgoos53gixkuauzkccpg4ikvamw5ya65cndoo2epvckgiq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaafz5rqqpgoos53gixkuauzkccpg4ikvamw5ya65cndoo2epvckgiq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T01:57:13.167Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wvrdwnp0.adb.us-ashburn-1.oraclecloud.com","name":"wvrdwnp0.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaumcq32g36sejqk3f3rlcbhk4ynz5eyvhobfnhcnlnpfh4qdrcq5q","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaumcq32g36sejqk3f3rlcbhk4ynz5eyvhobfnhcnlnpfh4qdrcq5q","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-02T01:57:07.726Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/pfwukijt.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","name":"pfwukijt.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaapmlh4ml3nkywgkxjika24wodegjhv2lay27e3rp4275fdo2pt7uq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaapmlh4ml3nkywgkxjika24wodegjhv2lay27e3rp4275fdo2pt7uq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T21:28:52.554Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/pfwukijt.adb.us-ashburn-1.oraclevcn.com","name":"pfwukijt.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaag3ciwngdckegokum247feszxs45jvljiddby4sgudpnnjr2z2okq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaag3ciwngdckegokum247feszxs45jvljiddby4sgudpnnjr2z2okq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T21:28:45.848Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/pfwukijt.adbapps.us-ashburn-1.oraclevcn.com","name":"pfwukijt.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa4keu3jjjcwvjdagushalucjtnewuwjd3e4uq2qaw2h7xgg3ymtxq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa4keu3jjjcwvjdagushalucjtnewuwjd3e4uq2qaw2h7xgg3ymtxq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T21:28:39.332Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/pfwukijt.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","name":"pfwukijt.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa3gxwrpl7modteekrmbagtnplehlwixjvvy5zmwjbk442spa6jega","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa3gxwrpl7modteekrmbagtnplehlwixjvvy5zmwjbk442spa6jega","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T21:28:33.062Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/pfwukijt.adb.us-ashburn-1.oraclecloudapps.com","name":"pfwukijt.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaan5hx6qnz4r44rc5slfdyumftpadtllutmrifgnnfhelag6s7icza","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaan5hx6qnz4r44rc5slfdyumftpadtllutmrifgnnfhelag6s7icza","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T21:28:26.763Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/pfwukijt.adb.us-ashburn-1.oraclecloud.com","name":"pfwukijt.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaawnkzvqj3nk22p2zplmthehtypfwkkyaph2gcxzuxius4eb4v72ja","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaawnkzvqj3nk22p2zplmthehtypfwkkyaph2gcxzuxius4eb4v72ja","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T21:28:17.562Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/y7sttfq6.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","name":"y7sttfq6.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa75x5jrre7b4ifbef4n2sh2igjsuwh5unfidf4y62tkxieahh36ba","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa75x5jrre7b4ifbef4n2sh2igjsuwh5unfidf4y62tkxieahh36ba","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T20:43:39.501Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/y7sttfq6.adb.us-ashburn-1.oraclevcn.com","name":"y7sttfq6.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaahrnsk7etxbhq4zyirjguv3unmeb7wnicf3sexjnppjeextwwlgoq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaahrnsk7etxbhq4zyirjguv3unmeb7wnicf3sexjnppjeextwwlgoq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T20:43:33.460Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/y7sttfq6.adbapps.us-ashburn-1.oraclevcn.com","name":"y7sttfq6.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaafvx2dpilsxxingu37f3lxwuxfes7wisy33zgegjkzu5toklmh63a","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaafvx2dpilsxxingu37f3lxwuxfes7wisy33zgegjkzu5toklmh63a","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T20:43:26.224Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/y7sttfq6.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","name":"y7sttfq6.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa4geheitadoi7jxbu7xkyt2elextyxlftjq3dx7lhs6bzdbfjhslq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa4geheitadoi7jxbu7xkyt2elextyxlftjq3dx7lhs6bzdbfjhslq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T20:43:20.391Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/y7sttfq6.adb.us-ashburn-1.oraclecloudapps.com","name":"y7sttfq6.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaairx7p2gkuppyqsihdk3sqeddkcc2ejglhuuq2qtqe3m4ar7mdzea","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaairx7p2gkuppyqsihdk3sqeddkcc2ejglhuuq2qtqe3m4ar7mdzea","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T20:43:14.335Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/y7sttfq6.adb.us-ashburn-1.oraclecloud.com","name":"y7sttfq6.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa4urwa4w263uqvnd5pwbzjljywvple4kbe45o3ypcev5ypd2fwdha","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa4urwa4w263uqvnd5pwbzjljywvple4kbe45o3ypcev5ypd2fwdha","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-07-01T20:43:07.309Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocibackupdg1.oci0409vn.oraclevcn.com","name":"ocibackupdg1.oci0409vn.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaawrxyflrubrthuiqsvcq22bzpjkjioqhdgwkzg6x4gzozpbkg4nzq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaawrxyflrubrthuiqsvcq22bzpjkjioqhdgwkzg6x4gzozpbkg4nzq","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaabshazqhwh6pfue2t7x4wnvmu333ug7kv7goccwy76ek2fdhw7frq","zoneType":"Primary","timeCreated":"2024-06-27T16:57:55.192Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vifnfx8g.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","name":"vifnfx8g.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaainbefubl2diqmuaez6jfwez7w4ylpxihwckqfhdqpk7gtqjvo6qa","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaainbefubl2diqmuaez6jfwez7w4ylpxihwckqfhdqpk7gtqjvo6qa","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-27T04:02:03.817Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vifnfx8g.adb.us-ashburn-1.oraclevcn.com","name":"vifnfx8g.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa3lbaebut574fiebyuzml5fqj65n4wfdgav4sc5n6d7rguk3ryioq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa3lbaebut574fiebyuzml5fqj65n4wfdgav4sc5n6d7rguk3ryioq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-27T04:01:57.326Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vifnfx8g.adbapps.us-ashburn-1.oraclevcn.com","name":"vifnfx8g.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaapteflualm6c257aptyqlpxklbyiswdbxbckxvahvu7wi4ukppwwa","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaapteflualm6c257aptyqlpxklbyiswdbxbckxvahvu7wi4ukppwwa","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-27T04:01:51.253Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vifnfx8g.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","name":"vifnfx8g.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaoqclmd7bdkvwthuy7utnp4dcxqtyuvpegx7epzp4lqgejuj3ytpq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaoqclmd7bdkvwthuy7utnp4dcxqtyuvpegx7epzp4lqgejuj3ytpq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-27T04:01:45.283Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vifnfx8g.adb.us-ashburn-1.oraclecloudapps.com","name":"vifnfx8g.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa4uaqju55vcivy3nuken4vts65qfvwo2v2bls4p26s76nhpxahlta","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa4uaqju55vcivy3nuken4vts65qfvwo2v2bls4p26s76nhpxahlta","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-27T04:01:38.889Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vifnfx8g.adb.us-ashburn-1.oraclecloud.com","name":"vifnfx8g.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaawbts7s4ir6odapumihdgnes64g5sc22if4n2qiay7eav63hxcsda","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaawbts7s4ir6odapumihdgnes64g5sc22if4n2qiay7eav63hxcsda","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-27T04:01:32.073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/spalimpa.new.com","name":"spalimpa.new.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaabifdsmn7llr7kcgzdvfiyvzsmstndvuychezi7erm3dt7g5t2drq","isProtected":false,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaabifdsmn7llr7kcgzdvfiyvzsmstndvuychezi7erm3dt7g5t2drq","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.amaaaaaanirvylqavprecsjhqzozhzhubrv5zh2zkc7rbzebv5htjaowyhpq","zoneType":"Primary","timeCreated":"2024-06-24T20:06:22.884Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wk2pxbuc.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","name":"wk2pxbuc.ocidefault2.ocidbqavnetjun.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaauek3h2uqdqahflx6g3apxusjlzt7ua25cqghozphzh7i2dusq3kq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaauek3h2uqdqahflx6g3apxusjlzt7ua25cqghozphzh7i2dusq3kq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-19T14:49:12.037Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wk2pxbuc.adb.us-ashburn-1.oraclevcn.com","name":"wk2pxbuc.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaq7cjdgp4hoyele7moedifhbjsqaotgj4o42odixak65jjrgwazdq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaq7cjdgp4hoyele7moedifhbjsqaotgj4o42odixak65jjrgwazdq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-19T14:49:05.480Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wk2pxbuc.adbapps.us-ashburn-1.oraclevcn.com","name":"wk2pxbuc.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaak6gzud5ltiwv3old5agds2wuv7eqt5svgdmbtkxk74qlealwejda","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaak6gzud5ltiwv3old5agds2wuv7eqt5svgdmbtkxk74qlealwejda","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-19T14:48:59.319Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wk2pxbuc.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","name":"wk2pxbuc.ocidefault2.ocidbqavnetjun.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaabzfydudmyqnvw5offmehljthoizfv4coslfxvn6rhm2c7dplxc5a","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaabzfydudmyqnvw5offmehljthoizfv4coslfxvn6rhm2c7dplxc5a","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-19T14:48:52.579Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wk2pxbuc.adb.us-ashburn-1.oraclecloudapps.com","name":"wk2pxbuc.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaayn3cs33kkv2ea3mju56ppxeykhxouxecpgduyvwhht64gzues24a","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaayn3cs33kkv2ea3mju56ppxeykhxouxecpgduyvwhht64gzues24a","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-19T14:48:46.414Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/wk2pxbuc.adb.us-ashburn-1.oraclecloud.com","name":"wk2pxbuc.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaojbkm3zq4qcvaxjw6ygrbeplyoi6qc3x2epnnyfllhnuqvwnrwca","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaojbkm3zq4qcvaxjw6ygrbeplyoi6qc3x2epnnyfllhnuqvwnrwca","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-19T14:48:39.175Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocidefault2.ocidbqavnetjun.oraclevcn.com","name":"ocidefault2.ocidbqavnetjun.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa5gutueusr6jpchyetry7rmpwzuolzyeg5brupv4suhjdxmwyju3q","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa5gutueusr6jpchyetry7rmpwzuolzyeg5brupv4suhjdxmwyju3q","serial":52,"version":"52","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","zoneType":"Primary","timeCreated":"2024-06-19T14:38:19.654Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocidg2.ocicomichaevn.oraclevcn.com","name":"ocidg2.ocicomichaevn.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaayfrbngzzurv3635ufpelhizxy6ova2zj6aw6xdqubg4jk5mhhka","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaayfrbngzzurv3635ufpelhizxy6ova2zj6aw6xdqubg4jk5mhhka","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaawwky4j2igeyhsiiymg4ck3asdtbdtodasiwmix5gpmtz6tdsk2sa","zoneType":"Primary","timeCreated":"2024-06-06T18:29:41.606Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/hhbrpiy9.ocidefault.ocidrtestvnet0.adb.us-ashburn-1.oraclevcn.com","name":"hhbrpiy9.ocidefault.ocidrtestvnet0.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaruijtrfudlcuntanf77nvyiirr5n337nnv6y34l4cvmnnma3mtta","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaruijtrfudlcuntanf77nvyiirr5n337nnv6y34l4cvmnnma3mtta","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-06-06T14:27:35.396Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/hhbrpiy9.adb.us-ashburn-1.oraclevcn.com","name":"hhbrpiy9.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaasmeh5nyfrvruvklbomkbur4ox5345ay4g3skczkfb6xlt7aas6ma","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaasmeh5nyfrvruvklbomkbur4ox5345ay4g3skczkfb6xlt7aas6ma","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-06-06T14:27:28.931Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/hhbrpiy9.adbapps.us-ashburn-1.oraclevcn.com","name":"hhbrpiy9.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaab4owiz2wmj7ulq2uxsqajx3kqq3rb6c3i2ceq53i6mashm2alzla","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaab4owiz2wmj7ulq2uxsqajx3kqq3rb6c3i2ceq53i6mashm2alzla","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-06-06T14:27:22.651Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/hhbrpiy9.ocidefault.ocidrtestvnet0.adbapps.us-ashburn-1.oraclevcn.com","name":"hhbrpiy9.ocidefault.ocidrtestvnet0.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaac6rszht6ij5vrhyahso37572dm7t7xgswqpzduussvzsmgms2wva","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaac6rszht6ij5vrhyahso37572dm7t7xgswqpzduussvzsmgms2wva","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-06-06T14:27:15.799Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/hhbrpiy9.adb.us-ashburn-1.oraclecloudapps.com","name":"hhbrpiy9.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaooge7wkwf7aulz64rzy7pceoel7mogqn4cuyldhvkyxaybifi2uq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaooge7wkwf7aulz64rzy7pceoel7mogqn4cuyldhvkyxaybifi2uq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-06-06T14:27:09.210Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/hhbrpiy9.adb.us-ashburn-1.oraclecloud.com","name":"hhbrpiy9.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa6odjwvdsas2w7inxrdgzcdyvxxxdsv3o7fhyh5wpjimivp4tn2ga","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa6odjwvdsas2w7inxrdgzcdyvxxxdsv3o7fhyh5wpjimivp4tn2ga","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-06-06T14:27:02.468Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/spalimpa.testPZ.com","name":"spalimpa.testPZ.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaeklkqm7qhkj2rhhgphy3eukkoilfdgz4m3ukguqc74ok4hbncpjq","isProtected":false,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaeklkqm7qhkj2rhhgphy3eukkoilfdgz4m3ukguqc74ok4hbncpjq","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.amaaaaaanirvylqavprecsjhqzozhzhubrv5zh2zkc7rbzebv5htjaowyhpq","zoneType":"Primary","timeCreated":"2024-06-03T22:05:54.212Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/max.test.zone.oracle.com","name":"max.test.zone.oracle.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa7ygbhn7emc4o5bjabgll2zma6wlbruelhqs7vop3g3vvenqzaara","isProtected":false,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa7ygbhn7emc4o5bjabgll2zma6wlbruelhqs7vop3g3vvenqzaara","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.amaaaaaanirvylqahnekoidsqbfml7bpjcujxtreo24uesvwahbixqcvrdwa","zoneType":"Primary","timeCreated":"2024-06-03T16:45:05.632Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/max.test.oracle.com","name":"max.test.oracle.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaabhqszhsgh6uvcvzk6krlothr3z4sss7r5ofxphtv4vlljdrygq7a","isProtected":false,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaabhqszhsgh6uvcvzk6krlothr3z4sss7r5ofxphtv4vlljdrygq7a","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.amaaaaaanirvylqahnekoidsqbfml7bpjcujxtreo24uesvwahbixqcvrdwa","zoneType":"Primary","timeCreated":"2024-06-03T16:44:53.446Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/dfadf.adfdf.sdfd.dadf.dfadf.com","name":"dfadf.adfdf.sdfd.dadf.dfadf.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaa2jkbhl574i7vnhcp4ax32j5jmaa3ut5d4bydigzbqkcqo4omyha","isProtected":false,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaa2jkbhl574i7vnhcp4ax32j5jmaa3ut5d4bydigzbqkcqo4omyha","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaahjczll6evlberotb4inm7yihkpj2nzie3zcicxidot3wucc634eq","zoneType":"Primary","timeCreated":"2024-06-03T16:39:34.815Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/rctjwxmm.ocisyde2etests.ocisyde2etestv.adb.us-ashburn-1.oraclevcn.com","name":"rctjwxmm.ocisyde2etests.ocisyde2etestv.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaarse5exi5zzcgehmszex7h4ycr4s7efhlyc7wg5wv6labuqiqzcba","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaarse5exi5zzcgehmszex7h4ycr4s7efhlyc7wg5wv6labuqiqzcba","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","zoneType":"Primary","timeCreated":"2024-05-30T20:57:17.067Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/rctjwxmm.adb.us-ashburn-1.oraclevcn.com","name":"rctjwxmm.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa7i4sys74x7xnyoupqo2i6zdu3si3arj73lihp6tai7dvgxg4w32q","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa7i4sys74x7xnyoupqo2i6zdu3si3arj73lihp6tai7dvgxg4w32q","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","zoneType":"Primary","timeCreated":"2024-05-30T20:57:07.022Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/rctjwxmm.adbapps.us-ashburn-1.oraclevcn.com","name":"rctjwxmm.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaunmixtw3khbebl4dnmg33yn4aq3pdh4nrad7hmcwygltfbtokw6a","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaunmixtw3khbebl4dnmg33yn4aq3pdh4nrad7hmcwygltfbtokw6a","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","zoneType":"Primary","timeCreated":"2024-05-30T20:56:58.792Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/rctjwxmm.ocisyde2etests.ocisyde2etestv.adbapps.us-ashburn-1.oraclevcn.com","name":"rctjwxmm.ocisyde2etests.ocisyde2etestv.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa3ozioggqqca4zwjk3pmljb7doim4gxt4yma64b6gcilpj34duseq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa3ozioggqqca4zwjk3pmljb7doim4gxt4yma64b6gcilpj34duseq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","zoneType":"Primary","timeCreated":"2024-05-30T20:56:50.603Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/rctjwxmm.adb.us-ashburn-1.oraclecloudapps.com","name":"rctjwxmm.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa43a7t67dzqj5r4egpmlitkmko6saotl6i632rpbrpoxxopbs2jba","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa43a7t67dzqj5r4egpmlitkmko6saotl6i632rpbrpoxxopbs2jba","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","zoneType":"Primary","timeCreated":"2024-05-30T20:56:42.640Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/rctjwxmm.adb.us-ashburn-1.oraclecloud.com","name":"rctjwxmm.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaatk2fltmmfkhqgpohzuotxi5nbzqz27dgtsf223lfe4acjvwgjm7q","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaatk2fltmmfkhqgpohzuotxi5nbzqz27dgtsf223lfe4acjvwgjm7q","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","zoneType":"Primary","timeCreated":"2024-05-30T20:56:35.877Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocisyde2etests.ocisyde2etestv.oraclevcn.com","name":"ocisyde2etests.ocisyde2etestv.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaabdurgqory2p4a2g72vp2w5pa2niq4e27qgk5qanqwrn7psiyoaxa","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaabdurgqory2p4a2g72vp2w5pa2niq4e27qgk5qanqwrn7psiyoaxa","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","zoneType":"Primary","timeCreated":"2024-05-30T20:47:17.829Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocidelegated.ocisysvereastu.oraclevcn.com","name":"ocidelegated.ocisysvereastu.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaajob3b7ggbhzcwxmof3nb6ylktgh5wuiatera6uwqywosb4uju2mq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaajob3b7ggbhzcwxmof3nb6ylktgh5wuiatera6uwqywosb4uju2mq","serial":3,"version":"3","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaae42p4btkcvdoe7q44zq5og6wvw7bpse2mpkiancqpdvtjf6zibtq","zoneType":"Primary","timeCreated":"2024-05-23T15:02:12.393Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ypieowfk.ocidefault.ocidrtestvnet0.adb.us-ashburn-1.oraclevcn.com","name":"ypieowfk.ocidefault.ocidrtestvnet0.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaai5ewmcufwnawqq3yqgshucaj7nwj2gjt5rwhsjhqlazabse7wjkq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaai5ewmcufwnawqq3yqgshucaj7nwj2gjt5rwhsjhqlazabse7wjkq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-16T06:21:31.658Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ypieowfk.adb.us-ashburn-1.oraclevcn.com","name":"ypieowfk.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaav3yao3xacdrdwk4f5ydlssxzufax2cb3gdn4gxm3eqhc7ei4rm7q","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaav3yao3xacdrdwk4f5ydlssxzufax2cb3gdn4gxm3eqhc7ei4rm7q","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-16T06:21:24.889Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ypieowfk.adbapps.us-ashburn-1.oraclevcn.com","name":"ypieowfk.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaato5d4z77h7h4w3ycjclzipd3jwbqhs25fmgszouxel7shwiecywq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaato5d4z77h7h4w3ycjclzipd3jwbqhs25fmgszouxel7shwiecywq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-16T06:21:17.956Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ypieowfk.ocidefault.ocidrtestvnet0.adbapps.us-ashburn-1.oraclevcn.com","name":"ypieowfk.ocidefault.ocidrtestvnet0.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaadcynsj7blvl42xih2ri7dzjicd3cfxmyc4bhvnps2ztpsypmps7a","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaadcynsj7blvl42xih2ri7dzjicd3cfxmyc4bhvnps2ztpsypmps7a","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-16T06:21:11.096Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ypieowfk.adb.us-ashburn-1.oraclecloudapps.com","name":"ypieowfk.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaamuoacfpo76jn2fxejetma3bja4x5g46iubrfqnycerkst5334bha","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaamuoacfpo76jn2fxejetma3bja4x5g46iubrfqnycerkst5334bha","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-16T06:21:04.428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ypieowfk.adb.us-ashburn-1.oraclecloud.com","name":"ypieowfk.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaawhehbrcfkpahuwak3uz56t3ioqfow76akav5e42yoshubqez3eoq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaawhehbrcfkpahuwak3uz56t3ioqfow76akav5e42yoshubqez3eoq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-16T06:20:58.082Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocidelegated.ociperfttestvn.oraclevcn.com","name":"ocidelegated.ociperfttestvn.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaadppgz7znr5imgcitihsgjqhziygwbs2csiznjtuebq6hriccepzq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaadppgz7znr5imgcitihsgjqhziygwbs2csiznjtuebq6hriccepzq","serial":4,"version":"4","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaboxvqwa65555p7u4g3yr55kamhj5hzd676w53c4xrokwfvdh25sq","zoneType":"Primary","timeCreated":"2024-05-02T19:08:10.441Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/jfz7y85f.ocidefault.ocidrtestvnet0.adb.us-ashburn-1.oraclevcn.com","name":"jfz7y85f.ocidefault.ocidrtestvnet0.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaampdgm5uzq6shypefsbl5w2m4wdxrik5z6xeofeeu7vpaefgtwxfa","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaampdgm5uzq6shypefsbl5w2m4wdxrik5z6xeofeeu7vpaefgtwxfa","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-02T06:21:19.477Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/jfz7y85f.adb.us-ashburn-1.oraclevcn.com","name":"jfz7y85f.adb.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaamshhtgqc7p3lzfgnqvkm7chm42cwt4ojiejwpsnrwvuj4e4s2nta","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaamshhtgqc7p3lzfgnqvkm7chm42cwt4ojiejwpsnrwvuj4e4s2nta","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-02T06:21:06.375Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/jfz7y85f.adbapps.us-ashburn-1.oraclevcn.com","name":"jfz7y85f.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaax3lnnwenzmztet5botjnori7mvgsz7tq7s74q3g6yfmiij4w4aqa","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaax3lnnwenzmztet5botjnori7mvgsz7tq7s74q3g6yfmiij4w4aqa","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-02T06:20:51.731Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/jfz7y85f.ocidefault.ocidrtestvnet0.adbapps.us-ashburn-1.oraclevcn.com","name":"jfz7y85f.ocidefault.ocidrtestvnet0.adbapps.us-ashburn-1.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaacmpsbictq3t7ncmwqnrdm3h3dsbn6rwevelizggwvqddudk4vvuq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaacmpsbictq3t7ncmwqnrdm3h3dsbn6rwevelizggwvqddudk4vvuq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-02T06:20:14.419Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/jfz7y85f.adb.us-ashburn-1.oraclecloudapps.com","name":"jfz7y85f.adb.us-ashburn-1.oraclecloudapps.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaake4ehdmtu5vhtlxobojcydldjtscmdvdtk22tr6g7neneantpuka","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaake4ehdmtu5vhtlxobojcydldjtscmdvdtk22tr6g7neneantpuka","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-02T06:20:01.718Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/jfz7y85f.adb.us-ashburn-1.oraclecloud.com","name":"jfz7y85f.adb.us-ashburn-1.oraclecloud.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaansejlawskpmnbb63vr7ccmziuksqzrnkpvc664ycuq4osunhki3q","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaansejlawskpmnbb63vr7ccmziuksqzrnkpvc664ycuq4osunhki3q","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-05-02T06:19:43.462Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocisubnetaccte.ocivnetacctest.oraclevcn.com","name":"ocisubnetaccte.ocivnetacctest.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaavzpipf473ar2ikpurygj674vuy2nve5zy7u7vf55wtc77oibqlbq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaavzpipf473ar2ikpurygj674vuy2nve5zy7u7vf55wtc77oibqlbq","serial":3,"version":"3","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaainzhp3afn4raviq24b6x3hkzzokn2cpqthig7iat2uh3zya72o2a","zoneType":"Primary","timeCreated":"2024-05-01T15:47:32.650Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocidefault.ocidrtestvnet0.oraclevcn.com","name":"ocidefault.ocidrtestvnet0.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaazun56niejhwovlxzxhi7bodroxjergt752aujda6rjlvofah6ufa","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaazun56niejhwovlxzxhi7bodroxjergt752aujda6rjlvofah6ufa","serial":39,"version":"39","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","zoneType":"Primary","timeCreated":"2024-04-17T12:07:28.632Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocidelegatedsu.ocidbqaociuivn.oraclevcn.com","name":"ocidelegatedsu.ocidbqaociuivn.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaam3huoxdz6zoad7x6mimtprsgxzt6mfvlodsfhoxz4n35s47ytmbq","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaam3huoxdz6zoad7x6mimtprsgxzt6mfvlodsfhoxz4n35s47ytmbq","serial":32,"version":"32","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaatle4wjrmfronppo5rlezom7k73ghwobdfpzkyxtg6bzguq4hwsbq","zoneType":"Primary","timeCreated":"2024-04-05T10:05:02.836Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocidelegated.ocidnsfwdvn.oraclevcn.com","name":"ocidelegated.ocidnsfwdvn.oraclevcn.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaau67ic5wbuuefyidvq2bx6tuympvine2opewjijhx5pou4fo27sfa","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaau67ic5wbuuefyidvq2bx6tuympvine2opewjijhx5pou4fo27sfa","serial":4,"version":"4","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa5pegcnpgikfbbmnswt6wg3wpxakvowirvkpqz5lskkkydy3sjglq","zoneType":"Primary","timeCreated":"2024-03-05T21:15:02.783Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/internal.cloudapp.net","name":"internal.cloudapp.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaai6isl3hnrcvpbvipej3qdbjhovtpxk2xoab5hsiedhnzy76ziavq","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaai6isl3hnrcvpbvipej3qdbjhovtpxk2xoab5hsiedhnzy76ziavq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa4cy6smh554kdyrile3bexy52ae7df7ato2ukrjs33nes4e6cvjua","zoneType":"Primary","timeCreated":"2025-11-13T22:03:17.007Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ash.iad.zone","name":"ash.iad.zone","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaamu6jouewkpqi6tonhnanhjasabo2ouxlzaxotg3yyka4ngqrvejq","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaamu6jouewkpqi6tonhnanhjasabo2ouxlzaxotg3yyka4ngqrvejq","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyakndvkrqy23wnamybzrptpoyfodmg5luczswilzkee6eq","zoneType":"Primary","timeCreated":"2025-11-06T21:57:05.176Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vault.azure.net","name":"vault.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaapgku7nhi45a6wqqqknsxapf6lpnmip2qxmuarcnwokwcj3ekvgtq","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaapgku7nhi45a6wqqqknsxapf6lpnmip2qxmuarcnwokwcj3ekvgtq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaag2v5y2qmenl6cp6kb3eixz4j2cbh5toskkedorurrwdm7hnhyeda","zoneType":"Primary","timeCreated":"2025-10-17T20:11:15.029Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/privatelink.vaultcore.azure.net","name":"privatelink.vaultcore.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaoo5cnfbyz43mldzhgluatzlxt7a27ctleyn4ywid3pc3mpjye6ma","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaoo5cnfbyz43mldzhgluatzlxt7a27ctleyn4ywid3pc3mpjye6ma","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaag2v5y2qmenl6cp6kb3eixz4j2cbh5toskkedorurrwdm7hnhyeda","zoneType":"Primary","timeCreated":"2025-10-17T20:10:48.756Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/privatelink.vaultcore.azure.net","name":"privatelink.vaultcore.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaa5jr4vr7ca6yarqzdcfcuc73g2ujulieln2otzcaobh2dbiwrxcvq","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaa5jr4vr7ca6yarqzdcfcuc73g2ujulieln2otzcaobh2dbiwrxcvq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaad4asrbf5c7uymazy3wehh6eszv5wvw6i457chlqol2f2kepzax3q","zoneType":"Primary","timeCreated":"2025-10-03T13:40:33.434Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vault.azure.net","name":"vault.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaapp42ghlnpuiwfj44aev3y24lx4i3lwwg6m7l5yrwrfwnus5ybjeq","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaapp42ghlnpuiwfj44aev3y24lx4i3lwwg6m7l5yrwrfwnus5ybjeq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaad4asrbf5c7uymazy3wehh6eszv5wvw6i457chlqol2f2kepzax3q","zoneType":"Primary","timeCreated":"2025-10-03T13:40:10.510Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vault.azure.net","name":"vault.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaljfxifa6mgaqic2jdbwceh7kcypfne3oubbhk3qsak6jfbauc2la","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaljfxifa6mgaqic2jdbwceh7kcypfne3oubbhk3qsak6jfbauc2la","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa7rbvjhbuyj4cbmiutqloebmtclry7njsvhde5kzjzodgs23aut4q","zoneType":"Primary","timeCreated":"2025-07-09T06:15:34.643Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/privatelink.vaultcore.azure.net","name":"privatelink.vaultcore.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaxzjbmxly33tife43qjxtxaab5vzexeidudiw4sgrs7sis2rh4mqq","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaxzjbmxly33tife43qjxtxaab5vzexeidudiw4sgrs7sis2rh4mqq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaa7rbvjhbuyj4cbmiutqloebmtclry7njsvhde5kzjzodgs23aut4q","zoneType":"Primary","timeCreated":"2025-07-09T06:15:16.024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vault.azure.net","name":"vault.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaawi6ug52nt376jgxl5gqhblbixqvvcssw52ko5xz5wq2vgc44b2sq","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaawi6ug52nt376jgxl5gqhblbixqvvcssw52ko5xz5wq2vgc44b2sq","serial":3,"version":"3","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaacirvyq5klxmazysa4g7qymddf4keag7hd5aq73ioau53l7pxlvya","zoneType":"Primary","timeCreated":"2025-06-27T13:15:18.190Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/privatelink.vaultcore.azure.net","name":"privatelink.vaultcore.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaaaeeoouodu4l3kqycppu63disptdx3w3nvuiu7asdasa7qlbivsa","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaaaeeoouodu4l3kqycppu63disptdx3w3nvuiu7asdasa7qlbivsa","serial":3,"version":"3","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaacirvyq5klxmazysa4g7qymddf4keag7hd5aq73ioau53l7pxlvya","zoneType":"Primary","timeCreated":"2025-06-27T13:15:00.370Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/privatelink.vaultcore.azure.net","name":"privatelink.vaultcore.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaiepa2dwh5qqku7yh2rzfpcrg2efn2cm73m6zjz6fqjd7p3lzdy2q","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaiepa2dwh5qqku7yh2rzfpcrg2efn2cm73m6zjz6fqjd7p3lzdy2q","serial":3,"version":"3","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaedendgtuqlhe5rmuxagjl4uesq7mqxap2bwnlckjnwtdodepixhq","zoneType":"Primary","timeCreated":"2025-06-11T17:41:46.436Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vault.azure.net","name":"vault.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaamf6xwzzz3bvh45kj77xqgwuchxfec5qfbawbuusryq7z75yyt7gq","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaamf6xwzzz3bvh45kj77xqgwuchxfec5qfbawbuusryq7z75yyt7gq","serial":3,"version":"3","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaedendgtuqlhe5rmuxagjl4uesq7mqxap2bwnlckjnwtdodepixhq","zoneType":"Primary","timeCreated":"2025-06-11T17:40:54.753Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/test.com","name":"test.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaag4fnvbdolqnxcs5wocjneaavlz5y4gkgublfkqw6ibqvlri2tmua","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaag4fnvbdolqnxcs5wocjneaavlz5y4gkgublfkqw6ibqvlri2tmua","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaedendgtuqlhe5rmuxagjl4uesq7mqxap2bwnlckjnwtdodepixhq","zoneType":"Primary","timeCreated":"2025-06-05T16:56:08.676Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/vault.azure.net","name":"vault.azure.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaae7wt7jj2culny6t3vdd5o4octie6kwad454hsxblgpgmpinqcdca","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaae7wt7jj2culny6t3vdd5o4octie6kwad454hsxblgpgmpinqcdca","serial":3,"version":"3","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaao3ed4c5jxx4tpn73evxaceugxevp42jtj7y6g6d3zdpj32bnmipa","zoneType":"Primary","timeCreated":"2025-06-02T17:49:44.346Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/azuretest.com","name":"azuretest.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaauan56gxxohqxt6vllw6a3gvstezcqhvlhoqqvdqcgi5gnlatk3qq","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaauan56gxxohqxt6vllw6a3gvstezcqhvlhoqqvdqcgi5gnlatk3qq","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaegugdm5xpptre27qubxtaex2yattivvovsurcnfuq4gg4v5zaewa","zoneType":"Primary","timeCreated":"2025-03-06T06:39:10.039Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/google.com","name":"google.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaasxkcikphogzxfqdbst4lntchiuwsnbub55hrosrv3unek2yhe3ta","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaasxkcikphogzxfqdbst4lntchiuwsnbub55hrosrv3unek2yhe3ta","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyabvzgkmikquh4bovmnvfiftq4af42sjrgle5xtzyak7wa","zoneType":"Primary","timeCreated":"2025-02-25T23:57:52.564Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ctuzla2.database.windows.net","name":"ctuzla2.database.windows.net","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaags5uiw55s5sgeoumzrc6aglhdoz335545tr52kvytqaih6tbvema","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaags5uiw55s5sgeoumzrc6aglhdoz335545tr52kvytqaih6tbvema","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaair65xeqsfnfjwhcpkpumqgggajmr37jq7pzxf47fydu7obkoweqa","zoneType":"Primary","timeCreated":"2025-01-31T19:32:43.641Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/msft.alec.com","name":"msft.alec.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaaym7dm2sopofwk5mcek6bzdt66ok7djycmsgyectau7po4yebidja","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaaym7dm2sopofwk5mcek6bzdt66ok7djycmsgyectau7po4yebidja","serial":1,"version":"1","viewId":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyahcaseo4ykrmmyil3wysz6xrk3ypur5g32q5lyhmkrs4a","zoneType":"Primary","timeCreated":"2024-09-23T22:23:33.070Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/ocinonprotected.ocijune21sitdb.test.com","name":"ocinonprotected.ocijune21sitdb.test.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaahh55ygvx6ca7s5odrzu53knoufbgngbbd65m5iuxmeafsu3rio5q","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaahh55ygvx6ca7s5odrzu53knoufbgngbbd65m5iuxmeafsu3rio5q","serial":2,"version":"2","viewId":"ocid1.dnsview.oc1.iad.aaaaaaaaddo4kvptrfdq4heoossqpkpd44b462fnwfehyqnas6eripajv3ya","zoneType":"Primary","timeCreated":"2024-06-21T20:13:13.705Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateZones/yumfei.test.com","name":"yumfei.test.com","type":"Oracle.Database/Locations/dnsPrivateZones","properties":{"ocid":"ocid1.dns-zone.oc1.iad.aaaaaaaakvwgbkldxp3gljvuy6ymva2qzo7vkhf4rqbajnzynxn4bsokfrea","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/zones/ocid1.dns-zone.oc1.iad.aaaaaaaakvwgbkldxp3gljvuy6ymva2qzo7vkhf4rqbajnzynxn4bsokfrea","serial":15,"version":"15","viewId":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyawfpht37d6ohe7v3auprkpnpeqmfop2sqnfvev2kutzga","zoneType":"Primary","timeCreated":"2024-06-07T20:01:53.299Z"}}]}' headers: cache-control: - no-cache content-length: - - '67802' + - '14801' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 13:06:59 GMT + - Fri, 05 Dec 2025 04:34:41 GMT expires: - '-1' opc-request-id: - - /1918F108F4C847C47ABB2399E4067777/B07935D21D13E05F6517350E6F420828 + - oci-424E421E0409667-202512050434/53CE88C862A05095DC60326949414460/C906408830388A8E841AB7BC79213EC4 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/d365204f-a65a-481e-84b5-6c15aa803155 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D9D84200B43D423A85563D1E042BF32A Ref B: AMS231032609033 Ref C: 2024-07-05T13:06:56Z' + - 'Ref A: 505D1356C95943D5AF8DB8EDACC58C7F Ref B: SJC211051205027 Ref C: 2025-12-05T04:34:35Z' status: code: 200 message: OK @@ -305,7 +329,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database dns-private-view list Connection: @@ -313,39 +337,43 @@ interactions: ParameterSetName: - --location User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews?api-version=2025-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaytqscqgo3vowvligvkeaiqozwywcbkm336keyzz34xiorgfximza","name":"ocid1.dnsview.oc1.iad.aaaaaaaaytqscqgo3vowvligvkeaiqozwywcbkm336keyzz34xiorgfximza","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaytqscqgo3vowvligvkeaiqozwywcbkm336keyzz34xiorgfximza","displayName":"VCN-multicloudnetworklink20240704155555","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaytqscqgo3vowvligvkeaiqozwywcbkm336keyzz34xiorgfximza","timeCreated":"2024-07-04T15:56:23.271Z","timeUpdated":"2024-07-04T15:56:25.491Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaalf3jpv4bmwdg6nxw7ciudrb3smln6a46h7asgrwoironcxuoslea","name":"ocid1.dnsview.oc1.iad.aaaaaaaalf3jpv4bmwdg6nxw7ciudrb3smln6a46h7asgrwoironcxuoslea","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaalf3jpv4bmwdg6nxw7ciudrb3smln6a46h7asgrwoironcxuoslea","displayName":"VCN-multicloudnetworklink20240704151602","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaalf3jpv4bmwdg6nxw7ciudrb3smln6a46h7asgrwoironcxuoslea","timeCreated":"2024-07-04T15:16:15.459Z","timeUpdated":"2024-07-04T15:16:17.993Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaags4sek6p7ocgs5sjarfm26dgmz23yegxxwqk4aowebismrbbgm6q","name":"ocid1.dnsview.oc1.iad.aaaaaaaags4sek6p7ocgs5sjarfm26dgmz23yegxxwqk4aowebismrbbgm6q","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaags4sek6p7ocgs5sjarfm26dgmz23yegxxwqk4aowebismrbbgm6q","displayName":"VCN-multicloudnetworklink20240704133051","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaags4sek6p7ocgs5sjarfm26dgmz23yegxxwqk4aowebismrbbgm6q","timeCreated":"2024-07-04T13:31:05.785Z","timeUpdated":"2024-07-04T13:31:07.940Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaazmyd4s4uwgqfccdrhldyei7gdwvmckqe2gcf7rqyzx5745rqcz7a","name":"ocid1.dnsview.oc1.iad.aaaaaaaazmyd4s4uwgqfccdrhldyei7gdwvmckqe2gcf7rqyzx5745rqcz7a","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaazmyd4s4uwgqfccdrhldyei7gdwvmckqe2gcf7rqyzx5745rqcz7a","displayName":"VCN-multicloudnetworklink20240704035840","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaazmyd4s4uwgqfccdrhldyei7gdwvmckqe2gcf7rqyzx5745rqcz7a","timeCreated":"2024-07-04T03:59:18.698Z","timeUpdated":"2024-07-04T03:59:20.112Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaarnrvhq52proqtx2dxwmkktnelvh37dfplek7rfvba2eoasl5ljla","name":"ocid1.dnsview.oc1.iad.aaaaaaaarnrvhq52proqtx2dxwmkktnelvh37dfplek7rfvba2eoasl5ljla","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaarnrvhq52proqtx2dxwmkktnelvh37dfplek7rfvba2eoasl5ljla","displayName":"VCN-multicloudnetworklink20240703081526","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaarnrvhq52proqtx2dxwmkktnelvh37dfplek7rfvba2eoasl5ljla","timeCreated":"2024-07-03T08:15:48.421Z","timeUpdated":"2024-07-03T08:15:50.325Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","name":"ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","displayName":"VCN-multicloudnetworklink20240702175400","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaamjmgxzpu5phmeukw2awzkomljqewcnc3xia47hwq7vwzizb3vyq","timeCreated":"2024-07-02T17:54:22.117Z","timeUpdated":"2024-07-02T17:54:24.131Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaasfkjzbc3yfkh7iefqp5wgo3rw7waujjh4thx6c63bcjxsr7xgunq","name":"ocid1.dnsview.oc1.iad.aaaaaaaasfkjzbc3yfkh7iefqp5wgo3rw7waujjh4thx6c63bcjxsr7xgunq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaasfkjzbc3yfkh7iefqp5wgo3rw7waujjh4thx6c63bcjxsr7xgunq","displayName":"VCN-multicloudnetworklink20240628234131","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaasfkjzbc3yfkh7iefqp5wgo3rw7waujjh4thx6c63bcjxsr7xgunq","timeCreated":"2024-06-28T23:41:42.228Z","timeUpdated":"2024-06-28T23:41:43.985Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaahh7hn6igc2h3hjb7yzbp6qvxdlueuptw3tqsevgd6sqmck2t67xq","name":"ocid1.dnsview.oc1.iad.aaaaaaaahh7hn6igc2h3hjb7yzbp6qvxdlueuptw3tqsevgd6sqmck2t67xq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaahh7hn6igc2h3hjb7yzbp6qvxdlueuptw3tqsevgd6sqmck2t67xq","displayName":"VCN-multicloudnetworklink20240628223806","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaahh7hn6igc2h3hjb7yzbp6qvxdlueuptw3tqsevgd6sqmck2t67xq","timeCreated":"2024-06-28T22:38:13.239Z","timeUpdated":"2024-06-28T22:38:15.400Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaa4d4te57r5kd2uiwz3nrsrupyxoq4ld6qe7llj4thyqryh4ptt7ta","name":"ocid1.dnsview.oc1.iad.aaaaaaaa4d4te57r5kd2uiwz3nrsrupyxoq4ld6qe7llj4thyqryh4ptt7ta","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaa4d4te57r5kd2uiwz3nrsrupyxoq4ld6qe7llj4thyqryh4ptt7ta","displayName":"VCN-multicloudnetworklink20240627210924","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaa4d4te57r5kd2uiwz3nrsrupyxoq4ld6qe7llj4thyqryh4ptt7ta","timeCreated":"2024-06-27T21:09:42.065Z","timeUpdated":"2024-06-27T21:09:44.162Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaan3zpjnyy7hzjbsw4am75qb4r56twlyhzdachelvnvfo4t2gmg3nq","name":"ocid1.dnsview.oc1.iad.aaaaaaaan3zpjnyy7hzjbsw4am75qb4r56twlyhzdachelvnvfo4t2gmg3nq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaan3zpjnyy7hzjbsw4am75qb4r56twlyhzdachelvnvfo4t2gmg3nq","displayName":"VCN-multicloudnetworklink20240627192828","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaan3zpjnyy7hzjbsw4am75qb4r56twlyhzdachelvnvfo4t2gmg3nq","timeCreated":"2024-06-27T19:28:50.454Z","timeUpdated":"2024-06-27T19:28:52.312Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaa3jibcq6frlsxtfsgvncilhpn655j6wrj3dhbvfstot2eufmjlh6q","name":"ocid1.dnsview.oc1.iad.aaaaaaaa3jibcq6frlsxtfsgvncilhpn655j6wrj3dhbvfstot2eufmjlh6q","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaa3jibcq6frlsxtfsgvncilhpn655j6wrj3dhbvfstot2eufmjlh6q","displayName":"VCN-multicloudnetworklink20240625030018","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaa3jibcq6frlsxtfsgvncilhpn655j6wrj3dhbvfstot2eufmjlh6q","timeCreated":"2024-06-25T03:00:49.026Z","timeUpdated":"2024-06-25T03:00:51.243Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaae33wuskmomxnyus5ih3dvcp5vzocs7rjmwyjy3ob5nroyltk3n4a","name":"ocid1.dnsview.oc1.iad.aaaaaaaae33wuskmomxnyus5ih3dvcp5vzocs7rjmwyjy3ob5nroyltk3n4a","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaae33wuskmomxnyus5ih3dvcp5vzocs7rjmwyjy3ob5nroyltk3n4a","displayName":"VCN-multicloudnetworklink20240625025930","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaae33wuskmomxnyus5ih3dvcp5vzocs7rjmwyjy3ob5nroyltk3n4a","timeCreated":"2024-06-25T02:59:54.113Z","timeUpdated":"2024-06-25T02:59:55.973Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaa7u7luleugifyox5x6wxfcox6pqhqh7m4arfddastzhcby7ywela","name":"ocid1.dnsview.oc1.iad.aaaaaaaaa7u7luleugifyox5x6wxfcox6pqhqh7m4arfddastzhcby7ywela","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaa7u7luleugifyox5x6wxfcox6pqhqh7m4arfddastzhcby7ywela","displayName":"VCN-multicloudnetworklink20240624205831","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaa7u7luleugifyox5x6wxfcox6pqhqh7m4arfddastzhcby7ywela","timeCreated":"2024-06-24T20:58:47.249Z","timeUpdated":"2024-06-24T20:58:49.190Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaazbo3ppu46obfuvioi3ktwjzlg2d2fmnbkx7vcvpcxxxyzccsg7cq","name":"ocid1.dnsview.oc1.iad.aaaaaaaazbo3ppu46obfuvioi3ktwjzlg2d2fmnbkx7vcvpcxxxyzccsg7cq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaazbo3ppu46obfuvioi3ktwjzlg2d2fmnbkx7vcvpcxxxyzccsg7cq","displayName":"VCN-multicloudnetworklink20240624154713","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaazbo3ppu46obfuvioi3ktwjzlg2d2fmnbkx7vcvpcxxxyzccsg7cq","timeCreated":"2024-06-24T15:47:43.488Z","timeUpdated":"2024-06-24T15:47:45.533Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaebd3s6zefr26dbsvxtbwnaf6ryi5sm7jwhfw7l2xcczut67pp6zq","name":"ocid1.dnsview.oc1.iad.aaaaaaaaebd3s6zefr26dbsvxtbwnaf6ryi5sm7jwhfw7l2xcczut67pp6zq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaebd3s6zefr26dbsvxtbwnaf6ryi5sm7jwhfw7l2xcczut67pp6zq","displayName":"VCN-multicloudnetworklink20240621175846","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaebd3s6zefr26dbsvxtbwnaf6ryi5sm7jwhfw7l2xcczut67pp6zq","timeCreated":"2024-06-21T17:59:09.697Z","timeUpdated":"2024-06-21T17:59:10.424Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaadqjwjdlyrljtif3tzqeuhljlt7hiitedjobr2zf2oac2amylboyq","name":"ocid1.dnsview.oc1.iad.aaaaaaaadqjwjdlyrljtif3tzqeuhljlt7hiitedjobr2zf2oac2amylboyq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaadqjwjdlyrljtif3tzqeuhljlt7hiitedjobr2zf2oac2amylboyq","displayName":"VCN-multicloudnetworklink20240620170820","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaadqjwjdlyrljtif3tzqeuhljlt7hiitedjobr2zf2oac2amylboyq","timeCreated":"2024-06-20T17:08:44.118Z","timeUpdated":"2024-06-20T17:08:46.199Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","name":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","displayName":"VCN-multicloudnetworklink20240619143753","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaao3gw7b3xroaixkhbhjq5eoppwc243vd3hl66wjkiizpohtiylrta","timeCreated":"2024-06-19T14:38:16.804Z","timeUpdated":"2024-06-19T14:38:19.206Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaam6mulme3e6ib2oewncnm7ziwiegzvmqprk3aphxr7hfzvotcojea","name":"ocid1.dnsview.oc1.iad.aaaaaaaam6mulme3e6ib2oewncnm7ziwiegzvmqprk3aphxr7hfzvotcojea","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaam6mulme3e6ib2oewncnm7ziwiegzvmqprk3aphxr7hfzvotcojea","displayName":"VCN-multicloudnetworklink20240613222842","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaam6mulme3e6ib2oewncnm7ziwiegzvmqprk3aphxr7hfzvotcojea","timeCreated":"2024-06-13T22:29:06.686Z","timeUpdated":"2024-06-13T22:29:08.643Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaa2fm5l2pzpuj53f6xwsbno5kh2ozthcibmwwlz4r44l6ds4oirjvq","name":"ocid1.dnsview.oc1.iad.aaaaaaaa2fm5l2pzpuj53f6xwsbno5kh2ozthcibmwwlz4r44l6ds4oirjvq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaa2fm5l2pzpuj53f6xwsbno5kh2ozthcibmwwlz4r44l6ds4oirjvq","displayName":"VCN-multicloudnetworklink20240613214647","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaa2fm5l2pzpuj53f6xwsbno5kh2ozthcibmwwlz4r44l6ds4oirjvq","timeCreated":"2024-06-13T21:47:03.586Z","timeUpdated":"2024-06-13T21:47:05.657Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaakdvcobjg63flojxhajg6frjuulzvm3ujwvlq5md72aioxwhztp4a","name":"ocid1.dnsview.oc1.iad.aaaaaaaakdvcobjg63flojxhajg6frjuulzvm3ujwvlq5md72aioxwhztp4a","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaakdvcobjg63flojxhajg6frjuulzvm3ujwvlq5md72aioxwhztp4a","displayName":"VCN-multicloudnetworklink20240613135637","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaakdvcobjg63flojxhajg6frjuulzvm3ujwvlq5md72aioxwhztp4a","timeCreated":"2024-06-13T13:56:59.209Z","timeUpdated":"2024-06-13T13:57:00.848Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaadnfesiej4lwha3bqamzc5c5jbc52fviao5dsz5t7gymd2dhbf5xa","name":"ocid1.dnsview.oc1.iad.aaaaaaaadnfesiej4lwha3bqamzc5c5jbc52fviao5dsz5t7gymd2dhbf5xa","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaadnfesiej4lwha3bqamzc5c5jbc52fviao5dsz5t7gymd2dhbf5xa","displayName":"VCN-multicloudnetworklink20240613000648","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaadnfesiej4lwha3bqamzc5c5jbc52fviao5dsz5t7gymd2dhbf5xa","timeCreated":"2024-06-13T00:07:09.804Z","timeUpdated":"2024-06-13T00:07:11.688Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaacnlnbnfwl4yqjmc6duyff24oarf53rx4t45gmxebo5dd3bo2spmq","name":"ocid1.dnsview.oc1.iad.aaaaaaaacnlnbnfwl4yqjmc6duyff24oarf53rx4t45gmxebo5dd3bo2spmq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaacnlnbnfwl4yqjmc6duyff24oarf53rx4t45gmxebo5dd3bo2spmq","displayName":"VCN-multicloudnetworklink20240612222617","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaacnlnbnfwl4yqjmc6duyff24oarf53rx4t45gmxebo5dd3bo2spmq","timeCreated":"2024-06-12T22:26:42.912Z","timeUpdated":"2024-06-12T22:26:44.866Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaasnob6ag6wg6pmacj43cenkffel4ufxi7c2zk2s2rm47wu4zhmzjq","name":"ocid1.dnsview.oc1.iad.aaaaaaaasnob6ag6wg6pmacj43cenkffel4ufxi7c2zk2s2rm47wu4zhmzjq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaasnob6ag6wg6pmacj43cenkffel4ufxi7c2zk2s2rm47wu4zhmzjq","displayName":"VCN-multicloudnetworklink20240612133707","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaasnob6ag6wg6pmacj43cenkffel4ufxi7c2zk2s2rm47wu4zhmzjq","timeCreated":"2024-06-12T13:37:29.696Z","timeUpdated":"2024-06-12T13:37:31.529Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaacl3b74znruhwqzliqny3kh522bc2v3kx4j6egx7gpz3jj6prmq7a","name":"ocid1.dnsview.oc1.iad.aaaaaaaacl3b74znruhwqzliqny3kh522bc2v3kx4j6egx7gpz3jj6prmq7a","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaacl3b74znruhwqzliqny3kh522bc2v3kx4j6egx7gpz3jj6prmq7a","displayName":"VCN-multicloudnetworklink20240612051003","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaacl3b74znruhwqzliqny3kh522bc2v3kx4j6egx7gpz3jj6prmq7a","timeCreated":"2024-06-12T05:10:28.471Z","timeUpdated":"2024-06-12T05:10:29.982Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaawwky4j2igeyhsiiymg4ck3asdtbdtodasiwmix5gpmtz6tdsk2sa","name":"ocid1.dnsview.oc1.iad.aaaaaaaawwky4j2igeyhsiiymg4ck3asdtbdtodasiwmix5gpmtz6tdsk2sa","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaawwky4j2igeyhsiiymg4ck3asdtbdtodasiwmix5gpmtz6tdsk2sa","displayName":"VCN-multicloudnetworklink20240606182920","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaawwky4j2igeyhsiiymg4ck3asdtbdtodasiwmix5gpmtz6tdsk2sa","timeCreated":"2024-06-06T18:29:39.231Z","timeUpdated":"2024-06-06T18:29:40.959Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaabshazqhwh6pfue2t7x4wnvmu333ug7kv7goccwy76ek2fdhw7frq","name":"ocid1.dnsview.oc1.iad.aaaaaaaabshazqhwh6pfue2t7x4wnvmu333ug7kv7goccwy76ek2fdhw7frq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaabshazqhwh6pfue2t7x4wnvmu333ug7kv7goccwy76ek2fdhw7frq","displayName":"VCN-multicloudnetworklink20240605195415","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaabshazqhwh6pfue2t7x4wnvmu333ug7kv7goccwy76ek2fdhw7frq","timeCreated":"2024-06-05T19:54:40.458Z","timeUpdated":"2024-06-05T19:54:42.655Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.amaaaaaanirvylqavprecsjhqzozhzhubrv5zh2zkc7rbzebv5htjaowyhpq","name":"ocid1.dnsview.oc1.iad.amaaaaaanirvylqavprecsjhqzozhzhubrv5zh2zkc7rbzebv5htjaowyhpq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.amaaaaaanirvylqavprecsjhqzozhzhubrv5zh2zkc7rbzebv5htjaowyhpq","displayName":"spalimpaTestDnsView","isProtected":false,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.amaaaaaanirvylqavprecsjhqzozhzhubrv5zh2zkc7rbzebv5htjaowyhpq","timeCreated":"2024-06-03T22:05:53.669Z","timeUpdated":"2024-06-03T22:05:53.669Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaacn72hqgq74txfgtuwo3ddlgkspw2vz4eldxrme7texgsugxp5x3a","name":"ocid1.dnsview.oc1.iad.aaaaaaaacn72hqgq74txfgtuwo3ddlgkspw2vz4eldxrme7texgsugxp5x3a","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaacn72hqgq74txfgtuwo3ddlgkspw2vz4eldxrme7texgsugxp5x3a","displayName":"VCN-multicloudnetworklink20240603184418","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaacn72hqgq74txfgtuwo3ddlgkspw2vz4eldxrme7texgsugxp5x3a","timeCreated":"2024-06-03T18:44:27.818Z","timeUpdated":"2024-06-03T18:44:29.917Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.amaaaaaanirvylqahnekoidsqbfml7bpjcujxtreo24uesvwahbixqcvrdwa","name":"ocid1.dnsview.oc1.iad.amaaaaaanirvylqahnekoidsqbfml7bpjcujxtreo24uesvwahbixqcvrdwa","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.amaaaaaanirvylqahnekoidsqbfml7bpjcujxtreo24uesvwahbixqcvrdwa","displayName":"MaxTestDnsView","isProtected":false,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.amaaaaaanirvylqahnekoidsqbfml7bpjcujxtreo24uesvwahbixqcvrdwa","timeCreated":"2024-06-03T16:44:17.124Z","timeUpdated":"2024-06-03T16:44:17.124Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaahjczll6evlberotb4inm7yihkpj2nzie3zcicxidot3wucc634eq","name":"ocid1.dnsview.oc1.iad.aaaaaaaahjczll6evlberotb4inm7yihkpj2nzie3zcicxidot3wucc634eq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaahjczll6evlberotb4inm7yihkpj2nzie3zcicxidot3wucc634eq","displayName":"VCN-multicloudnetworklink20240531193821","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaahjczll6evlberotb4inm7yihkpj2nzie3zcicxidot3wucc634eq","timeCreated":"2024-05-31T19:38:43.345Z","timeUpdated":"2024-05-31T19:38:45.554Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","name":"ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","displayName":"VCN-multicloudnetworklink20240530204655","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaa6ewmoocgnxx526ixpfx6vtkf6rn247zkfdrsfyvesicigspdkona","timeCreated":"2024-05-30T20:47:14.327Z","timeUpdated":"2024-05-30T20:47:16.405Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaalambtijdib5a3nldvzzxet67vbvdynj3uzsffm23vej25vidgtqq","name":"ocid1.dnsview.oc1.iad.aaaaaaaalambtijdib5a3nldvzzxet67vbvdynj3uzsffm23vej25vidgtqq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaalambtijdib5a3nldvzzxet67vbvdynj3uzsffm23vej25vidgtqq","displayName":"VCN-multicloudnetworklink20240530182105","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaalambtijdib5a3nldvzzxet67vbvdynj3uzsffm23vej25vidgtqq","timeCreated":"2024-05-30T18:21:39.043Z","timeUpdated":"2024-05-30T18:21:41.255Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaar3sf4g3t5n37ak7jdfjdlgkxon7vqxrantbh66a5zdaf4pmsj3q","name":"ocid1.dnsview.oc1.iad.aaaaaaaaar3sf4g3t5n37ak7jdfjdlgkxon7vqxrantbh66a5zdaf4pmsj3q","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaar3sf4g3t5n37ak7jdfjdlgkxon7vqxrantbh66a5zdaf4pmsj3q","displayName":"VCN-multicloudnetworklink20240528150557","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaar3sf4g3t5n37ak7jdfjdlgkxon7vqxrantbh66a5zdaf4pmsj3q","timeCreated":"2024-05-28T15:06:28.154Z","timeUpdated":"2024-05-28T15:06:30.011Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaa7zpfwvaipbz6jhjlkr5rpm2pmwdjckigattvcv2bblnhbi6wbfca","name":"ocid1.dnsview.oc1.iad.aaaaaaaa7zpfwvaipbz6jhjlkr5rpm2pmwdjckigattvcv2bblnhbi6wbfca","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaa7zpfwvaipbz6jhjlkr5rpm2pmwdjckigattvcv2bblnhbi6wbfca","displayName":"VCN-multicloudnetworklink20240523185434","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaa7zpfwvaipbz6jhjlkr5rpm2pmwdjckigattvcv2bblnhbi6wbfca","timeCreated":"2024-05-23T18:54:47.496Z","timeUpdated":"2024-05-23T18:54:49.359Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaae42p4btkcvdoe7q44zq5og6wvw7bpse2mpkiancqpdvtjf6zibtq","name":"ocid1.dnsview.oc1.iad.aaaaaaaae42p4btkcvdoe7q44zq5og6wvw7bpse2mpkiancqpdvtjf6zibtq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaae42p4btkcvdoe7q44zq5og6wvw7bpse2mpkiancqpdvtjf6zibtq","displayName":"VCN-multicloudnetworklink20240523150156","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaae42p4btkcvdoe7q44zq5og6wvw7bpse2mpkiancqpdvtjf6zibtq","timeCreated":"2024-05-23T15:02:09.022Z","timeUpdated":"2024-05-23T15:02:11.210Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaai6hsw24kp35c2nln6za6n2p5co4nibufpa2l4uooanlnjqalmglq","name":"ocid1.dnsview.oc1.iad.aaaaaaaai6hsw24kp35c2nln6za6n2p5co4nibufpa2l4uooanlnjqalmglq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaai6hsw24kp35c2nln6za6n2p5co4nibufpa2l4uooanlnjqalmglq","displayName":"VCN-multicloudnetworklink20240523070835","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaai6hsw24kp35c2nln6za6n2p5co4nibufpa2l4uooanlnjqalmglq","timeCreated":"2024-05-23T07:09:10.414Z","timeUpdated":"2024-05-23T07:09:12.384Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaaajoznx7ifv4jvbadj3ccja7yiahyl4jocliuuyddkin2gbp5nua","name":"ocid1.dnsview.oc1.iad.aaaaaaaaaajoznx7ifv4jvbadj3ccja7yiahyl4jocliuuyddkin2gbp5nua","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaaajoznx7ifv4jvbadj3ccja7yiahyl4jocliuuyddkin2gbp5nua","displayName":"VCN-multicloudnetworklink20240523001016","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaaajoznx7ifv4jvbadj3ccja7yiahyl4jocliuuyddkin2gbp5nua","timeCreated":"2024-05-23T00:10:48.067Z","timeUpdated":"2024-05-23T00:10:50.215Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaa63j2mvogwykcxu4jnjlfcwxqlunu3ceiby3izafruyosv4j4ghpa","name":"ocid1.dnsview.oc1.iad.aaaaaaaa63j2mvogwykcxu4jnjlfcwxqlunu3ceiby3izafruyosv4j4ghpa","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaa63j2mvogwykcxu4jnjlfcwxqlunu3ceiby3izafruyosv4j4ghpa","displayName":"VCN-multicloudnetworklink20240503170952","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaa63j2mvogwykcxu4jnjlfcwxqlunu3ceiby3izafruyosv4j4ghpa","timeCreated":"2024-05-03T17:10:12.675Z","timeUpdated":"2024-05-03T17:10:15.107Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaboxvqwa65555p7u4g3yr55kamhj5hzd676w53c4xrokwfvdh25sq","name":"ocid1.dnsview.oc1.iad.aaaaaaaaboxvqwa65555p7u4g3yr55kamhj5hzd676w53c4xrokwfvdh25sq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaboxvqwa65555p7u4g3yr55kamhj5hzd676w53c4xrokwfvdh25sq","displayName":"VCN-multicloudnetworklink20240502190731","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaboxvqwa65555p7u4g3yr55kamhj5hzd676w53c4xrokwfvdh25sq","timeCreated":"2024-05-02T19:08:07.874Z","timeUpdated":"2024-05-02T19:08:09.852Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaainzhp3afn4raviq24b6x3hkzzokn2cpqthig7iat2uh3zya72o2a","name":"ocid1.dnsview.oc1.iad.aaaaaaaainzhp3afn4raviq24b6x3hkzzokn2cpqthig7iat2uh3zya72o2a","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaainzhp3afn4raviq24b6x3hkzzokn2cpqthig7iat2uh3zya72o2a","displayName":"VCN-multicloudnetworklink20240501154652","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaainzhp3afn4raviq24b6x3hkzzokn2cpqthig7iat2uh3zya72o2a","timeCreated":"2024-05-01T15:47:29.329Z","timeUpdated":"2024-05-01T15:47:31.349Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaahd6rc62hisdbgprchfc3oyt5x3vrvu6acaejhi6zxr2os6viwhbq","name":"ocid1.dnsview.oc1.iad.aaaaaaaahd6rc62hisdbgprchfc3oyt5x3vrvu6acaejhi6zxr2os6viwhbq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaahd6rc62hisdbgprchfc3oyt5x3vrvu6acaejhi6zxr2os6viwhbq","displayName":"VCN-multicloudnetworklink20240430105747","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaahd6rc62hisdbgprchfc3oyt5x3vrvu6acaejhi6zxr2os6viwhbq","timeCreated":"2024-04-30T10:58:09.214Z","timeUpdated":"2024-04-30T10:58:11.548Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaakhvc2vjgh4hdubzt5h3yu6vaseucqrzjmqwt6ihkjeneloduv6qa","name":"ocid1.dnsview.oc1.iad.aaaaaaaakhvc2vjgh4hdubzt5h3yu6vaseucqrzjmqwt6ihkjeneloduv6qa","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaakhvc2vjgh4hdubzt5h3yu6vaseucqrzjmqwt6ihkjeneloduv6qa","displayName":"VCN-multicloudnetworklink20240426230135","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaakhvc2vjgh4hdubzt5h3yu6vaseucqrzjmqwt6ihkjeneloduv6qa","timeCreated":"2024-04-26T23:02:10.222Z","timeUpdated":"2024-04-26T23:02:12.479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaxjlankdk4o3lzq5ernpaq2yws4k2njbv6yaxi3w7yawjojred5xa","name":"ocid1.dnsview.oc1.iad.aaaaaaaaxjlankdk4o3lzq5ernpaq2yws4k2njbv6yaxi3w7yawjojred5xa","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaxjlankdk4o3lzq5ernpaq2yws4k2njbv6yaxi3w7yawjojred5xa","displayName":"VCN-multicloudnetworklink20240419120909","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaxjlankdk4o3lzq5ernpaq2yws4k2njbv6yaxi3w7yawjojred5xa","timeCreated":"2024-04-19T12:09:37.786Z","timeUpdated":"2024-04-19T12:09:40.047Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaahugndvzacan2iivlzm7kb7j2e4swz5szwtyrzf5gykx2c6ifuh6a","name":"ocid1.dnsview.oc1.iad.aaaaaaaahugndvzacan2iivlzm7kb7j2e4swz5szwtyrzf5gykx2c6ifuh6a","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaahugndvzacan2iivlzm7kb7j2e4swz5szwtyrzf5gykx2c6ifuh6a","displayName":"VCN-multicloudnetworklink20240417195522","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaahugndvzacan2iivlzm7kb7j2e4swz5szwtyrzf5gykx2c6ifuh6a","timeCreated":"2024-04-17T19:55:39.595Z","timeUpdated":"2024-04-17T19:55:41.710Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","name":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","displayName":"VCN-multicloudnetworklink20240417120644","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaomz3aoqsp6fjzw2uxo4zen7jw3u4svpwjptufokhl5ptugyp7tra","timeCreated":"2024-04-17T12:07:25.246Z","timeUpdated":"2024-04-17T12:07:27.228Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaatle4wjrmfronppo5rlezom7k73ghwobdfpzkyxtg6bzguq4hwsbq","name":"ocid1.dnsview.oc1.iad.aaaaaaaatle4wjrmfronppo5rlezom7k73ghwobdfpzkyxtg6bzguq4hwsbq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaatle4wjrmfronppo5rlezom7k73ghwobdfpzkyxtg6bzguq4hwsbq","displayName":"VCN-multicloudnetworklink20240405100417","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaatle4wjrmfronppo5rlezom7k73ghwobdfpzkyxtg6bzguq4hwsbq","timeCreated":"2024-04-05T10:05:00.516Z","timeUpdated":"2024-04-05T10:05:02.342Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaan7aluku6kbs4kqjyibpulphfmkss6dow6bn2qaxxwfedcv6jfkmq","name":"ocid1.dnsview.oc1.iad.aaaaaaaan7aluku6kbs4kqjyibpulphfmkss6dow6bn2qaxxwfedcv6jfkmq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaan7aluku6kbs4kqjyibpulphfmkss6dow6bn2qaxxwfedcv6jfkmq","displayName":"VCN-multicloudnetworklink20240312194018","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaan7aluku6kbs4kqjyibpulphfmkss6dow6bn2qaxxwfedcv6jfkmq","timeCreated":"2024-03-12T19:41:03.156Z","timeUpdated":"2024-03-12T19:41:05.510Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaa5pegcnpgikfbbmnswt6wg3wpxakvowirvkpqz5lskkkydy3sjglq","name":"ocid1.dnsview.oc1.iad.aaaaaaaa5pegcnpgikfbbmnswt6wg3wpxakvowirvkpqz5lskkkydy3sjglq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaa5pegcnpgikfbbmnswt6wg3wpxakvowirvkpqz5lskkkydy3sjglq","displayName":"VCN-xiaoxuew_dns_fwd","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaa5pegcnpgikfbbmnswt6wg3wpxakvowirvkpqz5lskkkydy3sjglq","timeCreated":"2024-03-05T21:14:59.101Z","timeUpdated":"2024-03-05T21:15:01.218Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaa3i6q4mwhal3jjcfbv5oo3jruijf43me3u7ro46xhj7dncba2anfq","name":"ocid1.dnsview.oc1.iad.aaaaaaaa3i6q4mwhal3jjcfbv5oo3jruijf43me3u7ro46xhj7dncba2anfq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaa3i6q4mwhal3jjcfbv5oo3jruijf43me3u7ro46xhj7dncba2anfq","displayName":"VCN-multicloudnetworklink20240111024708","isProtected":true,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaa3i6q4mwhal3jjcfbv5oo3jruijf43me3u7ro46xhj7dncba2anfq","timeCreated":"2024-01-11T02:47:22.155Z","timeUpdated":"2024-01-11T02:47:24.944Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaa6rplfk5emrpuk5bhe7hmnhyqj5xg3zpvqwf27oowux6forjjk3wq","name":"ocid1.dnsview.oc1.iad.aaaaaaaa6rplfk5emrpuk5bhe7hmnhyqj5xg3zpvqwf27oowux6forjjk3wq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaa6rplfk5emrpuk5bhe7hmnhyqj5xg3zpvqwf27oowux6forjjk3wq","displayName":"VCN-multicloudnetworklink20240109185203","isProtected":false,"provisioningState":"Active","lifecycleState":null,"self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaa6rplfk5emrpuk5bhe7hmnhyqj5xg3zpvqwf27oowux6forjjk3wq","timeCreated":"2024-01-09T18:52:26.271Z","timeUpdated":"2024-05-23T07:10:02.815Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyakndvkrqy23wnamybzrptpoyfodmg5luczswilzkee6eq","name":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyakndvkrqy23wnamybzrptpoyfodmg5luczswilzkee6eq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyakndvkrqy23wnamybzrptpoyfodmg5luczswilzkee6eq","displayName":"ash.iad.pvt","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyakndvkrqy23wnamybzrptpoyfodmg5luczswilzkee6eq","timeCreated":"2025-11-06T21:57:04.625Z","timeUpdated":"2025-11-06T21:57:04.625Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaa7rbvjhbuyj4cbmiutqloebmtclry7njsvhde5kzjzodgs23aut4q","name":"ocid1.dnsview.oc1.iad.aaaaaaaa7rbvjhbuyj4cbmiutqloebmtclry7njsvhde5kzjzodgs23aut4q","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaa7rbvjhbuyj4cbmiutqloebmtclry7njsvhde5kzjzodgs23aut4q","displayName":"VCN-multicloudnetworklink20250709054025","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaa7rbvjhbuyj4cbmiutqloebmtclry7njsvhde5kzjzodgs23aut4q","timeCreated":"2025-07-09T05:40:58.955Z","timeUpdated":"2025-10-06T00:46:57.690Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaabcraohfyuymdhgqidnkhm2cu5sqgdjnq4u47tiymvosiboi5onzq","name":"ocid1.dnsview.oc1.iad.aaaaaaaabcraohfyuymdhgqidnkhm2cu5sqgdjnq4u47tiymvosiboi5onzq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaabcraohfyuymdhgqidnkhm2cu5sqgdjnq4u47tiymvosiboi5onzq","displayName":"VCN-multicloudnetworklink20250707004354","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaabcraohfyuymdhgqidnkhm2cu5sqgdjnq4u47tiymvosiboi5onzq","timeCreated":"2025-07-07T00:44:20.880Z","timeUpdated":"2025-07-09T20:20:23.509Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyaijt3yr74ydyb7ui5rmqpk4wxsros5iot4elczw5emymq","name":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyaijt3yr74ydyb7ui5rmqpk4wxsros5iot4elczw5emymq","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyaijt3yr74ydyb7ui5rmqpk4wxsros5iot4elczw5emymq","displayName":"vault.azure.net","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyaijt3yr74ydyb7ui5rmqpk4wxsros5iot4elczw5emymq","timeCreated":"2025-06-06T06:01:30.535Z","timeUpdated":"2025-06-06T06:01:30.535Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyaxqri6rpxnpgnv4gntrhgu5k3l6k4ubbkh6efefxrbcra","name":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyaxqri6rpxnpgnv4gntrhgu5k3l6k4ubbkh6efefxrbcra","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyaxqri6rpxnpgnv4gntrhgu5k3l6k4ubbkh6efefxrbcra","displayName":"privateview","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyaxqri6rpxnpgnv4gntrhgu5k3l6k4ubbkh6efefxrbcra","timeCreated":"2025-06-06T05:58:58.292Z","timeUpdated":"2025-06-06T05:58:58.292Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaegugdm5xpptre27qubxtaex2yattivvovsurcnfuq4gg4v5zaewa","name":"ocid1.dnsview.oc1.iad.aaaaaaaaegugdm5xpptre27qubxtaex2yattivvovsurcnfuq4gg4v5zaewa","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaegugdm5xpptre27qubxtaex2yattivvovsurcnfuq4gg4v5zaewa","displayName":"VCN-multicloudnetworklink20250305061300","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaegugdm5xpptre27qubxtaex2yattivvovsurcnfuq4gg4v5zaewa","timeCreated":"2025-03-05T06:13:33.934Z","timeUpdated":"2025-04-14T16:42:27.619Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyabvzgkmikquh4bovmnvfiftq4af42sjrgle5xtzyak7wa","name":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyabvzgkmikquh4bovmnvfiftq4af42sjrgle5xtzyak7wa","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyabvzgkmikquh4bovmnvfiftq4af42sjrgle5xtzyak7wa","displayName":"dnsview20250225235751","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyabvzgkmikquh4bovmnvfiftq4af42sjrgle5xtzyak7wa","timeCreated":"2025-02-25T23:57:51.597Z","timeUpdated":"2025-02-25T23:57:51.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyahcaseo4ykrmmyil3wysz6xrk3ypur5g32q5lyhmkrs4a","name":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyahcaseo4ykrmmyil3wysz6xrk3ypur5g32q5lyhmkrs4a","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyahcaseo4ykrmmyil3wysz6xrk3ypur5g32q5lyhmkrs4a","displayName":"alec.com","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyahcaseo4ykrmmyil3wysz6xrk3ypur5g32q5lyhmkrs4a","timeCreated":"2024-09-23T22:23:23.405Z","timeUpdated":"2024-09-23T22:23:23.405Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.aaaaaaaaddo4kvptrfdq4heoossqpkpd44b462fnwfehyqnas6eripajv3ya","name":"ocid1.dnsview.oc1.iad.aaaaaaaaddo4kvptrfdq4heoossqpkpd44b462fnwfehyqnas6eripajv3ya","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.aaaaaaaaddo4kvptrfdq4heoossqpkpd44b462fnwfehyqnas6eripajv3ya","displayName":"VCN-multicloudnetworklink20240621150702","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.aaaaaaaaddo4kvptrfdq4heoossqpkpd44b462fnwfehyqnas6eripajv3ya","timeCreated":"2024-06-21T15:07:31.669Z","timeUpdated":"2024-09-16T21:00:03.024Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/eastus/dnsPrivateViews/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyawfpht37d6ohe7v3auprkpnpeqmfop2sqnfvev2kutzga","name":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyawfpht37d6ohe7v3auprkpnpeqmfop2sqnfvev2kutzga","type":"Oracle.Database/Locations/dnsPrivateViews","properties":{"ocid":"ocid1.dnsview.oc1.iad.amaaaaaa2edokzyawfpht37d6ohe7v3auprkpnpeqmfop2sqnfvev2kutzga","displayName":"yumfei0607Test","isProtected":false,"provisioningState":"Active","lifecycleState":"Active","self":"https://dns.us-ashburn-1.oci.oraclecloud.com/20180115/views/ocid1.dnsview.oc1.iad.amaaaaaa2edokzyawfpht37d6ohe7v3auprkpnpeqmfop2sqnfvev2kutzga","timeCreated":"2024-06-07T20:01:42.280Z","timeUpdated":"2024-06-07T20:01:42.280Z"}}]}' headers: cache-control: - no-cache content-length: - - '40600' + - '8037' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 13:07:00 GMT + - Fri, 05 Dec 2025 04:34:44 GMT expires: - '-1' opc-request-id: - - /A24BA1F65BD56D4BFA6B202C7EEEE88E/E2B54B3BE7F62BB8D8E896B791B79E8A + - oci-0B2C9755E70D8E7-202512050434/4188FDE678E53118E360326949414483/FECB8E43EF6FA8327527A52F5783894E pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/2f9eaeee-6f3d-44b5-bba7-aa8ca7074329 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1AEF2EF83E7F461E88D919EF325BCC2F Ref B: AMS231020615039 Ref C: 2024-07-05T13:06:59Z' + - 'Ref A: A90BC81A9D824261B9C2CF7318B7305C Ref B: BY1AA1072320036 Ref C: 2025-12-05T04:34:42Z' status: code: 200 message: OK @@ -353,20 +381,20 @@ interactions: body: '{"location": "eastus", "properties": {"adminPassword": "TestPass#2024#", "characterSet": "AL32UTF8", "computeCount": 2.0, "computeModel": "ECPU", "dataBaseType": "Regular", "dataStorageSizeInGbs": 32, "dbVersion": "19c", "dbWorkload": "OLTP", - "displayName": "ADBScli1", "licenseModel": "BringYourOwnLicense", "ncharacterSet": - "AL16UTF16", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet/subnets/SDKSubnet", - "vnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet"}}' + "displayName": "ADBScli1Mih", "licenseModel": "BringYourOwnLicense", "ncharacterSet": + "AL16UTF16", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated", + "vnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet"}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database autonomous-database create Connection: - keep-alive Content-Length: - - '643' + - '666' Content-Type: - application/json ParameterSetName: @@ -375,37 +403,43 @@ interactions: --db-workload --admin-password --db-version --character-set --ncharacter-set --vnet-id --regular --no-wait User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/autonomousDatabases/ADBScli1?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/autonomousDatabases/ADBScliTest?api-version=2025-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/autonomousDatabases/ADBScli1","name":"ADBScli1","type":"oracle.database/autonomousdatabases","location":"eastus","systemData":{"createdBy":"ramakrishnan.vilathur.sriniva@oracle.com","createdByType":"User","createdAt":"2024-07-05T13:07:02.3154421Z","lastModifiedBy":"ramakrishnan.vilathur.sriniva@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-05T13:07:02.3154421Z"},"properties":{"dataBaseType":"Regular","actualUsedDataStorageSizeInTbs":null,"allocatedStorageSizeInTbs":null,"whitelistedIps":null,"apexDetails":null,"autonomousDatabaseId":null,"autonomousMaintenanceScheduleType":null,"availableUpgradeVersions":null,"characterSet":"AL32UTF8","computeCount":2.0,"computeModel":"ECPU","connectionStrings":null,"connectionUrls":null,"cpuCoreCount":null,"customerContacts":null,"dataSafeStatus":null,"dataStorageSizeInGbs":32,"dataStorageSizeInTbs":null,"databaseEdition":null,"dbVersion":"19c","dbWorkload":"OLTP","displayName":"ADBScli1","inMemoryAreaInGbs":null,"nextLongTermBackupTimeStamp":null,"longTermBackupSchedule":null,"isAutoScalingEnabled":null,"isAutoScalingForStorageEnabled":null,"peerDbIds":null,"isLocalDataGuardEnabled":null,"isRemoteDataGuardEnabled":null,"localDisasterRecoveryType":null,"localStandbyDb":null,"failedDataRecoveryInSeconds":null,"isMtlsConnectionRequired":null,"isPreview":null,"licenseModel":"BringYourOwnLicense","lifecycleDetails":null,"provisioningState":"Accepted","localAdgAutoFailoverMaxDataLossLimit":null,"memoryPerOracleComputeUnitInGbs":null,"ncharacterSet":"AL16UTF16","ociUrl":null,"openMode":null,"operationsInsightsStatus":null,"permissionLevel":null,"privateEndpoint":null,"privateEndpointIp":null,"privateEndpointLabel":null,"provisionableCpus":null,"lifecycleState":"Provisioning","role":null,"scheduledOperations":null,"serviceConsoleUrl":null,"sqlWebDeveloperUrl":null,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet/subnets/SDKSubnet","supportedRegionsToCloneTo":null,"timeCreated":null,"timeDataGuardRoleChanged":null,"timeDeletionOfFreeAutonomousDatabase":null,"timeLocalDataGuardEnabled":null,"timeMaintenanceBegin":null,"timeMaintenanceEnd":null,"timeOfLastFailover":null,"timeOfLastRefresh":null,"timeOfLastRefreshPoint":null,"timeOfLastSwitchover":null,"timeReclamationOfFreeAutonomousDatabase":null,"usedDataStorageSizeInGbs":null,"usedDataStorageSizeInTbs":null,"vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet","ocid":null,"backupRetentionPeriodInDays":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/autonomousDatabases/ADBScliTest","name":"ADBScliTest","type":"oracle.database/autonomousdatabases","location":"eastus","systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-12-05T04:34:47.1320893Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-05T04:34:47.1320893Z"},"properties":{"dataBaseType":"Regular","actualUsedDataStorageSizeInTbs":null,"allocatedStorageSizeInTbs":null,"whitelistedIps":null,"apexDetails":null,"autonomousDatabaseId":null,"autonomousMaintenanceScheduleType":null,"availableUpgradeVersions":null,"characterSet":"AL32UTF8","computeCount":2.0,"computeModel":"ECPU","connectionStrings":null,"connectionUrls":null,"cpuCoreCount":null,"customerContacts":null,"dataSafeStatus":null,"dataStorageSizeInGbs":32,"dataStorageSizeInTbs":null,"databaseEdition":null,"dbVersion":"19c","dbWorkload":"OLTP","displayName":"ADBScli1Mih","inMemoryAreaInGbs":null,"nextLongTermBackupTimeStamp":null,"longTermBackupSchedule":null,"isAutoScalingEnabled":null,"isAutoScalingForStorageEnabled":null,"peerDbIds":null,"isLocalDataGuardEnabled":null,"isRemoteDataGuardEnabled":null,"localDisasterRecoveryType":null,"timeDisasterRecoveryRoleChanged":null,"remoteDisasterRecoveryConfiguration":null,"localStandbyDb":null,"failedDataRecoveryInSeconds":null,"isMtlsConnectionRequired":null,"isPreview":null,"licenseModel":"BringYourOwnLicense","lifecycleDetails":null,"provisioningState":"Accepted","localAdgAutoFailoverMaxDataLossLimit":null,"memoryPerOracleComputeUnitInGbs":null,"ncharacterSet":"AL16UTF16","ociUrl":null,"openMode":null,"operationsInsightsStatus":null,"permissionLevel":null,"privateEndpoint":null,"privateEndpointIp":null,"privateEndpointLabel":null,"provisionableCpus":null,"lifecycleState":"Provisioning","role":null,"scheduledOperationsList":null,"serviceConsoleUrl":null,"sqlWebDeveloperUrl":null,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated","supportedRegionsToCloneTo":null,"timeCreated":null,"timeDataGuardRoleChanged":null,"timeDeletionOfFreeAutonomousDatabase":null,"timeLocalDataGuardEnabled":null,"timeMaintenanceBegin":null,"timeMaintenanceEnd":null,"timeOfLastFailover":null,"timeOfLastRefresh":null,"timeOfLastRefreshPoint":null,"timeOfLastSwitchover":null,"timeReclamationOfFreeAutonomousDatabase":null,"usedDataStorageSizeInGbs":null,"usedDataStorageSizeInTbs":null,"vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet","ocid":null,"backupRetentionPeriodInDays":null}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/5496c8de-6cc9-411b-8de8-bba4d7d562d5*CAE86B3DDB2DC19269EAE560873D7FB547F8A1A808E10281FD1691F2FADE4F1D?api-version=2023-09-01&t=638557816261748981&c=MIIHhzCCBm-gAwIBAgITHgTGa31qslIh2UBmkAAABMZrfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjIxMDkxMjA1WhcNMjUwNjE2MDkxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALn834uDqgCOixiO8GRfVCjdOSupM2mspf7A4DxVqhAZOL8zaMDjFkxtx33wm6cpNnNPdJtVugOQpatgZbDHp53nm17ZRJmyTZu_5z53RacbNkdHn-1M5XSVR5Gog-YVsO3all2PlVdOg1eoSOD8ITK-TstsekGcOi-2bqgxdMy4G9xiwN1uqztQs-uuOT2M0DGCBvuLm5PRftyk3A6tocQSz4e0JBhb08J-V5He6t4zq4AM6kwBE0iJR7dJEfSfDddwSZIAz6h35rU5QUFAFgtNoGNOoeq-2PAvP1ID_2_k6czxhuVUXChGs9wtj36-SmcXHwK4Di51_jZCza6EA6ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiHY0qE8dJDl1-fBkPIyhmBEoAXDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAMkBnjIQiIoLSg9zciJxXH1ylOKB4FJPrPFj52jXEgVo32cghlQhqYin74eWIrBybErBVKH1YhQnwolzlfQ2ghTU7DmQyx9TLA44sJzrc0cDQQvDaKmmJckNZtPzpYqro72RpHWATCjOWVE22NKpCRrNQKotMUbDebsE_RuzsGqcGKqaLGbwC6LP0aiK1KrOKORCDvOCtJic28Xn5HGJmYZ6U6xh6ClEm4t8nBn4CcVROGsAZ9wINYtuPZwHvI2zTH7u7kNlNWT935tT9aEKf_vyg22rc23EdwsVKQZSO42x8QVwYSwuL-2AF2Zh5SFZp1lvK5TIyNgVewww93mkdE&s=MNr8-iy03LwuVmrYtbiCqDHq9BQYj7RDtGIl4V88rCkZ9j9nWxaIL0ncpXUEgDRtpEykpOqT2ySP5XbuFCd71kkQ0N79Tjbhhbl0LujAtFUD5dgLeCU2Ou_SmDhCiqqfxMq2ZP9Z127kMVm-87O6WAwFjX1yx7E1fD_FAKgrgLlE-aJ_wgS6AtaJgUEyCw9gD6A9rALu5mD1EGvZzk0u1qnvg-QEDHePMQjPmlBYVfd1Sf3ZzMDb2UWgkJWDQvgk1g42mWgIULLmkBeD-Fe3UzFvwZDdxbm0lo0OayCfPTWfusNkrtOmoswRVkv5bJ4zzvwB6xViUdq7tVDpF-y-Fw&h=GfFEZ6QUd5yEE-10igpc2ihfYtiySuT_-M_R52vbHEA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/3189ae19-2cb8-4940-8dec-71779b90f13c*A7882A54825E7354CC586F4765399DFA8B7AC52C606D46698DDCCCFCFC7B89F5?api-version=2025-09-01&t=639005060923039114&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=WxSbqIsZLAAmLbK18p4-4jFXvx6z8aiLES0Fa5ov8Z9MpswSPwChcJZpbTPKd2YbsSszVKJkqyNDpUZotkgiu4iakgEx_Hlj7SYFi0zcOvR3i4NKQKqOFo-LimFYLaeb4B8ahB40hLjF1W7D_yPiFUEjesPfgXBovYOmAlXNn1F0AHFHCWnctMHbgrR6wFcU4_aItd3fw6OVcNcHea0UuqVSKCFV3aXQPGuxRf0lkHzLD5Ju3aNUpEoSs_5UzeSueLF2IApqSZ5RJMBDP8tXzkE3kws6k3ft6bEoQU8h03zHKkhguTMjfvhpm1vrSC0j83QnGazUMJrZeNLw4XFTdQ&h=1IWLvOvn2E1E_YKhBRw3cBHsawk215cKOnaIjtDPuh4 cache-control: - no-cache content-length: - - '2736' + - '2826' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 13:07:05 GMT + - Fri, 05 Dec 2025 04:34:51 GMT etag: - - '"c3005293-0000-0100-0000-6687effa0000"' + - '"f205c06f-0000-0100-0000-693260ec0000"' expires: - '-1' opc-request-id: - - /3FB0A624158926D9EE21C7D797729BC1/08D9D5E50E9A592D8E84BA99C05E817A + - oci-BAA1E8C35B56602-202512050434/D14FB059FAE84789E760326949414438/67B97025D870D9F3E5AB9819AF367DD5 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-async-operation-timeout: + - PT4H + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/eastus/5f2432c6-32c5-4b73-9aa4-dbb9402e8b59 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-writes: @@ -413,7 +447,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 74C8C7F0CF36477D8A2501404A4D05D0 Ref B: AMS231032607009 Ref C: 2024-07-05T13:07:01Z' + - 'Ref A: F946935C81ED4CD1A2B50D36ADD4064B Ref B: BY1AA1072315029 Ref C: 2025-12-05T04:34:45Z' status: code: 201 message: Created @@ -423,7 +457,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database autonomous-database delete Connection: @@ -433,31 +467,19 @@ interactions: ParameterSetName: - --autonomousdatabasename --resource-group --yes --no-wait User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/autonomousDatabases/ADBScli?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/autonomousDatabases/ADBScli?api-version=2025-09-01 response: body: - string: 'null' + string: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/33007421-77c0-4032-94dc-237a5af78bcb*90D51DA63B426F7B0F1A14756AFC2D88AF4CDC3B2D1D4F46BC90136F7BA3D6D7?api-version=2023-09-01&t=638557816278220049&c=MIIHhzCCBm-gAwIBAgITHgTGa31qslIh2UBmkAAABMZrfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjIxMDkxMjA1WhcNMjUwNjE2MDkxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALn834uDqgCOixiO8GRfVCjdOSupM2mspf7A4DxVqhAZOL8zaMDjFkxtx33wm6cpNnNPdJtVugOQpatgZbDHp53nm17ZRJmyTZu_5z53RacbNkdHn-1M5XSVR5Gog-YVsO3all2PlVdOg1eoSOD8ITK-TstsekGcOi-2bqgxdMy4G9xiwN1uqztQs-uuOT2M0DGCBvuLm5PRftyk3A6tocQSz4e0JBhb08J-V5He6t4zq4AM6kwBE0iJR7dJEfSfDddwSZIAz6h35rU5QUFAFgtNoGNOoeq-2PAvP1ID_2_k6czxhuVUXChGs9wtj36-SmcXHwK4Di51_jZCza6EA6ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiHY0qE8dJDl1-fBkPIyhmBEoAXDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAMkBnjIQiIoLSg9zciJxXH1ylOKB4FJPrPFj52jXEgVo32cghlQhqYin74eWIrBybErBVKH1YhQnwolzlfQ2ghTU7DmQyx9TLA44sJzrc0cDQQvDaKmmJckNZtPzpYqro72RpHWATCjOWVE22NKpCRrNQKotMUbDebsE_RuzsGqcGKqaLGbwC6LP0aiK1KrOKORCDvOCtJic28Xn5HGJmYZ6U6xh6ClEm4t8nBn4CcVROGsAZ9wINYtuPZwHvI2zTH7u7kNlNWT935tT9aEKf_vyg22rc23EdwsVKQZSO42x8QVwYSwuL-2AF2Zh5SFZp1lvK5TIyNgVewww93mkdE&s=Lhn5Hbp07h37NT4rX_TnJrK98tLq25TxlFeO4DlWt-zmh-7oBXqqobK-0kvMvkAcB3EZm27tiJMKMp_hCMEbH8Xx62n2sG4HVY3iJpoDl-EgXUcb4qCRrtNXpbLD2gxyQ_4wouNQLx20jpzApfSfjVjxLmxKfQUQHAoZKNoUHscXLmSyZWCPXW_F6Nz4pbEOaiertKW6HPFLAB7jkVu8NZkqvQ6QiAp90weG_A9eSDTL19hJjTY_miZvuF-wZd0sIyWDrbl4CLYmsHxXnW1HxVZyABPYRXPuQB0F-kv28Fdb5Ar1aMRQ_FPDQpttfzqdDAwjdItn3kr_7rbhcGwoOg&h=gDHgjAKSThkg2SkYFy7yOlCND2gIM6KiLK-_MICzS1Q cache-control: - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 13:07:07 GMT - etag: - - '"c3007a93-0000-0100-0000-6687effb0000"' + - Fri, 05 Dec 2025 04:34:52 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/33007421-77c0-4032-94dc-237a5af78bcb*90D51DA63B426F7B0F1A14756AFC2D88AF4CDC3B2D1D4F46BC90136F7BA3D6D7?api-version=2023-09-01&t=638557816278220049&c=MIIHhzCCBm-gAwIBAgITHgTGa31qslIh2UBmkAAABMZrfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjIxMDkxMjA1WhcNMjUwNjE2MDkxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALn834uDqgCOixiO8GRfVCjdOSupM2mspf7A4DxVqhAZOL8zaMDjFkxtx33wm6cpNnNPdJtVugOQpatgZbDHp53nm17ZRJmyTZu_5z53RacbNkdHn-1M5XSVR5Gog-YVsO3all2PlVdOg1eoSOD8ITK-TstsekGcOi-2bqgxdMy4G9xiwN1uqztQs-uuOT2M0DGCBvuLm5PRftyk3A6tocQSz4e0JBhb08J-V5He6t4zq4AM6kwBE0iJR7dJEfSfDddwSZIAz6h35rU5QUFAFgtNoGNOoeq-2PAvP1ID_2_k6czxhuVUXChGs9wtj36-SmcXHwK4Di51_jZCza6EA6ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiHY0qE8dJDl1-fBkPIyhmBEoAXDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAMkBnjIQiIoLSg9zciJxXH1ylOKB4FJPrPFj52jXEgVo32cghlQhqYin74eWIrBybErBVKH1YhQnwolzlfQ2ghTU7DmQyx9TLA44sJzrc0cDQQvDaKmmJckNZtPzpYqro72RpHWATCjOWVE22NKpCRrNQKotMUbDebsE_RuzsGqcGKqaLGbwC6LP0aiK1KrOKORCDvOCtJic28Xn5HGJmYZ6U6xh6ClEm4t8nBn4CcVROGsAZ9wINYtuPZwHvI2zTH7u7kNlNWT935tT9aEKf_vyg22rc23EdwsVKQZSO42x8QVwYSwuL-2AF2Zh5SFZp1lvK5TIyNgVewww93mkdE&s=Lhn5Hbp07h37NT4rX_TnJrK98tLq25TxlFeO4DlWt-zmh-7oBXqqobK-0kvMvkAcB3EZm27tiJMKMp_hCMEbH8Xx62n2sG4HVY3iJpoDl-EgXUcb4qCRrtNXpbLD2gxyQ_4wouNQLx20jpzApfSfjVjxLmxKfQUQHAoZKNoUHscXLmSyZWCPXW_F6Nz4pbEOaiertKW6HPFLAB7jkVu8NZkqvQ6QiAp90weG_A9eSDTL19hJjTY_miZvuF-wZd0sIyWDrbl4CLYmsHxXnW1HxVZyABPYRXPuQB0F-kv28Fdb5Ar1aMRQ_FPDQpttfzqdDAwjdItn3kr_7rbhcGwoOg&h=gDHgjAKSThkg2SkYFy7yOlCND2gIM6KiLK-_MICzS1Q - opc-request-id: - - /6BD036454A993546DCFF9ED92CACC0C2/A3C1FE4291DE9B7ECCE460AF49ADC7CF pragma: - no-cache strict-transport-security: @@ -466,15 +488,13 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-providerhub-traffic: - - 'True' x-ms-ratelimit-remaining-subscription-deletes: - '199' x-ms-ratelimit-remaining-subscription-global-deletes: - '2999' x-msedge-ref: - - 'Ref A: 6F7ED747A5704C86A6736BB21B6C55AB Ref B: AMS231032608049 Ref C: 2024-07-05T13:07:06Z' + - 'Ref A: 3198341B3C6543B5836FB5AE6B5FBF4C Ref B: BY1AA1072319054 Ref C: 2025-12-05T04:34:53Z' status: - code: 202 - message: Accepted + code: 204 + message: No Content version: 1 diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_adbsget.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_adbsget.yaml index 96206513b43..6a61654d155 100644 --- a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_adbsget.yaml +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_adbsget.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database autonomous-database show Connection: @@ -13,30 +13,34 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eamonterraformtest500/providers/Oracle.Database/autonomousDatabases/eamonterraformtest501?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/autonomousDatabases/ADBScli1?api-version=2025-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eamonterraformtest500/providers/Oracle.Database/autonomousDatabases/eamonterraformtest501","name":"eamonterraformtest501","type":"oracle.database/autonomousdatabases","location":"eastus","tags":{},"systemData":{"createdBy":"eamon.el-homsi@oracle.com","createdByType":"User","createdAt":"2024-04-17T19:55:06.3169995Z","lastModifiedBy":"857ad006-4380-4712-ba4c-22f7c64d84e7","lastModifiedByType":"Application","lastModifiedAt":"2024-04-17T20:48:27.1444348Z"},"properties":{"dataBaseType":"Regular","autonomousMaintenanceScheduleType":"Regular","characterSet":"AL32UTF8","computeCount":2,"computeModel":"ECPU","connectionStrings":{"allConnectionStrings":{},"high":"adb.us-ashburn-1.oraclecloud.com:1522/g65795d1a5ce1e9_eamonterraformtest501_high.adb.oraclecloud.com","low":"adb.us-ashburn-1.oraclecloud.com:1522/g65795d1a5ce1e9_eamonterraformtest501_low.adb.oraclecloud.com","medium":"adb.us-ashburn-1.oraclecloud.com:1522/g65795d1a5ce1e9_eamonterraformtest501_medium.adb.oraclecloud.com","profiles":[{"consumerGroup":"High","displayName":"eamonterraformtest501_high","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_high.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Low","displayName":"eamonterraformtest501_low","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_low.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Medium","displayName":"eamonterraformtest501_medium","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_medium.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"High","displayName":"eamonterraformtest501_high","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_high.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Low","displayName":"eamonterraformtest501_low","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_low.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Medium","displayName":"eamonterraformtest501_medium","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_medium.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"}]},"connectionUrls":{"apexUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/ords/apex","databaseTransformsUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/odi/","graphStudioUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/graphstudio/","machineLearningNotebookUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/oml/","ordsUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/ords/","sqlDevWebUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/ords/sql-developer"},"dataStorageSizeInGbs":1024,"dataStorageSizeInTbs":1,"dbVersion":"19c","dbWorkload":"DW","displayName":"eamonterraformtest501","isAutoScalingEnabled":true,"isAutoScalingForStorageEnabled":false,"isLocalDataGuardEnabled":false,"isRemoteDataGuardEnabled":false,"localDisasterRecoveryType":"BackupBased","localStandbyDb":{"lifecycleState":"Standby"},"isMtlsConnectionRequired":false,"licenseModel":"LicenseIncluded","provisioningState":"Failed","ncharacterSet":"AL16UTF16","ociUrl":"https://cloud.oracle.com/db/adbs/ocid1.autonomousdatabase.oc1.iad.anuwcljtnirvylqa6ad253hddyjdmflhjyjxs7ysao2l54lpe2qdgmq6bnja?region=us-ashburn-1&tenant=orpsandbox3&compartmentId=ocid1.compartment.oc1..aaaaaaaazcet2jt2uowjtgxsae5uositfy2thngqgokwdifyzmyygdpckeua","openMode":"ReadWrite","permissionLevel":"Restricted","privateEndpoint":"opkzo7sj.adb.us-ashburn-1.oraclecloud.com","privateEndpointIp":"10.0.1.29","privateEndpointLabel":"opkzo7sj","lifecycleState":"Available","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eamonterraformtest500/providers/Microsoft.Network/virtualNetworks/eamonterraformtest501_vnet/subnets/delegated","timeCreated":"2024-04-17T20:04:27.412Z","timeLocalDataGuardEnabled":"Wed - Apr 17 20:04:46 UTC 2024","timeMaintenanceBegin":"2024-04-21T12:00:00Z","timeMaintenanceEnd":"2024-04-21T14:00:00Z","vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eamonterraformtest500/providers/Microsoft.Network/virtualNetworks/eamonterraformtest501_vnet","ocid":"ocid1.autonomousdatabase.oc1.iad.anuwcljtnirvylqa6ad253hddyjdmflhjyjxs7ysao2l54lpe2qdgmq6bnja","backupRetentionPeriodInDays":60,"actualUsedDataStorageSizeInTbs":1,"usedDataStorageSizeInTbs":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/autonomousDatabases/ADBScli1","name":"ADBScli1","type":"oracle.database/autonomousdatabases","location":"eastus","systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-11-20T15:52:18.6199093Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-12-04T19:31:05.3315662Z"},"properties":{"dataBaseType":"Regular","actualUsedDataStorageSizeInTbs":0.007189959287643433,"allocatedStorageSizeInTbs":0.0087890625,"autonomousMaintenanceScheduleType":"Regular","characterSet":"AL32UTF8","computeCount":2,"computeModel":"ECPU","connectionStrings":{"allConnectionStrings":{},"high":"adb.us-ashburn-1.oraclecloud.com:1522/gb9a8851d81be03_adbscli1_high.adb.oraclecloud.com","low":"adb.us-ashburn-1.oraclecloud.com:1522/gb9a8851d81be03_adbscli1_low.adb.oraclecloud.com","medium":"adb.us-ashburn-1.oraclecloud.com:1522/gb9a8851d81be03_adbscli1_medium.adb.oraclecloud.com","profiles":[{"consumerGroup":"High","displayName":"adbscli1_high","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= + (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=kgdksljf.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=gb9a8851d81be03_adbscli1_high.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Low","displayName":"adbscli1_low","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= + (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=kgdksljf.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=gb9a8851d81be03_adbscli1_low.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Medium","displayName":"adbscli1_medium","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= + (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=kgdksljf.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=gb9a8851d81be03_adbscli1_medium.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Tp","displayName":"adbscli1_tp","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= + (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=kgdksljf.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=gb9a8851d81be03_adbscli1_tp.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Tpurgent","displayName":"adbscli1_tpurgent","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= + (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=kgdksljf.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=gb9a8851d81be03_adbscli1_tpurgent.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"High","displayName":"adbscli1_high","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= + (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=kgdksljf.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=gb9a8851d81be03_adbscli1_high.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Low","displayName":"adbscli1_low","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= + (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=kgdksljf.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=gb9a8851d81be03_adbscli1_low.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Medium","displayName":"adbscli1_medium","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= + (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=kgdksljf.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=gb9a8851d81be03_adbscli1_medium.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Tp","displayName":"adbscli1_tp","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= + (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=kgdksljf.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=gb9a8851d81be03_adbscli1_tp.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Tpurgent","displayName":"adbscli1_tpurgent","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= + (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=kgdksljf.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=gb9a8851d81be03_adbscli1_tpurgent.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"}]},"connectionUrls":{"apexUrl":"https://kgdksljf.adb.us-ashburn-1.oraclecloudapps.com/ords/apex","databaseTransformsUrl":"https://kgdksljf.adb.us-ashburn-1.oraclecloudapps.com/odi/","graphStudioUrl":"https://kgdksljf.adb.us-ashburn-1.oraclecloudapps.com/graphstudio/","machineLearningNotebookUrl":"https://kgdksljf.adb.us-ashburn-1.oraclecloudapps.com/oml/","ordsUrl":"https://kgdksljf.adb.us-ashburn-1.oraclecloudapps.com/ords/","sqlDevWebUrl":"https://kgdksljf.adb.us-ashburn-1.oraclecloudapps.com/ords/sql-developer"},"dataStorageSizeInGbs":32,"databaseEdition":"EnterpriseEdition","dbVersion":"19c","dbWorkload":"OLTP","displayName":"ADBScli1","isAutoScalingEnabled":false,"isAutoScalingForStorageEnabled":false,"peerDbIds":[],"isLocalDataGuardEnabled":false,"isRemoteDataGuardEnabled":false,"localDisasterRecoveryType":"BackupBased","localStandbyDb":{"lifecycleState":"Standby"},"isMtlsConnectionRequired":false,"licenseModel":"BringYourOwnLicense","provisioningState":"Succeeded","ncharacterSet":"AL16UTF16","ociUrl":"https://cloud.oracle.com/db/adbs/ocid1.autonomousdatabase.oc1.iad.anuwcljs2edokzyaymqnbmf6sdvempht5uvdem2sz7kbxmiwudn5rogrhjya?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","openMode":"ReadWrite","privateEndpoint":"kgdksljf.adb.us-ashburn-1.oraclecloud.com","privateEndpointIp":"10.0.1.236","privateEndpointLabel":"kgdksljf","lifecycleState":"Available","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated","supportedRegionsToCloneTo":["westus","canadacentral","brazilsouth","centralus"],"timeCreated":"2025-11-20T15:56:23.39Z","timeLocalDataGuardEnabled":"Thu + Nov 20 15:56:39 UTC 2025","timeMaintenanceBegin":"2025-12-07T09:00:00Z","timeMaintenanceEnd":"2025-12-07T11:00:00Z","vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet","ocid":"ocid1.autonomousdatabase.oc1.iad.anuwcljs2edokzyaymqnbmf6sdvempht5uvdem2sz7kbxmiwudn5rogrhjya","backupRetentionPeriodInDays":60}}' headers: cache-control: - no-cache content-length: - - '5995' + - '7520' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Jul 2024 15:30:22 GMT + - Thu, 04 Dec 2025 19:48:21 GMT etag: - - '"730330d6-0000-0100-0000-662049a50000"' + - '"d705d50a-0000-0100-0000-6931e1790000"' expires: - '-1' pragma: @@ -52,62 +56,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6224DC4F381E413081FC3F6BF7862A1F Ref B: AMS231020615047 Ref C: 2024-07-09T15:30:22Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - oracle-database autonomous-database list - Connection: - - keep-alive - ParameterSetName: - - --resource-group - User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eamonterraformtest500/providers/Oracle.Database/autonomousDatabases?api-version=2023-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eamonterraformtest500/providers/Oracle.Database/autonomousDatabases/eamonterraformtest501","name":"eamonterraformtest501","type":"oracle.database/autonomousdatabases","location":"eastus","tags":{},"systemData":{"createdBy":"eamon.el-homsi@oracle.com","createdByType":"User","createdAt":"2024-04-17T19:55:06.3169995Z","lastModifiedBy":"857ad006-4380-4712-ba4c-22f7c64d84e7","lastModifiedByType":"Application","lastModifiedAt":"2024-04-17T20:48:27.1444348Z"},"properties":{"dataBaseType":"Regular","autonomousMaintenanceScheduleType":"Regular","characterSet":"AL32UTF8","computeCount":2,"computeModel":"ECPU","connectionStrings":{"allConnectionStrings":{},"high":"adb.us-ashburn-1.oraclecloud.com:1522/g65795d1a5ce1e9_eamonterraformtest501_high.adb.oraclecloud.com","low":"adb.us-ashburn-1.oraclecloud.com:1522/g65795d1a5ce1e9_eamonterraformtest501_low.adb.oraclecloud.com","medium":"adb.us-ashburn-1.oraclecloud.com:1522/g65795d1a5ce1e9_eamonterraformtest501_medium.adb.oraclecloud.com","profiles":[{"consumerGroup":"High","displayName":"eamonterraformtest501_high","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_high.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Low","displayName":"eamonterraformtest501_low","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_low.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Medium","displayName":"eamonterraformtest501_medium","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Server","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1521)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_medium.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"High","displayName":"eamonterraformtest501_high","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_high.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Low","displayName":"eamonterraformtest501_low","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_low.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"},{"consumerGroup":"Medium","displayName":"eamonterraformtest501_medium","hostFormat":"Fqdn","protocol":"TCPS","sessionMode":"Direct","syntaxFormat":"Long","tlsAuthentication":"Mutual","value":"(description= - (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=opkzo7sj.adb.us-ashburn-1.oraclecloud.com))(connect_data=(service_name=g65795d1a5ce1e9_eamonterraformtest501_medium.adb.oraclecloud.com))(security=(ssl_server_dn_match=no)))"}]},"connectionUrls":{"apexUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/ords/apex","databaseTransformsUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/odi/","graphStudioUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/graphstudio/","machineLearningNotebookUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/oml/","ordsUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/ords/","sqlDevWebUrl":"https://opkzo7sj.adb.us-ashburn-1.oraclecloudapps.com/ords/sql-developer"},"dataStorageSizeInGbs":1024,"dataStorageSizeInTbs":1,"dbVersion":"19c","dbWorkload":"DW","displayName":"eamonterraformtest501","isAutoScalingEnabled":true,"isAutoScalingForStorageEnabled":false,"isLocalDataGuardEnabled":false,"isRemoteDataGuardEnabled":false,"localDisasterRecoveryType":"BackupBased","localStandbyDb":{"lifecycleState":"Standby"},"isMtlsConnectionRequired":false,"licenseModel":"LicenseIncluded","provisioningState":"Failed","ncharacterSet":"AL16UTF16","ociUrl":"https://cloud.oracle.com/db/adbs/ocid1.autonomousdatabase.oc1.iad.anuwcljtnirvylqa6ad253hddyjdmflhjyjxs7ysao2l54lpe2qdgmq6bnja?region=us-ashburn-1&tenant=orpsandbox3&compartmentId=ocid1.compartment.oc1..aaaaaaaazcet2jt2uowjtgxsae5uositfy2thngqgokwdifyzmyygdpckeua","openMode":"ReadWrite","permissionLevel":"Restricted","privateEndpoint":"opkzo7sj.adb.us-ashburn-1.oraclecloud.com","privateEndpointIp":"10.0.1.29","privateEndpointLabel":"opkzo7sj","lifecycleState":"Available","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eamonterraformtest500/providers/Microsoft.Network/virtualNetworks/eamonterraformtest501_vnet/subnets/delegated","timeCreated":"2024-04-17T20:04:27.412Z","timeLocalDataGuardEnabled":"Wed - Apr 17 20:04:46 UTC 2024","timeMaintenanceBegin":"2024-04-21T12:00:00Z","timeMaintenanceEnd":"2024-04-21T14:00:00Z","vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eamonterraformtest500/providers/Microsoft.Network/virtualNetworks/eamonterraformtest501_vnet","ocid":"ocid1.autonomousdatabase.oc1.iad.anuwcljtnirvylqa6ad253hddyjdmflhjyjxs7ysao2l54lpe2qdgmq6bnja","backupRetentionPeriodInDays":60,"actualUsedDataStorageSizeInTbs":1,"usedDataStorageSizeInTbs":1}}]}' - headers: - cache-control: - - no-cache - content-length: - - '6007' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 09 Jul 2024 15:30:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: B1BCC990DF424A3E85298416C966E8B8 Ref B: AMS231020512037 Ref C: 2024-07-09T15:30:22Z' + - 'Ref A: 5001301F576B40A480C40F1244064C2D Ref B: SJC211051204017 Ref C: 2025-12-04T19:48:20Z' status: code: 200 message: OK diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_exadata.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_exadata.yaml index e202865478a..77d9da9e9d7 100644 --- a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_exadata.yaml +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_exadata.yaml @@ -1,55 +1,62 @@ interactions: - request: body: '{"location": "eastus", "properties": {"computeCount": 2, "displayName": - "OFake_Infra_AzCLI", "shape": "Exadata.X9M", "storageCount": 3}, "zones": ["2"]}' + "OFake_Infra_AzCLINe", "shape": "Exadata.X9M", "storageCount": 3}, "zones": + ["2"]}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database cloud-exadata-infrastructure create Connection: - keep-alive Content-Length: - - '152' + - '154' Content-Type: - application/json ParameterSetName: - --resource-group --name --zones --compute-count --display-name --shape --location --storage-count --no-wait User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_odba_rg000001/providers/Oracle.Database/cloudExadataInfrastructures/OFake_Infra_AzCLI?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testAzureCLi/providers/Oracle.Database/cloudExadataInfrastructures/OFake_Infra_AzCLINe?api-version=2025-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_odba_rg000001/providers/Oracle.Database/cloudExadataInfrastructures/OFake_Infra_AzCLI","name":"OFake_Infra_AzCLI","type":"oracle.database/cloudexadatainfrastructures","location":"eastus","zones":["2"],"systemData":{"createdBy":"ramakrishnan.vilathur.sriniva@oracle.com","createdByType":"User","createdAt":"2024-07-05T10:29:23.9562785Z","lastModifiedBy":"ramakrishnan.vilathur.sriniva@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-05T10:29:23.9562785Z"},"properties":{"ocid":null,"computeCount":2,"storageCount":3,"totalStorageSizeInGbs":null,"availableStorageSizeInGbs":null,"timeCreated":null,"lifecycleDetails":null,"maintenanceWindow":null,"estimatedPatchingTime":null,"customerContacts":null,"provisioningState":"Accepted","lifecycleState":null,"shape":"Exadata.X9M","ociUrl":null,"displayName":"OFake_Infra_AzCLI","cpuCount":null,"maxCpuCount":null,"memorySizeInGbs":null,"maxMemoryInGbs":null,"dbNodeStorageSizeInGbs":null,"maxDbNodeStorageSizeInGbs":null,"dataStorageSizeInTbs":null,"maxDataStorageInTbs":null,"dbServerVersion":null,"activatedStorageCount":null,"additionalStorageCount":null,"lastMaintenanceRunId":null,"nextMaintenanceRunId":null,"monthlyDbServerVersion":null,"monthlyStorageServerVersion":null,"storageServerVersion":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testAzureCLi/providers/Oracle.Database/cloudExadataInfrastructures/OFake_Infra_AzCLINe","name":"OFake_Infra_AzCLINe","type":"oracle.database/cloudexadatainfrastructures","location":"eastus","zones":["2"],"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-12-05T04:38:40.9160147Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-05T04:38:40.9160147Z"},"properties":{"definedFileSystemConfiguration":null,"ocid":null,"computeCount":2,"storageCount":3,"totalStorageSizeInGbs":null,"availableStorageSizeInGbs":null,"timeCreated":null,"lifecycleDetails":null,"maintenanceWindow":null,"estimatedPatchingTime":null,"customerContacts":null,"provisioningState":"Accepted","lifecycleState":null,"shape":"Exadata.X9M","ociUrl":null,"displayName":"OFake_Infra_AzCLINe","cpuCount":null,"maxCpuCount":null,"memorySizeInGbs":null,"maxMemoryInGbs":null,"dbNodeStorageSizeInGbs":null,"maxDbNodeStorageSizeInGbs":null,"dataStorageSizeInTbs":null,"maxDataStorageInTbs":null,"dbServerVersion":null,"activatedStorageCount":null,"additionalStorageCount":null,"lastMaintenanceRunId":null,"nextMaintenanceRunId":null,"monthlyDbServerVersion":null,"monthlyStorageServerVersion":null,"storageServerVersion":null,"databaseServerType":null,"storageServerType":null,"computeModel":null,"exascaleConfig":null}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/096b7900-9905-4e58-ad0c-1b685bf07f3d*D0B3A2377C0E8BE5806980C29649A929673E694AEA35B06B67D3E632A59B93F7?api-version=2023-09-01&t=638557721706124656&c=MIIHhzCCBm-gAwIBAgITHgTGa31qslIh2UBmkAAABMZrfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjIxMDkxMjA1WhcNMjUwNjE2MDkxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALn834uDqgCOixiO8GRfVCjdOSupM2mspf7A4DxVqhAZOL8zaMDjFkxtx33wm6cpNnNPdJtVugOQpatgZbDHp53nm17ZRJmyTZu_5z53RacbNkdHn-1M5XSVR5Gog-YVsO3all2PlVdOg1eoSOD8ITK-TstsekGcOi-2bqgxdMy4G9xiwN1uqztQs-uuOT2M0DGCBvuLm5PRftyk3A6tocQSz4e0JBhb08J-V5He6t4zq4AM6kwBE0iJR7dJEfSfDddwSZIAz6h35rU5QUFAFgtNoGNOoeq-2PAvP1ID_2_k6czxhuVUXChGs9wtj36-SmcXHwK4Di51_jZCza6EA6ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiHY0qE8dJDl1-fBkPIyhmBEoAXDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAMkBnjIQiIoLSg9zciJxXH1ylOKB4FJPrPFj52jXEgVo32cghlQhqYin74eWIrBybErBVKH1YhQnwolzlfQ2ghTU7DmQyx9TLA44sJzrc0cDQQvDaKmmJckNZtPzpYqro72RpHWATCjOWVE22NKpCRrNQKotMUbDebsE_RuzsGqcGKqaLGbwC6LP0aiK1KrOKORCDvOCtJic28Xn5HGJmYZ6U6xh6ClEm4t8nBn4CcVROGsAZ9wINYtuPZwHvI2zTH7u7kNlNWT935tT9aEKf_vyg22rc23EdwsVKQZSO42x8QVwYSwuL-2AF2Zh5SFZp1lvK5TIyNgVewww93mkdE&s=RhZv8L6zt8IGz3bsolBnnmEaHAmUQekOu6v3G9HV4oZJVIyv3_0OgM74ZTwhvnqajWawgG3rk0b0Yv7exgko-QM5tTyXGt0KB60YJADYOnISwRdTLM-Klr8YqZV7jT8_L86abSBhz23OTSfgrJ4-jsc6Lk4jSMIcDI6hwQ6sn4HixUiwBPgWp_8yHcN4bgaNP-WXrxDJfKfEchNUQz9azEZzvV_NDDFGpohDGVgcL7J_UTa3VPJLhXcCww_2zvfnPUbIY9WIeuVPTx3r1iHPRirzBuw-7dGg-g0-dNWd-0VqcD2f0uYruN9E_JT8AVGnhxgq-9REiUyQ1Cbkhp73ow&h=tfmpSwOBWhvgrgMVUWtDwDi1ydaEKc7SDnaE7E82L7k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/891a4e35-9141-4c6c-a5bd-25632d2d50d2*1B9FE89944607A50048E074441F6FB9CD53C85210EEDBBBB6EAABE2C91DC73A6?api-version=2025-09-01&t=639005063353536010&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=fhjL1TahwUFsC_tihgWaahSwKR2y4yTa6Z9-U69zzc6ZY9e4_0ICBY0xmR72lsVspnIavkCu1aZ8mLHd4401vjktKL4eMoIWipGpR46Iv1uR72CjAlrlreUNHtUAazDZsz6CUtN8Yiy1_4vvJ5ljGHGwsa9spcwNKrE0jwjgt0OBQP49-VBXC3KbvPtBxO9-30qXwZRjI0pI1XVTjDy6sxi0z6_nzUWsX5wNJB9sPN2lqB6KhAINwje13UCQndWPPBg9oVjNwibmwWI-R9xkQn62VyGc18dLo_swMNt4w9-4apdiBVB_PEtdUcveVJFBf_o5YNY2KmiYA6wQ8y13Ew&h=5x6od8kkwIxyy2O_iE5KPOUqtyYNPfn84LsC7MFRDVo cache-control: - no-cache content-length: - - '1352' + - '1447' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 10:29:30 GMT + - Fri, 05 Dec 2025 04:38:54 GMT etag: - - '"34016002-0000-0100-0000-6687cb0a0000"' + - '"b803ed67-0000-0100-0000-693261df0000"' expires: - '-1' opc-request-id: - - /D03CB64528C269543CDD68FE683F71D1/82407AB52D0F324CE4DA6B6100FD6861 + - oci-74EBB2D833B8C8D-202512050438/7CD3E5003124C85BD161326949414420/9957F770D96BFFAF9404B199D0729096 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-async-operation-timeout: + - P1D + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/254db60c-1dc6-45a8-baf7-25ba3eb267ff x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-writes: @@ -57,7 +64,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 9260049E558C4A7299D3C5846A447668 Ref B: AMS231020512035 Ref C: 2024-07-05T10:29:22Z' + - 'Ref A: 638D8FA894BC4727B0234FD4813BB3AE Ref B: SJC211051205037 Ref C: 2025-12-05T04:38:39Z' status: code: 201 message: Created @@ -67,7 +74,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database cloud-exadata-infrastructure show Connection: @@ -75,23 +82,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OFake_PowerShellTestExaInfra?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND?api-version=2025-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OFake_PowerShellTestExaInfra","name":"OFake_PowerShellTestExaInfra","type":"oracle.database/cloudexadatainfrastructures","location":"eastus","zones":["2"],"tags":{},"systemData":{"createdBy":"jamie.c.cheung@oracle.com","createdByType":"User","createdAt":"2024-07-04T13:20:00.3149197Z","lastModifiedBy":"857ad006-4380-4712-ba4c-22f7c64d84e7","lastModifiedByType":"Application","lastModifiedAt":"2024-07-05T10:18:29.9979593Z"},"properties":{"ocid":"ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljrnirvylqajp6lgcommbx5qbuuk7dsm4y5ioehfdqa6l66htw7mj6q","computeCount":3,"storageCount":3,"totalStorageSizeInGbs":196608,"availableStorageSizeInGbs":0,"timeCreated":"2024-07-04T13:20:13.877Z","maintenanceWindow":{"preference":"NoPreference","leadTimeInWeeks":0,"patchingMode":"Rolling","customActionTimeoutInMins":0,"isCustomActionTimeoutEnabled":false},"provisioningState":"Succeeded","lifecycleState":"Available","shape":"Exadata.X9M","ociUrl":"https://cloud.oracle.com/dbaas/cloudExadataInfrastructures/ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljrnirvylqajp6lgcommbx5qbuuk7dsm4y5ioehfdqa6l66htw7mj6q?region=us-ashburn-1&tenant=orpsandbox3&compartmentId=ocid1.compartment.oc1..aaaaaaaazcet2jt2uowjtgxsae5uositfy2thngqgokwdifyzmyygdpckeua","displayName":"OFake_PowerShellTestExaInfra","cpuCount":4,"maxCpuCount":378,"memorySizeInGbs":90,"maxMemoryInGbs":4170,"dbNodeStorageSizeInGbs":938,"maxDbNodeStorageSizeInGbs":6729,"dataStorageSizeInTbs":2.0,"maxDataStorageInTbs":192.0,"dbServerVersion":"23.1.13.0.0.240410.1","activatedStorageCount":3,"additionalStorageCount":0,"storageServerVersion":"21.1.0.0.0"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND","name":"OfakeExaDND","type":"oracle.database/cloudexadatainfrastructures","location":"eastus","zones":["2"],"tags":{},"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-06-26T05:58:15.8831698Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-12-05T04:11:41.0866329Z"},"properties":{"definedFileSystemConfiguration":[{"isBackupPartition":true,"isResizable":true,"minSizeGb":15,"mountPoint":"/"},{"isBackupPartition":false,"isResizable":true,"minSizeGb":250,"mountPoint":"/u01"},{"isBackupPartition":true,"isResizable":true,"minSizeGb":10,"mountPoint":"/tmp"},{"isBackupPartition":false,"isResizable":true,"minSizeGb":10,"mountPoint":"/var"},{"isBackupPartition":false,"isResizable":true,"minSizeGb":30,"mountPoint":"/var/log"},{"isBackupPartition":false,"isResizable":true,"minSizeGb":4,"mountPoint":"/home"},{"isBackupPartition":false,"isResizable":false,"minSizeGb":10,"mountPoint":"/var/log/audit"},{"isBackupPartition":false,"isResizable":false,"minSizeGb":9,"mountPoint":"reserved"},{"isBackupPartition":false,"isResizable":false,"minSizeGb":16,"mountPoint":"swap"}],"ocid":"ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljt2edokzyathomcb7enkv2t2taxunam4qwwwfc2g3fhwd6gdckg4xq","computeCount":3,"storageCount":3,"totalStorageSizeInGbs":196608,"availableStorageSizeInGbs":0,"timeCreated":"2025-06-26T05:58:33.426Z","maintenanceWindow":{"preference":"NoPreference","leadTimeInWeeks":0,"patchingMode":"Rolling","customActionTimeoutInMins":0,"isCustomActionTimeoutEnabled":false},"provisioningState":"Succeeded","lifecycleState":"Available","shape":"Exadata.X9M","ociUrl":"https://cloud.oracle.com/dbaas/cloudExadataInfrastructures/ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljt2edokzyathomcb7enkv2t2taxunam4qwwwfc2g3fhwd6gdckg4xq?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","displayName":"OfakeExaDND","cpuCount":6,"maxCpuCount":378,"memorySizeInGbs":60,"maxMemoryInGbs":4170,"dbNodeStorageSizeInGbs":878,"maxDbNodeStorageSizeInGbs":6729,"dataStorageSizeInTbs":2,"maxDataStorageInTbs":192,"dbServerVersion":"25.1.2.0.0.250213.1","activatedStorageCount":3,"additionalStorageCount":0,"storageServerVersion":"25.1.2.0.0.250213.1","computeModel":"OCPU","nextMaintenanceRunId":"ocid1.dbmaintenancerun.oc1.iad.anuwcljt2edokzyaqrl73k4ugw4h346r7ve6mfeiedjg2hpbtemrfhqfukzq","lastMaintenanceRunId":"ocid1.dbmaintenancerun.oc1.iad.anuwcljt2edokzyapvwvk552egjsobidec2qcktmgnh2rrumqhmcphfgoaeq"}}' headers: cache-control: - no-cache content-length: - - '1752' + - '2749' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 10:29:31 GMT + - Fri, 05 Dec 2025 04:38:56 GMT etag: - - '"330106d9-0000-0100-0000-6687c8760000"' + - '"b8038c48-0000-0100-0000-69325b7d0000"' expires: - '-1' pragma: @@ -107,7 +114,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A01B89FF1CF74E38BEA775AC96D2E507 Ref B: AMS231020615031 Ref C: 2024-07-05T10:29:30Z' + - 'Ref A: 9EC4775C56CC4AACB8F85B91DF9BA82A Ref B: BY1AA1072320042 Ref C: 2025-12-05T04:38:56Z' status: code: 200 message: OK @@ -117,7 +124,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database cloud-exadata-infrastructure list Connection: @@ -125,21 +132,21 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures?api-version=2025-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OFake_PowerShellTestExaInfra","name":"OFake_PowerShellTestExaInfra","type":"oracle.database/cloudexadatainfrastructures","location":"eastus","zones":["2"],"tags":{},"systemData":{"createdBy":"jamie.c.cheung@oracle.com","createdByType":"User","createdAt":"2024-07-04T13:20:00.3149197Z","lastModifiedBy":"857ad006-4380-4712-ba4c-22f7c64d84e7","lastModifiedByType":"Application","lastModifiedAt":"2024-07-05T10:18:29.9979593Z"},"properties":{"ocid":"ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljrnirvylqajp6lgcommbx5qbuuk7dsm4y5ioehfdqa6l66htw7mj6q","computeCount":3,"storageCount":3,"totalStorageSizeInGbs":196608,"availableStorageSizeInGbs":0,"timeCreated":"2024-07-04T13:20:13.877Z","maintenanceWindow":{"preference":"NoPreference","leadTimeInWeeks":0,"patchingMode":"Rolling","customActionTimeoutInMins":0,"isCustomActionTimeoutEnabled":false},"provisioningState":"Succeeded","lifecycleState":"Available","shape":"Exadata.X9M","ociUrl":"https://cloud.oracle.com/dbaas/cloudExadataInfrastructures/ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljrnirvylqajp6lgcommbx5qbuuk7dsm4y5ioehfdqa6l66htw7mj6q?region=us-ashburn-1&tenant=orpsandbox3&compartmentId=ocid1.compartment.oc1..aaaaaaaazcet2jt2uowjtgxsae5uositfy2thngqgokwdifyzmyygdpckeua","displayName":"OFake_PowerShellTestExaInfra","cpuCount":4,"maxCpuCount":378,"memorySizeInGbs":90,"maxMemoryInGbs":4170,"dbNodeStorageSizeInGbs":938,"maxDbNodeStorageSizeInGbs":6729,"dataStorageSizeInTbs":2.0,"maxDataStorageInTbs":192.0,"dbServerVersion":"23.1.13.0.0.240410.1","activatedStorageCount":3,"additionalStorageCount":0,"storageServerVersion":"21.1.0.0.0"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND","name":"OfakeExaDND","type":"oracle.database/cloudexadatainfrastructures","location":"eastus","zones":["2"],"tags":{},"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-06-26T05:58:15.8831698Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-12-05T04:11:41.0866329Z"},"properties":{"definedFileSystemConfiguration":[{"isBackupPartition":true,"isResizable":true,"minSizeGb":15,"mountPoint":"/"},{"isBackupPartition":false,"isResizable":true,"minSizeGb":250,"mountPoint":"/u01"},{"isBackupPartition":true,"isResizable":true,"minSizeGb":10,"mountPoint":"/tmp"},{"isBackupPartition":false,"isResizable":true,"minSizeGb":10,"mountPoint":"/var"},{"isBackupPartition":false,"isResizable":true,"minSizeGb":30,"mountPoint":"/var/log"},{"isBackupPartition":false,"isResizable":true,"minSizeGb":4,"mountPoint":"/home"},{"isBackupPartition":false,"isResizable":false,"minSizeGb":10,"mountPoint":"/var/log/audit"},{"isBackupPartition":false,"isResizable":false,"minSizeGb":9,"mountPoint":"reserved"},{"isBackupPartition":false,"isResizable":false,"minSizeGb":16,"mountPoint":"swap"}],"ocid":"ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljt2edokzyathomcb7enkv2t2taxunam4qwwwfc2g3fhwd6gdckg4xq","computeCount":3,"storageCount":3,"totalStorageSizeInGbs":196608,"availableStorageSizeInGbs":0,"timeCreated":"2025-06-26T05:58:33.426Z","maintenanceWindow":{"preference":"NoPreference","leadTimeInWeeks":0,"patchingMode":"Rolling","customActionTimeoutInMins":0,"isCustomActionTimeoutEnabled":false},"provisioningState":"Succeeded","lifecycleState":"Available","shape":"Exadata.X9M","ociUrl":"https://cloud.oracle.com/dbaas/cloudExadataInfrastructures/ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljt2edokzyathomcb7enkv2t2taxunam4qwwwfc2g3fhwd6gdckg4xq?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","displayName":"OfakeExaDND","cpuCount":6,"maxCpuCount":378,"memorySizeInGbs":60,"maxMemoryInGbs":4170,"dbNodeStorageSizeInGbs":878,"maxDbNodeStorageSizeInGbs":6729,"dataStorageSizeInTbs":2,"maxDataStorageInTbs":192,"dbServerVersion":"25.1.2.0.0.250213.1","activatedStorageCount":3,"additionalStorageCount":0,"storageServerVersion":"25.1.2.0.0.250213.1","computeModel":"OCPU","nextMaintenanceRunId":"ocid1.dbmaintenancerun.oc1.iad.anuwcljt2edokzyaqrl73k4ugw4h346r7ve6mfeiedjg2hpbtemrfhqfukzq","lastMaintenanceRunId":"ocid1.dbmaintenancerun.oc1.iad.anuwcljt2edokzyapvwvk552egjsobidec2qcktmgnh2rrumqhmcphfgoaeq"}}]}' headers: cache-control: - no-cache content-length: - - '1764' + - '2761' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 10:29:31 GMT + - Fri, 05 Dec 2025 04:38:57 GMT expires: - '-1' pragma: @@ -150,12 +157,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-original-request-ids: + - 039f6dcb-5152-436c-9ea8-c65fba77493a x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 94FED8C2AFEF48248E5EA89D78107A73 Ref B: AMS231020512027 Ref C: 2024-07-05T10:29:31Z' + - 'Ref A: AED6CF80AF2B4192B14552CF4CCDF2BC Ref B: BY1AA1072317052 Ref C: 2025-12-05T04:38:57Z' status: code: 200 message: OK @@ -165,7 +174,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database cloud-exadata-infrastructure database-server list Connection: @@ -173,62 +182,67 @@ interactions: ParameterSetName: - --cloudexadatainfrastructurename --resource-group User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OFake_PowerShellTestExaInfra/dbServers?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND/dbServers?api-version=2025-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OFake_PowerShellTestExaInfra/dbServers/ocid1.dbserver.oc1.iad.anuwcljrowjpydqaoklexltoygidco5rxfo5zusgnblo2ayvaczyqg7sqtjq","name":"dbServer-2","type":"Oracle.Database/cloudExadataInfrastructures/dbServers","properties":{"ocid":"ocid1.dbserver.oc1.iad.anuwcljrowjpydqaoklexltoygidco5rxfo5zusgnblo2ayvaczyqg7sqtjq","displayName":"dbServer-2","compartmentId":"ocid1.compartment.oc1..aaaaaaaazcet2jt2uowjtgxsae5uositfy2thngqgokwdifyzmyygdpckeua","exadataInfrastructureId":"ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljrnirvylqajp6lgcommbx5qbuuk7dsm4y5ioehfdqa6l66htw7mj6q","cpuCoreCount":2,"maxMemoryInGbs":1390,"dbNodeStorageSizeInGbs":469,"vmClusterIds":["ocid1.cloudvmcluster.oc1.iad.anuwcljrnirvylqanh37nglmlhotsnvzwivsfnomoa6lc7t6l5gwwocoovcq"],"dbNodeIds":["ocid1.dbnode.oc1.iad.anuwcljrnirvylqaqm24luvmhsaaz2wtiq3ggddpsemx6gn66vff5rulsgnq"],"provisioningState":"Available","lifecycleState":null,"dbServerPatchingDetails":{"estimatedPatchDuration":90,"patchingStatus":"Scheduled","timePatchingEnded":null,"timePatchingStarted":null},"maxCpuCount":126,"autonomousVmClusterIds":[],"autonomousVirtualMachineIds":[],"maxDbNodeStorageInGbs":2243,"memorySizeInGbs":45,"shape":null,"timeCreated":"2024-07-04T13:20:13.889Z","lifecycleDetails":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OFake_PowerShellTestExaInfra/dbServers/ocid1.dbserver.oc1.iad.anuwcljrowjpydqar5ljy52di4siacvp4h4hzwp6jcz7yrmkiaglyi7nfwdq","name":"dbServer-3","type":"Oracle.Database/cloudExadataInfrastructures/dbServers","properties":{"ocid":"ocid1.dbserver.oc1.iad.anuwcljrowjpydqar5ljy52di4siacvp4h4hzwp6jcz7yrmkiaglyi7nfwdq","displayName":"dbServer-3","compartmentId":"ocid1.compartment.oc1..aaaaaaaazcet2jt2uowjtgxsae5uositfy2thngqgokwdifyzmyygdpckeua","exadataInfrastructureId":"ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljrnirvylqajp6lgcommbx5qbuuk7dsm4y5ioehfdqa6l66htw7mj6q","cpuCoreCount":2,"maxMemoryInGbs":1390,"dbNodeStorageSizeInGbs":469,"vmClusterIds":["ocid1.cloudvmcluster.oc1.iad.anuwcljrnirvylqanh37nglmlhotsnvzwivsfnomoa6lc7t6l5gwwocoovcq"],"dbNodeIds":["ocid1.dbnode.oc1.iad.anuwcljrnirvylqapfxspunpsxyaehha5wwz22lazevdaoiye7bh4iy2nwfa"],"provisioningState":"Available","lifecycleState":null,"dbServerPatchingDetails":{"estimatedPatchDuration":90,"patchingStatus":"Scheduled","timePatchingEnded":null,"timePatchingStarted":null},"maxCpuCount":126,"autonomousVmClusterIds":[],"autonomousVirtualMachineIds":[],"maxDbNodeStorageInGbs":2243,"memorySizeInGbs":45,"shape":null,"timeCreated":"2024-07-04T13:20:13.890Z","lifecycleDetails":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OFake_PowerShellTestExaInfra/dbServers/ocid1.dbserver.oc1.iad.anuwcljrowjpydqazy4bp745fsrnje5pbp2ffdffmizmglwvytvymld4bcyq","name":"dbServer-1","type":"Oracle.Database/cloudExadataInfrastructures/dbServers","properties":{"ocid":"ocid1.dbserver.oc1.iad.anuwcljrowjpydqazy4bp745fsrnje5pbp2ffdffmizmglwvytvymld4bcyq","displayName":"dbServer-1","compartmentId":"ocid1.compartment.oc1..aaaaaaaazcet2jt2uowjtgxsae5uositfy2thngqgokwdifyzmyygdpckeua","exadataInfrastructureId":"ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljrnirvylqajp6lgcommbx5qbuuk7dsm4y5ioehfdqa6l66htw7mj6q","cpuCoreCount":0,"maxMemoryInGbs":1390,"dbNodeStorageSizeInGbs":0,"vmClusterIds":[],"dbNodeIds":[],"provisioningState":"Available","lifecycleState":null,"dbServerPatchingDetails":{"estimatedPatchDuration":90,"patchingStatus":"Scheduled","timePatchingEnded":null,"timePatchingStarted":null},"maxCpuCount":126,"autonomousVmClusterIds":[],"autonomousVirtualMachineIds":[],"maxDbNodeStorageInGbs":2243,"memorySizeInGbs":0,"shape":null,"timeCreated":"2024-07-04T13:20:13.888Z","lifecycleDetails":null}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND/dbServers/ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya2ajpysh3j2geyaqhrdayexc45tjbmwkwabolpdye6qhq","name":"dbServer-1","type":"Oracle.Database/cloudExadataInfrastructures/dbServers","properties":{"ocid":"ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya2ajpysh3j2geyaqhrdayexc45tjbmwkwabolpdye6qhq","displayName":"dbServer-1","compartmentId":"ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","exadataInfrastructureId":"ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljt2edokzyathomcb7enkv2t2taxunam4qwwwfc2g3fhwd6gdckg4xq","cpuCoreCount":0,"maxMemoryInGbs":1390,"dbNodeStorageSizeInGbs":0,"vmClusterIds":[],"dbNodeIds":[],"provisioningState":"Available","dbServerPatchingDetails":{"estimatedPatchDuration":90,"patchingStatus":"Scheduled"},"maxCpuCount":126,"autonomousVmClusterIds":[],"autonomousVirtualMachineIds":[],"maxDbNodeStorageInGbs":2243,"memorySizeInGbs":0,"timeCreated":"2025-06-26T05:58:33.427Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND/dbServers/ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya4j553poytgkb7tweyymfo3ydjiaeqdhhduzbtxwunvwq","name":"dbServer-3","type":"Oracle.Database/cloudExadataInfrastructures/dbServers","properties":{"ocid":"ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya4j553poytgkb7tweyymfo3ydjiaeqdhhduzbtxwunvwq","displayName":"dbServer-3","compartmentId":"ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","exadataInfrastructureId":"ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljt2edokzyathomcb7enkv2t2taxunam4qwwwfc2g3fhwd6gdckg4xq","cpuCoreCount":3,"maxMemoryInGbs":1390,"dbNodeStorageSizeInGbs":439,"vmClusterIds":["ocid1.cloudvmcluster.oc1.iad.anuwcljt2edokzyaicqasxporuiqbuddyjvehrvz3utvyjkpyddrvlkltzhq"],"dbNodeIds":["ocid1.dbnode.oc1.iad.anuwcljt2edokzyaagca535ajbnch4tm2fy5ckaxfacdbdbaskltrld2ri4a"],"provisioningState":"Available","dbServerPatchingDetails":{"estimatedPatchDuration":90,"patchingStatus":"Scheduled"},"maxCpuCount":126,"autonomousVmClusterIds":[],"autonomousVirtualMachineIds":[],"maxDbNodeStorageInGbs":2243,"memorySizeInGbs":30,"timeCreated":"2025-06-26T05:58:33.428Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND/dbServers/ocid1.dbserver.oc1.iad.anuwcljt2xgsw2yadr5ifpbjesmj72j7mjtiuwmmanoljxrvbg442xjnpqra","name":"dbServer-2","type":"Oracle.Database/cloudExadataInfrastructures/dbServers","properties":{"ocid":"ocid1.dbserver.oc1.iad.anuwcljt2xgsw2yadr5ifpbjesmj72j7mjtiuwmmanoljxrvbg442xjnpqra","displayName":"dbServer-2","compartmentId":"ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","exadataInfrastructureId":"ocid1.cloudexadatainfrastructure.oc1.iad.anuwcljt2edokzyathomcb7enkv2t2taxunam4qwwwfc2g3fhwd6gdckg4xq","cpuCoreCount":3,"maxMemoryInGbs":1390,"dbNodeStorageSizeInGbs":439,"vmClusterIds":["ocid1.cloudvmcluster.oc1.iad.anuwcljt2edokzyaicqasxporuiqbuddyjvehrvz3utvyjkpyddrvlkltzhq"],"dbNodeIds":["ocid1.dbnode.oc1.iad.anuwcljt2edokzyalwpbb2xzktytw5e55dyl43wddlkbj7gnazoycfczm3aa"],"provisioningState":"Available","dbServerPatchingDetails":{"estimatedPatchDuration":90,"patchingStatus":"Scheduled"},"maxCpuCount":126,"autonomousVmClusterIds":[],"autonomousVirtualMachineIds":[],"maxDbNodeStorageInGbs":2243,"memorySizeInGbs":30,"timeCreated":"2025-06-26T05:58:33.428Z"}}]}' headers: cache-control: - no-cache content-length: - - '4013' + - '3629' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 10:29:33 GMT + - Fri, 05 Dec 2025 04:39:00 GMT expires: - '-1' opc-request-id: - - /FE5E6AC84C3DA84EB72AA3B9F3367DDA/BBE8BC5163B232C09BA0AA2E751258C9 + - oci-68AB42669DF4529-202512050438/B3ACA9176377D88BE26132694941448B/818BB0EDD61CE22B9C6B1E059B985805 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/eastus/e2105ef1-6d3a-41dc-bd56-d76f890e3711 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 28F2D7A6A7E3427A864E8EDB6AC3E5F2 Ref B: AMS231020512027 Ref C: 2024-07-05T10:29:32Z' + - 'Ref A: B7127F783312431AACAF8A1BCC227638 Ref B: SJC211051205021 Ref C: 2025-12-05T04:38:58Z' status: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"cloudExadataInfrastructureId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudExadataInfrastructures/DemoExaInfra", + body: '{"location": "eastus", "properties": {"cloudExadataInfrastructureId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND", "cpuCoreCount": 6, "dataStoragePercentage": 80, "dataStorageSizeInTbs": 2.0, - "dbNodeStorageSizeInGbs": 120, "dbServers": ["ocid1.dbserver.oc1.iad.xxxxx", - "ocid1.dbserver.oc1.iad.xxxxx", "ocid1.dbserver.oc1.iad.xxxxx"], "displayName": - "OFake_VMC_AzCLI3", "giVersion": "19.0.0.0", "hostname": "rvilathu", "isLocalBackupEnabled": - false, "isSparseDiskgroupEnabled": false, "licenseModel": "LicenseIncluded", - "memorySizeInGbs": 60, "sshPublicKeys": ["ssh-rsa keykeykeykeykey generated-by-azure"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet/subnets/SDKSubnet", - "timeZone": "UTC", "vnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet"}}' + "dbNodeStorageSizeInGbs": 120, "dbServers": ["ocid1.dbserver.oc1.iad.anuwcljt2xgsw2yadr5ifpbjesmj72j7mjtiuwmmanoljxrvbg442xjnpqra", + "ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya4j553poytgkb7tweyymfo3ydjiaeqdhhduzbtxwunvwq"], + "displayName": "OFake_VMC_AzCLIMih", "giVersion": "19.0.0.0", "hostname": "rvilathu", + "isLocalBackupEnabled": false, "isSparseDiskgroupEnabled": false, "licenseModel": + "LicenseIncluded", "memorySizeInGbs": 60, "sshPublicKeys": ["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHJDAu814QnRaYFbuFswJX1IdpFAa8yVk4sneI3Q+QLoTyE4W5GR5f6TR5FqA03zxp41chkvjLysnc+EYJmjXQIbvrsEfaUenGu2AbYE3szBK9v+8iUy8JLgjoGuuxTU3BNCvMlTd00yw/qrOYbEDU9ZBnZVY/0nv2E03AzGUUObZJ8IUgNRUmNdWVFQiVUcmkRRM+XsIEUpuh0S6YJLLweZd+H50Y1mhKWXnZZH8Ed/5EmkSr7cO5WEKU2O/KSbavybkjUVWi6dcQMfwmNLBH9aByqAW8QvcZkZDvxLmimLnm3Jd/QDVvGesjyLbUrWfpbsaDXs+DgjTlFlxyqLPYMON5cfSg8wBj3Y176yWxwmrPnkro8X1Y93poSDQZb9SU68DsTrgVa6FoXWPkbUXz/nZX9GkTwE1Nhy2EPL4J+J50ZUZWG0bK25dFTKrzimLn1Qmvrx3so9qDId9LWbpYI6cJYxDTkGdGpuaHqDqGAi+5HeeXxx3/zO8pErPxy20= + generated-by-azure"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated", + "timeZone": "UTC", "vnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet"}}' headers: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database cloud-vm-cluster create Connection: - keep-alive Content-Length: - - '1561' + - '1667' Content-Type: - application/json ParameterSetName: @@ -238,38 +252,45 @@ interactions: --is-sparse-diskgroup-enabled --license-model --memory-size-in-gbs --ssh-public-keys --subnet-id --time-zone --vnet-id --no-wait User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudVmClusters/OFake_VMC_AzCLI3?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudVmClusters/OFake_VMC_AzCLIMih?api-version=2025-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudVmClusters/OFake_VMC_AzCLI3","name":"OFake_VMC_AzCLI3","type":"oracle.database/cloudvmclusters","location":"eastus","systemData":{"createdBy":"ramakrishnan.vilathur.sriniva@oracle.com","createdByType":"User","createdAt":"2024-07-05T10:29:34.9262789Z","lastModifiedBy":"ramakrishnan.vilathur.sriniva@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2024-07-05T10:29:34.9262789Z"},"properties":{"ocid":null,"listenerPort":null,"nodeCount":null,"storageSizeInGbs":null,"dataStorageSizeInTbs":2.0,"dbNodeStorageSizeInGbs":120,"memorySizeInGbs":60,"timeCreated":null,"lifecycleDetails":null,"timeZone":"UTC","zoneId":null,"hostname":"rvilathu","domain":null,"cpuCoreCount":6,"ocpuCount":null,"clusterName":null,"dataStoragePercentage":80,"isLocalBackupEnabled":false,"cloudExadataInfrastructureId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudExadataInfrastructures/DemoExaInfra","isSparseDiskgroupEnabled":false,"systemVersion":null,"sshPublicKeys":["ssh-rsa - keykeykeykeykey generated-by-azure"],"licenseModel":"LicenseIncluded","diskRedundancy":null,"scanIpIds":null,"vipIds":null,"scanDnsName":null,"scanListenerPortTcp":null,"scanListenerPortTcpSsl":null,"scanDnsRecordId":null,"shape":null,"provisioningState":"Accepted","lifecycleState":null,"vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet","giVersion":"19.0.0.0","ociUrl":null,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet/subnets/SDKSubnet","dataCollectionOptions":null,"displayName":"OFake_VMC_AzCLI3","iormConfigCache":null,"lastUpdateHistoryEntryId":null,"dbServers":["ocid1.dbserver.oc1.iad.xxxxx","ocid1.dbserver.oc1.iad.xxxxx","ocid1.dbserver.oc1.iad.xxxxx"],"compartmentId":null,"subnetOcid":null,"nsgCidrs":null,"nsgUrl":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudVmClusters/OFake_VMC_AzCLIMih","name":"OFake_VMC_AzCLIMih","type":"oracle.database/cloudvmclusters","location":"eastus","systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-12-05T04:39:02.2523867Z","lastModifiedBy":"mihret.kidane@oracle.com","lastModifiedByType":"User","lastModifiedAt":"2025-12-05T04:39:02.2523867Z"},"properties":{"ocid":null,"listenerPort":null,"nodeCount":null,"storageSizeInGbs":null,"fileSystemConfigurationDetails":null,"dataStorageSizeInTbs":2.0,"dbNodeStorageSizeInGbs":120,"memorySizeInGbs":60,"timeCreated":null,"lifecycleDetails":null,"timeZone":"UTC","zoneId":null,"hostname":"rvilathu","domain":null,"cpuCoreCount":6,"ocpuCount":null,"clusterName":null,"dataStoragePercentage":80,"isLocalBackupEnabled":false,"cloudExadataInfrastructureId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND","isSparseDiskgroupEnabled":false,"systemVersion":null,"sshPublicKeys":["ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDHJDAu814QnRaYFbuFswJX1IdpFAa8yVk4sneI3Q+QLoTyE4W5GR5f6TR5FqA03zxp41chkvjLysnc+EYJmjXQIbvrsEfaUenGu2AbYE3szBK9v+8iUy8JLgjoGuuxTU3BNCvMlTd00yw/qrOYbEDU9ZBnZVY/0nv2E03AzGUUObZJ8IUgNRUmNdWVFQiVUcmkRRM+XsIEUpuh0S6YJLLweZd+H50Y1mhKWXnZZH8Ed/5EmkSr7cO5WEKU2O/KSbavybkjUVWi6dcQMfwmNLBH9aByqAW8QvcZkZDvxLmimLnm3Jd/QDVvGesjyLbUrWfpbsaDXs+DgjTlFlxyqLPYMON5cfSg8wBj3Y176yWxwmrPnkro8X1Y93poSDQZb9SU68DsTrgVa6FoXWPkbUXz/nZX9GkTwE1Nhy2EPL4J+J50ZUZWG0bK25dFTKrzimLn1Qmvrx3so9qDId9LWbpYI6cJYxDTkGdGpuaHqDqGAi+5HeeXxx3/zO8pErPxy20= + generated-by-azure"],"licenseModel":"LicenseIncluded","diskRedundancy":null,"scanIpIds":null,"vipIds":null,"scanDnsName":null,"scanListenerPortTcp":null,"scanListenerPortTcpSsl":null,"scanDnsRecordId":null,"shape":null,"provisioningState":"Accepted","lifecycleState":null,"vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet","giVersion":"19.0.0.0","ociUrl":null,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated","dataCollectionOptions":null,"displayName":"OFake_VMC_AzCLIMih","iormConfigCache":null,"lastUpdateHistoryEntryId":null,"dbServers":["ocid1.dbserver.oc1.iad.anuwcljt2xgsw2yadr5ifpbjesmj72j7mjtiuwmmanoljxrvbg442xjnpqra","ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya4j553poytgkb7tweyymfo3ydjiaeqdhhduzbtxwunvwq"],"compartmentId":null,"subnetOcid":null,"nsgCidrs":null,"nsgUrl":null,"exascaleDbStorageVaultId":null,"storageManagementType":null}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/0ef4e4a5-2444-427a-9960-ab7ad19a0529*24B8623C1B8CDA8BCC4FE48B2AF3BAE412B444ECC77C472EB162968716D86926?api-version=2023-09-01&t=638557721796606923&c=MIIHpTCCBo2gAwIBAgITfwN4zzUuivvTBCLCCQAEA3jPNTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNjI0MTEyOTU2WhcNMjUwNjE5MTEyOTU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANvVWo1xOJRhTabFDg9tH83KxBFFsI-8hXpNc70gVGUo9vdR_GCto5GXht5Nk15RV9Eui7tLs-n7VOqRt4ZJ5VAjpwORPU0ibxKV9KxuriafJTjL7Qrk0JaSp7WGJqPW-J-Pd5L3tP1bFJur8kjM0bafBsjx64XEFWORLz5Fn2lp6TrN09Jd5b8K0HSCXKW2e3XMjLsNhXY8nqovBeHTMKNIUXpy2nH5fjVOimZk6Q4T6__1OhvvEVJZsCL05KUdxdO_hsLWYu-CjOT4AShuIDdibMapH2IdzaeWrawQNPVXKZ_KeKth7kpbOhSv1QWmfPOy3V9F2YLccUW5EGnQeZUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQo83UWtIVJoZyZu85mKVA3wYeN-TAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAIjL4XB6DpRu-qyv5OqJYhIEmeI3Qe1UttC_KzpXoBWbVudKDV9CE0p6ofXSgAL0ecWXtRLq-_0Fc7jpgUBZrqam1Kegg-ApMr78hSiTUCMxHgWpUKN7_6b26skb5WN_0GWObM78VwcVTyKQ7K4Axw_Iik9WglVk9QKreZ9lSNPWhI6DX1bb-Pl2gRDXKY1bw3t_3-FiYyzROsU-9IAJozqZs_m-J3bfkcJ01J8Eg21vEdK-9_4uHA1qfGU7aJr9APH4fc5S9AonGi9UeSEiqG3Bas997LqgN_Wd49UeSnfabQl54UewiQjaFThlNO5qQ9xQ7IuuGjkqAH6M9R_uIo&s=Y6tWPORxqS3_yw_u5TnaWGdCKW7XhPmIpNAqt8IxUIwhIQCcs7ZF5-aKRrhBg7mfFy939ASSIyPtmAyDTEovw1WhaLpL03NJmN7-jhLt9zizNEgu7qtdATdWgh6-VOThJXWRHFJ6AJYCKLI7AXUrLH9AYQjU0ffAcjY7uwOlOcA-ys3KiqqEc4ezAPmMhthH11juCWxXQV1iszN-TzKo-8Bs4oWWtJuVfsqRviaHibns-HYBo3IuyC-w_TaghVuSBlRAtmHOJsqb6eJ3zfJNZFZS0b4YOz7DI8XIn28ecFJnFpYUbX7bwWj2bremjMCl6gYC38VCkW-0uoDzos8tbg&h=HGeJJuu36pTWAC-k7wXqJ34zOxRRFAwSb7Gu2VNbRP8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/d19bdf2c-0a17-4d39-9dd4-646c64f586df*948BB81A93B23211B966FC1636836C949AFE70FD4175410B3B0FB4F340E3B6E6?api-version=2025-09-01&t=639005063475496295&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=IdpRVvq67i1N9tpE8p0-JoYoaVC9g4FHkxBlmCDLHUgiCuSIkB0sJRZata7A1lJ_oJ5GjUrfcC5Iozud-BpE0x4H5nuU31vRbQ-j30lKi5ndhpwiJWq6zo-VzfJQ0g3fwNzVF1IZTg0Sj11TquTftQfYa4qRYgR49NHZcRpm0yo7AFGbpqAC9up6TZe0mJmfWbQLoe0GwmMsg3cW313VZYrtAIBGgFtAoioq2FToaZZVNalRWVoHN3d39ryJsAxmNYA49OiD1SGvXkgvC5DShED_KDXv_iXZaPo5Ugddd4KJf4UM5kIU77n5szBixxEffO0t4UDkquBQlPtyWfCBIA&h=x7xgNrScxIOwC_sOMVAqWAlPyrj38h4k3ZTckhFzgr4 cache-control: - no-cache content-length: - - '2591' + - '2776' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 10:29:38 GMT + - Fri, 05 Dec 2025 04:39:06 GMT etag: - - '"6c0339fe-0000-0100-0000-6687cb130000"' + - '"c4096cfd-0000-0100-0000-693261eb0000"' expires: - '-1' opc-request-id: - - /88014BD80C78B5D03D0F65BC9B29A796/A27884F05D4023F868EBAB876B6226EC + - oci-1F27EBB394420CC-202512050439/9ACBEDC942CB2EE4E6613269494144EE/52CF21D3CDA0902AF9CD09499C247E5D pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-async-operation-timeout: + - P1D + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/eastus/9c192c5c-b7bb-4185-b1cc-65cba03b93ee x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-writes: @@ -277,7 +298,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: DDAC6D63C9024D00B82495531718124C Ref B: AMS231032608045 Ref C: 2024-07-05T10:29:33Z' + - 'Ref A: F9651728F07B4E4EA22A1A3861C88C17 Ref B: SJC211051201011 Ref C: 2025-12-05T04:39:00Z' status: code: 201 message: Created diff --git a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_exadata_deletes.yaml b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_exadata_deletes.yaml index 7e04dda11d0..6e6334d5658 100644 --- a/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_exadata_deletes.yaml +++ b/src/oracle-database/azext_oracle_database/tests/latest/recordings/test_oracledatabase_exadata_deletes.yaml @@ -5,7 +5,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database cloud-exadata-infrastructure delete Connection: @@ -15,15 +15,15 @@ interactions: ParameterSetName: - --resource-group --name --no-wait --yes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ObsTestingFra/providers/Oracle.Database/cloudExadataInfrastructures/OFake_ppratees_0216_2?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testAzureCLi/providers/Oracle.Database/cloudExadataInfrastructures/OFake_Infra_AzCLIMi?api-version=2025-09-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/GERMANYWESTCENTRAL/operationStatuses/b3cfe82b-ab72-4114-b118-86dc32b274dd*8D740D36BBAC23ACC542B1A0CBE079F8D2D6B92985053BCFDA1129C18AC40174?api-version=2023-09-01&t=638557766044132668&c=MIIHhzCCBm-gAwIBAgITHgTGa31qslIh2UBmkAAABMZrfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjIxMDkxMjA1WhcNMjUwNjE2MDkxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALn834uDqgCOixiO8GRfVCjdOSupM2mspf7A4DxVqhAZOL8zaMDjFkxtx33wm6cpNnNPdJtVugOQpatgZbDHp53nm17ZRJmyTZu_5z53RacbNkdHn-1M5XSVR5Gog-YVsO3all2PlVdOg1eoSOD8ITK-TstsekGcOi-2bqgxdMy4G9xiwN1uqztQs-uuOT2M0DGCBvuLm5PRftyk3A6tocQSz4e0JBhb08J-V5He6t4zq4AM6kwBE0iJR7dJEfSfDddwSZIAz6h35rU5QUFAFgtNoGNOoeq-2PAvP1ID_2_k6czxhuVUXChGs9wtj36-SmcXHwK4Di51_jZCza6EA6ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiHY0qE8dJDl1-fBkPIyhmBEoAXDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAMkBnjIQiIoLSg9zciJxXH1ylOKB4FJPrPFj52jXEgVo32cghlQhqYin74eWIrBybErBVKH1YhQnwolzlfQ2ghTU7DmQyx9TLA44sJzrc0cDQQvDaKmmJckNZtPzpYqro72RpHWATCjOWVE22NKpCRrNQKotMUbDebsE_RuzsGqcGKqaLGbwC6LP0aiK1KrOKORCDvOCtJic28Xn5HGJmYZ6U6xh6ClEm4t8nBn4CcVROGsAZ9wINYtuPZwHvI2zTH7u7kNlNWT935tT9aEKf_vyg22rc23EdwsVKQZSO42x8QVwYSwuL-2AF2Zh5SFZp1lvK5TIyNgVewww93mkdE&s=blaK6cqSUElwCKGqQ0XMGcdtHB3nzBMFOOMj1RZkZ7Sr4yG8-SZZ0ihUDfi17qMIUnNASRm8sjOpfJiJJSkwKDzUpmtt1uAEsnVWANUUgwTDceaz95XtnfXqyrNEY24KIHRQclm0SiR-Bb5k57aJaUTcsTNnkLmED--h-zd_U3OXRNwCQZ70ZqvyxDwktnDzHeMLcxrzZwP5Y9rgqhFDOb-dIgkY2K17EOLWvRZvSXij8QAKkfx5QyFuBbYwF5wb9hf570bqb38VNjfLf5k3NznMmNWXuZAzxgUV0VV3T3ZgwfX14q1QY2jUQh27JznURx7BpQoNYQc1ZLT9l3fGEA&h=xn5edLQcku7K-YE87AJDG1KL2kIz0Jmzu33z7GGQfOQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/a2670447-8404-4321-93d0-9156f710a403*E1233DB83A6AFA7D7791A613C1C5EA89D2C5B877C41EB0692C646275948A5CCB?api-version=2025-09-01&t=639005088713738324&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=bysMc2DV7QucSEvWVic7hS7n_uodI6kg_o-Ju5U2l3SUbInHxq3T0-R_FXt46wkMAtXldPi2VNRSnAQeLZ7SKQncYdMJS25WpLBFKyiEySFv0F2K2frccTmPJSMP09abjtRpOcwr-DNOOasDqwN2oH8MmiTfaMM0Pq9Xo5I5Nc8kttsUMCdp_ZfitOr36sbePYWwGx5eGkH1TQYZzLKVdWpJ4xuXDJywsJUcVzR_1FZV9vBONh0gRrdjP_WIwx1lpnDVp4RfvH_HT736GhJoDGEzui1p1_SXI9Cz20ZGhhlWr9lTDNq86eAuBWpF0Ul4KepubhDJCX6tt8X1IHiV6w&h=q2JjRhNcI_XpO_6HZ8cgNAcx6C6DrjAV_6mkQspTfy0 cache-control: - no-cache content-length: @@ -31,23 +31,27 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 11:43:24 GMT + - Fri, 05 Dec 2025 05:21:10 GMT etag: - - '"8b01fe41-0000-1500-0000-6687dc5c0000"' + - '"b803968e-0000-0100-0000-69326bc70000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/GERMANYWESTCENTRAL/operationStatuses/b3cfe82b-ab72-4114-b118-86dc32b274dd*8D740D36BBAC23ACC542B1A0CBE079F8D2D6B92985053BCFDA1129C18AC40174?api-version=2023-09-01&t=638557766044132668&c=MIIHhzCCBm-gAwIBAgITHgTGa31qslIh2UBmkAAABMZrfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjIxMDkxMjA1WhcNMjUwNjE2MDkxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALn834uDqgCOixiO8GRfVCjdOSupM2mspf7A4DxVqhAZOL8zaMDjFkxtx33wm6cpNnNPdJtVugOQpatgZbDHp53nm17ZRJmyTZu_5z53RacbNkdHn-1M5XSVR5Gog-YVsO3all2PlVdOg1eoSOD8ITK-TstsekGcOi-2bqgxdMy4G9xiwN1uqztQs-uuOT2M0DGCBvuLm5PRftyk3A6tocQSz4e0JBhb08J-V5He6t4zq4AM6kwBE0iJR7dJEfSfDddwSZIAz6h35rU5QUFAFgtNoGNOoeq-2PAvP1ID_2_k6czxhuVUXChGs9wtj36-SmcXHwK4Di51_jZCza6EA6ECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiHY0qE8dJDl1-fBkPIyhmBEoAXDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAMkBnjIQiIoLSg9zciJxXH1ylOKB4FJPrPFj52jXEgVo32cghlQhqYin74eWIrBybErBVKH1YhQnwolzlfQ2ghTU7DmQyx9TLA44sJzrc0cDQQvDaKmmJckNZtPzpYqro72RpHWATCjOWVE22NKpCRrNQKotMUbDebsE_RuzsGqcGKqaLGbwC6LP0aiK1KrOKORCDvOCtJic28Xn5HGJmYZ6U6xh6ClEm4t8nBn4CcVROGsAZ9wINYtuPZwHvI2zTH7u7kNlNWT935tT9aEKf_vyg22rc23EdwsVKQZSO42x8QVwYSwuL-2AF2Zh5SFZp1lvK5TIyNgVewww93mkdE&s=blaK6cqSUElwCKGqQ0XMGcdtHB3nzBMFOOMj1RZkZ7Sr4yG8-SZZ0ihUDfi17qMIUnNASRm8sjOpfJiJJSkwKDzUpmtt1uAEsnVWANUUgwTDceaz95XtnfXqyrNEY24KIHRQclm0SiR-Bb5k57aJaUTcsTNnkLmED--h-zd_U3OXRNwCQZ70ZqvyxDwktnDzHeMLcxrzZwP5Y9rgqhFDOb-dIgkY2K17EOLWvRZvSXij8QAKkfx5QyFuBbYwF5wb9hf570bqb38VNjfLf5k3NznMmNWXuZAzxgUV0VV3T3ZgwfX14q1QY2jUQh27JznURx7BpQoNYQc1ZLT9l3fGEA&h=xn5edLQcku7K-YE87AJDG1KL2kIz0Jmzu33z7GGQfOQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/a2670447-8404-4321-93d0-9156f710a403*E1233DB83A6AFA7D7791A613C1C5EA89D2C5B877C41EB0692C646275948A5CCB?api-version=2025-09-01&t=639005088713894565&c=MIIHhzCCBm-gAwIBAgITfAla5jyv8QRP_5ow7AAACVrmPDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDQzNjIzWhcNMjYwNDE4MDQzNjIzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMddVfpiBdDmUhIBJwKZ3KQON7oBNDWmOOmY4g1ElyXgEkjon3Gv6o2iUWBTlxPP_EZQJhupEuO2DlNcI72qn4SyWwWct2tCEYRZJerV4rv1id9sCDj3fEamCo4QEH3xMKcGXqtPe3f3eb4VUSK8a2gJFqPiH-B-2oetOTm_-t1_J9TkLUFEUdYIHsylTl0OH2FEQVYAAgRXhe4lJ-WGzZ1ffooW6zFScKcbHC-ij1AA2xiuPbLogZIDjkgpOYoQbn9dJCcXDjro2GtBWEIEIaRIheA5TONmvBvNjwgvM95OihgVouEt3T1X5Jz2jgZVe8XVf5WuHz-a-o1TsKrZzcECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSklsMGrs_eAsv_RTi_q4qgDc9qNDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJ51PdAaul136rrBMSwKBqaPsalRACK88HnU3-MuFwPY3EKcBNfr_DcyIemG6qcdAt6oBTDGXSVm8qGYJ2eHSVBH91yTQvJd5-a7_b9xta0wy4EJYoK-Olj6bE5ygF6klhRzpEyjfq2vFjpc2SF6xPxtXMaj4I7ACMq2QHy3CO_thX0U9_MhBYBb-v3ICmOFIZIBb4wOpeX0BsfrYbqwos0TpMW5k0T0RtCs4mpGUt-7YgEXCPIwlt7JN4fLqGTiEElAPaYcSl4-0aYA_RVN98y83vlGlM0kIjglh8_t1QOAUw0jy8LA4CNtMdgL_ncOt66gFr9ocwuFusQMx11WpTM&s=tOVAYZLI0qHKJTqfcdd4qE_iT5dOso_gW5D0IuKS45OL_AfJrbj4Eyj89QO8_LOcA7OHok3HyWQhcxPgzfbhQdV9AVMnlPd5_y8cCDT79jBfFF6l7eOsu1AqVquJ36sc_MPKHrefJGOfeMoPySc673LiJgV3HcK5Cmz5G1qtXynlLwAW-HjOFAiIaOgxjctOJMW0kvoblg1c-L3kSecVoUma-6mRpsLGv8RITPuHkjl7wuBVpy9G3MAUwGEQ7xZgHI2gS6m847U9Uw3QUT4PVFGRjZI62nof_eTAMCSabQ8V1JVzzIK4XsYuYtht7bsqZM3mSl0BQbki8ugTOXdEyg&h=leG7pQlUU0eZbkb3qIwxDL1VwbkAT0mh2OQ7HaluuzU opc-request-id: - - /33C05EE2550EA40D43AFBAAEABA611B7/6A93681C0D855DFD7CDE74D064DC563D + - oci-FEA827BF4B649DC-202512050521/508A6AD460E146ADC46B326949414494/C678CA5B9EBF33C41F6D6B9D8370F57F pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/westus/31065a5d-8081-4f15-9913-5a3fc95708d4 x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-deletes: @@ -55,7 +59,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-deletes: - '2999' x-msedge-ref: - - 'Ref A: 0B948CDDB1314C6DBA8BCBAB8064F210 Ref B: AMS231032608009 Ref C: 2024-07-05T11:43:22Z' + - 'Ref A: A8C5E36FBC5746ACB3A3182B14EBD107 Ref B: BY1AA1072315052 Ref C: 2025-12-05T05:21:07Z' status: code: 202 message: Accepted @@ -65,7 +69,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database cloud-vm-cluster show Connection: @@ -73,25 +77,25 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudVmClusters/OFakeVmTestA?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudVmClusters/OFake_VMC_AzCLIMih?api-version=2025-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudVmClusters/OFakeVmTestA","name":"OFakeVmTestA","type":"oracle.database/cloudvmclusters","location":"eastus","tags":{"createdby":"sdkTests"},"systemData":{"createdBy":"99457c6f-c678-423c-8790-d0af60274556","createdByType":"Application","createdAt":"2024-07-05T08:48:10.274665Z","lastModifiedBy":"857ad006-4380-4712-ba4c-22f7c64d84e7","lastModifiedByType":"Application","lastModifiedAt":"2024-07-05T08:55:41.9436973Z"},"properties":{"dataStorageSizeInTbs":2,"dbNodeStorageSizeInGbs":120,"memorySizeInGbs":60,"timeZone":"UTC","hostname":"sdkTests","cpuCoreCount":4,"dataStoragePercentage":80,"isLocalBackupEnabled":false,"cloudExadataInfrastructureId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudExadataInfrastructures/DemoExaInfra","isSparseDiskgroupEnabled":false,"sshPublicKeys":["ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABgQDLBijBHxbSwQ1lMladrKxp3zFugmG3YW03/kvXB/x0yAbY5uBl1tK7Lbkc8BZdmIU03O+Wh5lckJ1dnXABpuzbfb1GK6gNs4ZN9kMjsZkPnJsIS9qUKwr28kVaTPgMBu8KYPw7M+lBMbw5aQZ3zLRAwBTsIJnsuTDy7PVF6QSAJUE5hEGGKwGIeVi2WB7+IDBFFB3solotEetidC+7OVqfpnIeIKqmXM53CnB2Obgsq1VuTa6KCk1wVfUh6253j3FL/EUoUZoFtG/XmV/25Vd1kLX2GzCLKOmWHVHGeT9wXHGrAoIdTlXgUyK36CYgU76njZ7/GgH5nZjWZXJRreFbJF8OGr5A6HoTNmDgbwsM5mimnjDLWcfObXyB3EVrdmjwN1SrJspWksH3R6BATGEXWUJv9jw8tDwLwFTKpHieywGPhM7SZaOKzycRePPRq9OPf9Aqrh0b/g1z0Ya8Fd0qTLjyjceXUAqoNqWMWQEae6m4NC3HQXSuTqLPlFcEFBE= - generated-by-azure"],"licenseModel":"LicenseIncluded","provisioningState":"Failed","lifecycleState":"Failed","vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet","giVersion":"19.0.0.0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet/subnets/SDKSubnet","dataCollectionOptions":{"isDiagnosticsEventsEnabled":true,"isHealthMonitoringEnabled":true,"isIncidentLogsEnabled":true},"displayName":"OFakeVmTestA","dbServers":["ocid1.dbserver.oc1.iad.anuwcljrowjpydqa4dd6z2sauygaffwmc5bu4xvgj225ydd2oeg4czdygpkq","ocid1.dbserver.oc1.iad.anuwcljrowjpydqaeal3y2sthszcjtquop3m22oj34mgokhp46anat5k6eta"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudVmClusters/OFake_VMC_AzCLIMih","name":"OFake_VMC_AzCLIMih","type":"oracle.database/cloudvmclusters","location":"eastus","systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-12-05T04:39:02.2523867Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-12-05T04:50:00.7253686Z"},"properties":{"ocid":"ocid1.cloudvmcluster.oc1.iad.anuwcljt2edokzyacvz3lyo4i5zdnpuchwo6vlwmmrjtwhnskycixg5ltjla","listenerPort":1521,"nodeCount":2,"storageSizeInGbs":196608,"fileSystemConfigurationDetails":[{"mountPoint":"/","fileSystemSizeGb":15},{"mountPoint":"/u01","fileSystemSizeGb":250},{"mountPoint":"/tmp","fileSystemSizeGb":10},{"mountPoint":"/var","fileSystemSizeGb":10},{"mountPoint":"/var/log","fileSystemSizeGb":30},{"mountPoint":"/home","fileSystemSizeGb":4},{"mountPoint":"/var/log/audit","fileSystemSizeGb":10},{"mountPoint":"reserved","fileSystemSizeGb":9},{"mountPoint":"swap","fileSystemSizeGb":16}],"dataStorageSizeInTbs":2,"dbNodeStorageSizeInGbs":120,"memorySizeInGbs":60,"timeCreated":"2025-12-05T04:47:07.632Z","timeZone":"UTC","zoneId":"ocid1.dns-zone.oc1.iad.aaaaaaaa7bng33qzuaxso6uktdebpvygroiobslxpi7wd5oh4ahldp6brm5a","hostname":"rvilathu-owh9t","domain":"ocidelegated.ocipstestvnet.oraclevcn.com","cpuCoreCount":6,"ocpuCount":6,"dataStoragePercentage":80,"isLocalBackupEnabled":false,"cloudExadataInfrastructureId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND","isSparseDiskgroupEnabled":false,"sshPublicKeys":["ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDHJDAu814QnRaYFbuFswJX1IdpFAa8yVk4sneI3Q+QLoTyE4W5GR5f6TR5FqA03zxp41chkvjLysnc+EYJmjXQIbvrsEfaUenGu2AbYE3szBK9v+8iUy8JLgjoGuuxTU3BNCvMlTd00yw/qrOYbEDU9ZBnZVY/0nv2E03AzGUUObZJ8IUgNRUmNdWVFQiVUcmkRRM+XsIEUpuh0S6YJLLweZd+H50Y1mhKWXnZZH8Ed/5EmkSr7cO5WEKU2O/KSbavybkjUVWi6dcQMfwmNLBH9aByqAW8QvcZkZDvxLmimLnm3Jd/QDVvGesjyLbUrWfpbsaDXs+DgjTlFlxyqLPYMON5cfSg8wBj3Y176yWxwmrPnkro8X1Y93poSDQZb9SU68DsTrgVa6FoXWPkbUXz/nZX9GkTwE1Nhy2EPL4J+J50ZUZWG0bK25dFTKrzimLn1Qmvrx3so9qDId9LWbpYI6cJYxDTkGdGpuaHqDqGAi+5HeeXxx3/zO8pErPxy20= + generated-by-azure"],"licenseModel":"LicenseIncluded","diskRedundancy":"High","scanIpIds":[],"scanDnsName":"rvilathu-owh9t-scan.ocidelegated.ocipstestvnet.oraclevcn.com","scanListenerPortTcp":1521,"scanListenerPortTcpSsl":2484,"shape":"Exadata.X9M","provisioningState":"Succeeded","lifecycleState":"Available","vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet","giVersion":"19.9.0.0.0","ociUrl":"https://cloud.oracle.com/dbaas/cloudVmClusters/ocid1.cloudvmcluster.oc1.iad.anuwcljt2edokzyacvz3lyo4i5zdnpuchwo6vlwmmrjtwhnskycixg5ltjla?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated","dataCollectionOptions":{"isDiagnosticsEventsEnabled":false,"isHealthMonitoringEnabled":false,"isIncidentLogsEnabled":false},"displayName":"OFake_VMC_AzCLIMih","dbServers":["ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya4j553poytgkb7tweyymfo3ydjiaeqdhhduzbtxwunvwq","ocid1.dbserver.oc1.iad.anuwcljt2xgsw2yadr5ifpbjesmj72j7mjtiuwmmanoljxrvbg442xjnpqra"],"compartmentId":"ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","subnetOcid":"ocid1.subnet.oc1.iad.aaaaaaaa3qn3g33p5xbyiszzr3xmdulrop7mwxfke6cezbfsx4uetxdbl2ca","storageManagementType":"ASM","computeModel":"OCPU","nsgUrl":"https://cloud.oracle.com/networking/vcns/ocid1.vcn.oc1.iad.amaaaaaa2edokzyamsfbm6llgg26ncjie4btezbar3kewsstx5pq4hbrxvna/network-security-groups/ocid1.networksecuritygroup.oc1.iad.aaaaaaaanvcy5py3h22guebbnlusxaj3lm4f4kyrpx2a6hswzpcivtwnjtsa?region=us-ashburn-1"}}' headers: cache-control: - no-cache content-length: - - '2284' + - '4111' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 11:43:24 GMT + - Fri, 05 Dec 2025 05:21:12 GMT etag: - - '"69032cb8-0000-0100-0000-6687b50e0000"' + - '"c5098719-0000-0100-0000-693264780000"' expires: - '-1' pragma: @@ -107,7 +111,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C5A6241E1734458AAB6753A650199F38 Ref B: AMS231032609053 Ref C: 2024-07-05T11:43:24Z' + - 'Ref A: DCFF6952F43840CC9568DFDFE3B7BF98 Ref B: BY1AA1072318029 Ref C: 2025-12-05T05:21:12Z' status: code: 200 message: OK @@ -117,7 +121,7 @@ interactions: Accept: - application/json Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database cloud-vm-cluster list Connection: @@ -125,23 +129,27 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudVmClusters?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudVmClusters?api-version=2025-09-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudVmClusters/OFakeVmTestA","name":"OFakeVmTestA","type":"oracle.database/cloudvmclusters","location":"eastus","tags":{"createdby":"sdkTests"},"systemData":{"createdBy":"99457c6f-c678-423c-8790-d0af60274556","createdByType":"Application","createdAt":"2024-07-05T08:48:10.274665Z","lastModifiedBy":"857ad006-4380-4712-ba4c-22f7c64d84e7","lastModifiedByType":"Application","lastModifiedAt":"2024-07-05T08:55:41.9436973Z"},"properties":{"dataStorageSizeInTbs":2,"dbNodeStorageSizeInGbs":120,"memorySizeInGbs":60,"timeZone":"UTC","hostname":"sdkTests","cpuCoreCount":4,"dataStoragePercentage":80,"isLocalBackupEnabled":false,"cloudExadataInfrastructureId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudExadataInfrastructures/DemoExaInfra","isSparseDiskgroupEnabled":false,"sshPublicKeys":["ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABgQDLBijBHxbSwQ1lMladrKxp3zFugmG3YW03/kvXB/x0yAbY5uBl1tK7Lbkc8BZdmIU03O+Wh5lckJ1dnXABpuzbfb1GK6gNs4ZN9kMjsZkPnJsIS9qUKwr28kVaTPgMBu8KYPw7M+lBMbw5aQZ3zLRAwBTsIJnsuTDy7PVF6QSAJUE5hEGGKwGIeVi2WB7+IDBFFB3solotEetidC+7OVqfpnIeIKqmXM53CnB2Obgsq1VuTa6KCk1wVfUh6253j3FL/EUoUZoFtG/XmV/25Vd1kLX2GzCLKOmWHVHGeT9wXHGrAoIdTlXgUyK36CYgU76njZ7/GgH5nZjWZXJRreFbJF8OGr5A6HoTNmDgbwsM5mimnjDLWcfObXyB3EVrdmjwN1SrJspWksH3R6BATGEXWUJv9jw8tDwLwFTKpHieywGPhM7SZaOKzycRePPRq9OPf9Aqrh0b/g1z0Ya8Fd0qTLjyjceXUAqoNqWMWQEae6m4NC3HQXSuTqLPlFcEFBE= - generated-by-azure"],"licenseModel":"LicenseIncluded","provisioningState":"Failed","lifecycleState":"Failed","vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet","giVersion":"19.0.0.0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet/subnets/SDKSubnet","dataCollectionOptions":{"isDiagnosticsEventsEnabled":true,"isHealthMonitoringEnabled":true,"isIncidentLogsEnabled":true},"displayName":"OFakeVmTestA","dbServers":["ocid1.dbserver.oc1.iad.anuwcljrowjpydqa4dd6z2sauygaffwmc5bu4xvgj225ydd2oeg4czdygpkq","ocid1.dbserver.oc1.iad.anuwcljrowjpydqaeal3y2sthszcjtquop3m22oj34mgokhp46anat5k6eta"]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudVmClusters/OfakeVMDND","name":"OfakeVMDND","type":"oracle.database/cloudvmclusters","location":"eastus","tags":{},"systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-06-26T06:01:08.6019507Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-06-26T06:10:01.0560546Z"},"properties":{"dataStorageSizeInTbs":2,"dbNodeStorageSizeInGbs":180,"memorySizeInGbs":90,"timeZone":"UTC","hostname":"tes","cpuCoreCount":6,"dataStoragePercentage":80,"isLocalBackupEnabled":false,"cloudExadataInfrastructureId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND","isSparseDiskgroupEnabled":false,"sshPublicKeys":["ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDRoq96ZN+7aUqHdJf5NzFHWtKlENgtW5jle/go2jx6287luUDRUG7Srp2C37xBN2Zw1GhsA0R3QlNl2rwL4Y87ssgrFVHqsWy0ZF2eTkRQ/qwgDZRcUI3jJvvr0q/yPdop3toeddQ9JljLF4ueD3WdZIvS7jlbqnzo9QHg/ymotmYPRmb4ggWfdQPlTHeWtLfKTwlDOwVrfjiTeDwLtIkhvRrzUqojpHr4aqXhxnr082cCrSNtBv3ZU09KDOVS5dgq7kTmOSW5WQ8Wof6rNOOqZ4WNoTGETF0CHSU3Bn1/ArNAynsVDddPEQRXs+GphEAfucJyPKVq5iywxAMznxLNeKVweEBUqH5s1nwc/y3ykzonn2XA8l4WoSHs3ChurkNnbeqaKPvY+cEr2mKjqcMB8mZalBqh1R3bpw1/8Tm77Q5AldbDCikS9o4fCeq0TGwAvnCWg5CUhmYMgP3PCitiwCx4FRU3R3zQQ7b7rMJoMgQxnCQ/5jZia3PmuQfxx10= + generated-by-azure"],"licenseModel":"LicenseIncluded","scanListenerPortTcp":1521,"provisioningState":"Failed","lifecycleState":"Failed","vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/0322yumfeiTest/providers/Microsoft.Network/virtualNetworks/0607yumfeiTest","giVersion":"19.0.0.0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/0322yumfeiTest/providers/Microsoft.Network/virtualNetworks/0607yumfeiTest/subnets/delegated","dataCollectionOptions":{"isDiagnosticsEventsEnabled":true,"isHealthMonitoringEnabled":true,"isIncidentLogsEnabled":true},"displayName":"OfakeVMDND","dbServers":["ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya2ajpysh3j2geyaqhrdayexc45tjbmwkwabolpdye6qhq","ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya4j553poytgkb7tweyymfo3ydjiaeqdhhduzbtxwunvwq","ocid1.dbserver.oc1.iad.anuwcljt2xgsw2yadr5ifpbjesmj72j7mjtiuwmmanoljxrvbg442xjnpqra"]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudVmClusters/OFake_VMC_AzCLI3","name":"OFake_VMC_AzCLI3","type":"oracle.database/cloudvmclusters","location":"eastus","systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-12-04T19:33:02.5545042Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-12-05T04:12:29.9966757Z"},"properties":{"ocid":"ocid1.cloudvmcluster.oc1.iad.anuwcljt2edokzyaicqasxporuiqbuddyjvehrvz3utvyjkpyddrvlkltzhq","listenerPort":1521,"nodeCount":2,"storageSizeInGbs":196608,"fileSystemConfigurationDetails":[{"mountPoint":"/","fileSystemSizeGb":15},{"mountPoint":"/u01","fileSystemSizeGb":250},{"mountPoint":"/tmp","fileSystemSizeGb":10},{"mountPoint":"/var","fileSystemSizeGb":10},{"mountPoint":"/var/log","fileSystemSizeGb":30},{"mountPoint":"/home","fileSystemSizeGb":4},{"mountPoint":"/var/log/audit","fileSystemSizeGb":10},{"mountPoint":"reserved","fileSystemSizeGb":9},{"mountPoint":"swap","fileSystemSizeGb":16}],"dataStorageSizeInTbs":2,"dbNodeStorageSizeInGbs":120,"memorySizeInGbs":60,"timeCreated":"2025-12-04T19:41:01.916Z","timeZone":"UTC","zoneId":"ocid1.dns-zone.oc1.iad.aaaaaaaa7bng33qzuaxso6uktdebpvygroiobslxpi7wd5oh4ahldp6brm5a","hostname":"rvilathu-qaapy","domain":"ocidelegated.ocipstestvnet.oraclevcn.com","cpuCoreCount":6,"ocpuCount":6,"dataStoragePercentage":80,"isLocalBackupEnabled":false,"cloudExadataInfrastructureId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND","isSparseDiskgroupEnabled":false,"sshPublicKeys":["ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDHJDAu814QnRaYFbuFswJX1IdpFAa8yVk4sneI3Q+QLoTyE4W5GR5f6TR5FqA03zxp41chkvjLysnc+EYJmjXQIbvrsEfaUenGu2AbYE3szBK9v+8iUy8JLgjoGuuxTU3BNCvMlTd00yw/qrOYbEDU9ZBnZVY/0nv2E03AzGUUObZJ8IUgNRUmNdWVFQiVUcmkRRM+XsIEUpuh0S6YJLLweZd+H50Y1mhKWXnZZH8Ed/5EmkSr7cO5WEKU2O/KSbavybkjUVWi6dcQMfwmNLBH9aByqAW8QvcZkZDvxLmimLnm3Jd/QDVvGesjyLbUrWfpbsaDXs+DgjTlFlxyqLPYMON5cfSg8wBj3Y176yWxwmrPnkro8X1Y93poSDQZb9SU68DsTrgVa6FoXWPkbUXz/nZX9GkTwE1Nhy2EPL4J+J50ZUZWG0bK25dFTKrzimLn1Qmvrx3so9qDId9LWbpYI6cJYxDTkGdGpuaHqDqGAi+5HeeXxx3/zO8pErPxy20= + generated-by-azure"],"licenseModel":"LicenseIncluded","diskRedundancy":"High","scanIpIds":[],"scanDnsName":"rvilathu-qaapy-scan.ocidelegated.ocipstestvnet.oraclevcn.com","scanListenerPortTcp":1521,"scanListenerPortTcpSsl":2484,"shape":"Exadata.X9M","provisioningState":"Succeeded","lifecycleState":"Available","vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet","giVersion":"19.9.0.0.0","ociUrl":"https://cloud.oracle.com/dbaas/cloudVmClusters/ocid1.cloudvmcluster.oc1.iad.anuwcljt2edokzyaicqasxporuiqbuddyjvehrvz3utvyjkpyddrvlkltzhq?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated","dataCollectionOptions":{"isDiagnosticsEventsEnabled":false,"isHealthMonitoringEnabled":false,"isIncidentLogsEnabled":false},"displayName":"OFake_VMC_AzCLI3","dbServers":["ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya4j553poytgkb7tweyymfo3ydjiaeqdhhduzbtxwunvwq","ocid1.dbserver.oc1.iad.anuwcljt2xgsw2yadr5ifpbjesmj72j7mjtiuwmmanoljxrvbg442xjnpqra"],"compartmentId":"ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","subnetOcid":"ocid1.subnet.oc1.iad.aaaaaaaa3qn3g33p5xbyiszzr3xmdulrop7mwxfke6cezbfsx4uetxdbl2ca","storageManagementType":"ASM","computeModel":"OCPU","nsgUrl":"https://cloud.oracle.com/networking/vcns/ocid1.vcn.oc1.iad.amaaaaaa2edokzyamsfbm6llgg26ncjie4btezbar3kewsstx5pq4hbrxvna/network-security-groups/ocid1.networksecuritygroup.oc1.iad.aaaaaaaavmclddwbsj5lc4bqge4zc3a5ylz6r2stwg4n5ectic6rqw24pysa?region=us-ashburn-1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudVmClusters/OFake_VMC_AzCLIMih","name":"OFake_VMC_AzCLIMih","type":"oracle.database/cloudvmclusters","location":"eastus","systemData":{"createdBy":"mihret.kidane@oracle.com","createdByType":"User","createdAt":"2025-12-05T04:39:02.2523867Z","lastModifiedBy":"a50e6610-5416-4c2a-88b6-172c7f376f7d","lastModifiedByType":"Application","lastModifiedAt":"2025-12-05T04:50:00.7253686Z"},"properties":{"ocid":"ocid1.cloudvmcluster.oc1.iad.anuwcljt2edokzyacvz3lyo4i5zdnpuchwo6vlwmmrjtwhnskycixg5ltjla","listenerPort":1521,"nodeCount":2,"storageSizeInGbs":196608,"fileSystemConfigurationDetails":[{"mountPoint":"/","fileSystemSizeGb":15},{"mountPoint":"/u01","fileSystemSizeGb":250},{"mountPoint":"/tmp","fileSystemSizeGb":10},{"mountPoint":"/var","fileSystemSizeGb":10},{"mountPoint":"/var/log","fileSystemSizeGb":30},{"mountPoint":"/home","fileSystemSizeGb":4},{"mountPoint":"/var/log/audit","fileSystemSizeGb":10},{"mountPoint":"reserved","fileSystemSizeGb":9},{"mountPoint":"swap","fileSystemSizeGb":16}],"dataStorageSizeInTbs":2,"dbNodeStorageSizeInGbs":120,"memorySizeInGbs":60,"timeCreated":"2025-12-05T04:47:07.632Z","timeZone":"UTC","zoneId":"ocid1.dns-zone.oc1.iad.aaaaaaaa7bng33qzuaxso6uktdebpvygroiobslxpi7wd5oh4ahldp6brm5a","hostname":"rvilathu-owh9t","domain":"ocidelegated.ocipstestvnet.oraclevcn.com","cpuCoreCount":6,"ocpuCount":6,"dataStoragePercentage":80,"isLocalBackupEnabled":false,"cloudExadataInfrastructureId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND","isSparseDiskgroupEnabled":false,"sshPublicKeys":["ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABgQDHJDAu814QnRaYFbuFswJX1IdpFAa8yVk4sneI3Q+QLoTyE4W5GR5f6TR5FqA03zxp41chkvjLysnc+EYJmjXQIbvrsEfaUenGu2AbYE3szBK9v+8iUy8JLgjoGuuxTU3BNCvMlTd00yw/qrOYbEDU9ZBnZVY/0nv2E03AzGUUObZJ8IUgNRUmNdWVFQiVUcmkRRM+XsIEUpuh0S6YJLLweZd+H50Y1mhKWXnZZH8Ed/5EmkSr7cO5WEKU2O/KSbavybkjUVWi6dcQMfwmNLBH9aByqAW8QvcZkZDvxLmimLnm3Jd/QDVvGesjyLbUrWfpbsaDXs+DgjTlFlxyqLPYMON5cfSg8wBj3Y176yWxwmrPnkro8X1Y93poSDQZb9SU68DsTrgVa6FoXWPkbUXz/nZX9GkTwE1Nhy2EPL4J+J50ZUZWG0bK25dFTKrzimLn1Qmvrx3so9qDId9LWbpYI6cJYxDTkGdGpuaHqDqGAi+5HeeXxx3/zO8pErPxy20= + generated-by-azure"],"licenseModel":"LicenseIncluded","diskRedundancy":"High","scanIpIds":[],"scanDnsName":"rvilathu-owh9t-scan.ocidelegated.ocipstestvnet.oraclevcn.com","scanListenerPortTcp":1521,"scanListenerPortTcpSsl":2484,"shape":"Exadata.X9M","provisioningState":"Succeeded","lifecycleState":"Available","vnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet","giVersion":"19.9.0.0.0","ociUrl":"https://cloud.oracle.com/dbaas/cloudVmClusters/ocid1.cloudvmcluster.oc1.iad.anuwcljt2edokzyacvz3lyo4i5zdnpuchwo6vlwmmrjtwhnskycixg5ltjla?region=us-ashburn-1&tenant=orpsandbox7&compartmentId=ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated","dataCollectionOptions":{"isDiagnosticsEventsEnabled":false,"isHealthMonitoringEnabled":false,"isIncidentLogsEnabled":false},"displayName":"OFake_VMC_AzCLIMih","dbServers":["ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya4j553poytgkb7tweyymfo3ydjiaeqdhhduzbtxwunvwq","ocid1.dbserver.oc1.iad.anuwcljt2xgsw2yadr5ifpbjesmj72j7mjtiuwmmanoljxrvbg442xjnpqra"],"compartmentId":"ocid1.compartment.oc1..aaaaaaaadep52emiauprgkax4zmj4jycppdafs2tg7pnttdyhfldg2v3i5ea","subnetOcid":"ocid1.subnet.oc1.iad.aaaaaaaa3qn3g33p5xbyiszzr3xmdulrop7mwxfke6cezbfsx4uetxdbl2ca","storageManagementType":"ASM","computeModel":"OCPU","nsgUrl":"https://cloud.oracle.com/networking/vcns/ocid1.vcn.oc1.iad.amaaaaaa2edokzyamsfbm6llgg26ncjie4btezbar3kewsstx5pq4hbrxvna/network-security-groups/ocid1.networksecuritygroup.oc1.iad.aaaaaaaanvcy5py3h22guebbnlusxaj3lm4f4kyrpx2a6hswzpcivtwnjtsa?region=us-ashburn-1"}}]}' headers: cache-control: - no-cache content-length: - - '2296' + - '10613' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 11:43:24 GMT + - Fri, 05 Dec 2025 05:21:12 GMT expires: - '-1' pragma: @@ -152,12 +160,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-original-request-ids: + - 762ac2b8-58ee-4b2b-9c2f-a95ec8a3bc9d x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 350FE3923CE54F02A22D1699632E4A4A Ref B: AMS231032609053 Ref C: 2024-07-05T11:43:25Z' + - 'Ref A: D2612BFB695949919DE714EEAB0B09E3 Ref B: BY1AA1072318025 Ref C: 2025-12-05T05:21:13Z' status: code: 200 message: OK @@ -167,7 +177,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate + - gzip, deflate, zstd CommandName: - oracle-database cloud-vm-cluster delete Connection: @@ -177,15 +187,15 @@ interactions: ParameterSetName: - --resource-group --name --no-wait --yes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.13 (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.81.0 azsdk-python-core/1.35.0 Python/3.14.0 (macOS-15.7.2-arm64-arm-64bit-Mach-O) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudVmClusters/OFakeVmTestA?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudVmClusters/OFake_VMC_AzCLIMih?api-version=2025-09-01 response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/3002305f-2d45-4a0b-ac26-f2e3367e0fba*01BCF47C322EABD9AE44CF5C780660ED65BB24F7331048C50F2D66224794730B?api-version=2023-09-01&t=638557766086022974&c=MIIHpTCCBo2gAwIBAgITfwN4zzUuivvTBCLCCQAEA3jPNTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNjI0MTEyOTU2WhcNMjUwNjE5MTEyOTU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANvVWo1xOJRhTabFDg9tH83KxBFFsI-8hXpNc70gVGUo9vdR_GCto5GXht5Nk15RV9Eui7tLs-n7VOqRt4ZJ5VAjpwORPU0ibxKV9KxuriafJTjL7Qrk0JaSp7WGJqPW-J-Pd5L3tP1bFJur8kjM0bafBsjx64XEFWORLz5Fn2lp6TrN09Jd5b8K0HSCXKW2e3XMjLsNhXY8nqovBeHTMKNIUXpy2nH5fjVOimZk6Q4T6__1OhvvEVJZsCL05KUdxdO_hsLWYu-CjOT4AShuIDdibMapH2IdzaeWrawQNPVXKZ_KeKth7kpbOhSv1QWmfPOy3V9F2YLccUW5EGnQeZUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQo83UWtIVJoZyZu85mKVA3wYeN-TAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAIjL4XB6DpRu-qyv5OqJYhIEmeI3Qe1UttC_KzpXoBWbVudKDV9CE0p6ofXSgAL0ecWXtRLq-_0Fc7jpgUBZrqam1Kegg-ApMr78hSiTUCMxHgWpUKN7_6b26skb5WN_0GWObM78VwcVTyKQ7K4Axw_Iik9WglVk9QKreZ9lSNPWhI6DX1bb-Pl2gRDXKY1bw3t_3-FiYyzROsU-9IAJozqZs_m-J3bfkcJ01J8Eg21vEdK-9_4uHA1qfGU7aJr9APH4fc5S9AonGi9UeSEiqG3Bas997LqgN_Wd49UeSnfabQl54UewiQjaFThlNO5qQ9xQ7IuuGjkqAH6M9R_uIo&s=lfvZWeZA3LuufOwrpm2wPa4a2zOqHZ_He221CRRRWgC81kwAjxbWrv5xInL1nQH1Miyqz-4uH-b90sAjMq5uGCBa4_-UGVvvXmYALgNjfPv35maxRAGALTCZnEly-ba8oBe84m2RyaKGlwgtoLPitQ9YwF587XxwrPDDzZk5yDpk-nxYApTEwfubKvMYtLMdFo-g8CliNr5rntdi2JCuC-gpdAZb-Vu000GMqj5d2PnphuUYJIDlQx_8gpVqwA7CoagGZyiwJ1hWmG_BRNog6R4TgvZIoqZ6fLlzIvN7eJT9iGsGOWiXYNoI3hhMPiEk9zAPU4BIy8ZjicDraHS36g&h=rPjCb8n-xaX1iy7TQCtVPlJPe5WKwWDRce-AsG1m3wM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/3cb079eb-7c53-4a28-a5f4-7299d45509e6*948BB81A93B23211B966FC1636836C949AFE70FD4175410B3B0FB4F340E3B6E6?api-version=2025-09-01&t=639005088758910506&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=BNJQqnoTfDHdKN188QI9jjs5jG6P8rbR0a15HKKefHXzg2AAWs3f7EDDGRHvSTWWNm8vhmmea_QcfejLHF2iWU6uHbJl3T_a-z2ALoO7P5bgz1PmI6OVPzphYMXoJbGpQmyfeT1gLsPDBflfsFepgOqltw7ZZeFrWJH8tdskRziZwEvgL3rtgvlbf5qIlVcoUgPIvWWr9Kja_IvEHlkZSADsdAQen7Gd-yTjr83qPV3DTiKPm3fv0_uePtVWg6DDkNRUiitYczAljvBVakZKNzqtJ2M0HBGxlurezJg2YS4CmR8arTpnaaRKhpnOxQ7MP1bg1I8JeFiupj0__gbCpQ&h=noaE_GfcJljjEwMP6i5rSdE_lfHfMCTvtL2qtfhB4eg cache-control: - no-cache content-length: @@ -193,23 +203,27 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Jul 2024 11:43:28 GMT + - Fri, 05 Dec 2025 05:21:15 GMT etag: - - '"7103cce3-0000-0100-0000-6687dc600000"' + - '"c509516f-0000-0100-0000-69326bcb0000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/3002305f-2d45-4a0b-ac26-f2e3367e0fba*01BCF47C322EABD9AE44CF5C780660ED65BB24F7331048C50F2D66224794730B?api-version=2023-09-01&t=638557766086022974&c=MIIHpTCCBo2gAwIBAgITfwN4zzUuivvTBCLCCQAEA3jPNTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNjI0MTEyOTU2WhcNMjUwNjE5MTEyOTU2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANvVWo1xOJRhTabFDg9tH83KxBFFsI-8hXpNc70gVGUo9vdR_GCto5GXht5Nk15RV9Eui7tLs-n7VOqRt4ZJ5VAjpwORPU0ibxKV9KxuriafJTjL7Qrk0JaSp7WGJqPW-J-Pd5L3tP1bFJur8kjM0bafBsjx64XEFWORLz5Fn2lp6TrN09Jd5b8K0HSCXKW2e3XMjLsNhXY8nqovBeHTMKNIUXpy2nH5fjVOimZk6Q4T6__1OhvvEVJZsCL05KUdxdO_hsLWYu-CjOT4AShuIDdibMapH2IdzaeWrawQNPVXKZ_KeKth7kpbOhSv1QWmfPOy3V9F2YLccUW5EGnQeZUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQo83UWtIVJoZyZu85mKVA3wYeN-TAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAIjL4XB6DpRu-qyv5OqJYhIEmeI3Qe1UttC_KzpXoBWbVudKDV9CE0p6ofXSgAL0ecWXtRLq-_0Fc7jpgUBZrqam1Kegg-ApMr78hSiTUCMxHgWpUKN7_6b26skb5WN_0GWObM78VwcVTyKQ7K4Axw_Iik9WglVk9QKreZ9lSNPWhI6DX1bb-Pl2gRDXKY1bw3t_3-FiYyzROsU-9IAJozqZs_m-J3bfkcJ01J8Eg21vEdK-9_4uHA1qfGU7aJr9APH4fc5S9AonGi9UeSEiqG3Bas997LqgN_Wd49UeSnfabQl54UewiQjaFThlNO5qQ9xQ7IuuGjkqAH6M9R_uIo&s=lfvZWeZA3LuufOwrpm2wPa4a2zOqHZ_He221CRRRWgC81kwAjxbWrv5xInL1nQH1Miyqz-4uH-b90sAjMq5uGCBa4_-UGVvvXmYALgNjfPv35maxRAGALTCZnEly-ba8oBe84m2RyaKGlwgtoLPitQ9YwF587XxwrPDDzZk5yDpk-nxYApTEwfubKvMYtLMdFo-g8CliNr5rntdi2JCuC-gpdAZb-Vu000GMqj5d2PnphuUYJIDlQx_8gpVqwA7CoagGZyiwJ1hWmG_BRNog6R4TgvZIoqZ6fLlzIvN7eJT9iGsGOWiXYNoI3hhMPiEk9zAPU4BIy8ZjicDraHS36g&h=rPjCb8n-xaX1iy7TQCtVPlJPe5WKwWDRce-AsG1m3wM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Oracle.Database/locations/EASTUS/operationStatuses/3cb079eb-7c53-4a28-a5f4-7299d45509e6*948BB81A93B23211B966FC1636836C949AFE70FD4175410B3B0FB4F340E3B6E6?api-version=2025-09-01&t=639005088758910506&c=MIIHhzCCBm-gAwIBAgITfAlY2NhYWz_rkiYT0gAACVjY2DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDE5MDMwMTUzWhcNMjYwNDE3MDMwMTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALb7q8LgkqS_7Sa915WSEvu_LerzErVZMTTkw7KXLAdnIWMjvrOw1RefK_Xe_cFp1_e2xVZM1Zog0tE-_XlllqRwZapoZJTL14Kmh7C0GvefEv-5GdvOnMy695cBHvQJTv1mqxiuvsmhJdB5__zphMuTvy0lF2K1ceor52XBk_VLEQtBcMhz8UUKVZ2KboqO1b56fjCSzbjn-sv5cQ7zx0_GZYADJbddS7dvpIwmb3QZzHcEcbAec_ouQ-YyxmKTpGa17K6DB_CoquSZ2A0TRHJqBpgeGjL0b652ekPbj9oy-sOOusDnwfN95QPWCJFjmNz1aKdnUhXmx8FU134pOkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSi0lU0HWkl1SHwyRBzQPtbjPmHfTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACdnVC4tNlyw3EyuiJTFX5692Q_SgsQB7SjH2__G8q1XVJ0GiNSI4NKXoC8rVoxrLDL28sgifuyaEjoA9IYoahBs9l6DzxOxA0fDaBOTteaFuniOzVtW6WubmshP_yDd1pFPJydCOEtgKApCNY8y5eo8GzdatHpMEID7E2ZDrxTnq7PtzLXpoeF0A5W6qhqGypYabh7ugJ5-R8hb1iOlFYy2yvCrBaAW9wwnUPpO3DQRyoxnbzomyTIbrxEJuuaalADYKnu7GVtfL43Srrrx_HEfhy1rsf0ZK9CmJ64NOTHXIRG0kYIl5LhwZVZSEDqBPTAAy9oAm1i5D1jbVw2FPF8&s=BNJQqnoTfDHdKN188QI9jjs5jG6P8rbR0a15HKKefHXzg2AAWs3f7EDDGRHvSTWWNm8vhmmea_QcfejLHF2iWU6uHbJl3T_a-z2ALoO7P5bgz1PmI6OVPzphYMXoJbGpQmyfeT1gLsPDBflfsFepgOqltw7ZZeFrWJH8tdskRziZwEvgL3rtgvlbf5qIlVcoUgPIvWWr9Kja_IvEHlkZSADsdAQen7Gd-yTjr83qPV3DTiKPm3fv0_uePtVWg6DDkNRUiitYczAljvBVakZKNzqtJ2M0HBGxlurezJg2YS4CmR8arTpnaaRKhpnOxQ7MP1bg1I8JeFiupj0__gbCpQ&h=noaE_GfcJljjEwMP6i5rSdE_lfHfMCTvtL2qtfhB4eg opc-request-id: - - /D8B98A1A72D6A807A0E2747465CDB82E/30466DEB71CEAA5EBD983F7978C4C65F + - oci-D66093111076855-202512050521/7BF64BACE801756DCA6B326949414474/19E9B110851095C269E03BDE8317A92A pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Origin,Accept-Encoding x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=9ef05df2-ad7c-4737-aba9-a5e1b3fa5ae1,objectId=ed0404db-6d52-44c6-a09d-182ac122b912/eastus/c6692442-025a-472a-a239-013a2bc6723f x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-deletes: @@ -217,7 +231,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-deletes: - '2999' x-msedge-ref: - - 'Ref A: C91B1AF03A0E4A999B09D7F60B9DBDDC Ref B: AMS231032609021 Ref C: 2024-07-05T11:43:25Z' + - 'Ref A: E39C325CF6A44E5B88244D1E1D0C7A44 Ref B: BY1AA1072319025 Ref C: 2025-12-05T05:21:14Z' status: code: 202 message: Accepted diff --git a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_basedb_delete.py b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_basedb_delete.py new file mode 100644 index 00000000000..d6a5edb2067 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_basedb_delete.py @@ -0,0 +1,50 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- +import os +import unittest +import time + +from azure.cli.testsdk.scenario_tests import AllowLargeResponse +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) + +class OracleBaseDbDeleteScenarioTest(ScenarioTest): + @live_only() + @AllowLargeResponse(size_kb=10240) + @ResourceGroupPreparer(name_prefix='cli_test_odba_rg') + def setUp(self): + subscription_id = self.get_subscription_id() + self.kwargs.update({ + 'resource_group': 'PowerShellTestRg', + }) + + def test_basedb_delete_operations(self): + + # Delete db systems + self.cmd( + 'az oracle-database db-system delete ' + '--name AzureCliSdkNewDdT ' + '--resource-group AzureCli ' + '--yes --no-wait' + ) + # Delete network anchor + self.cmd( + 'az oracle-database network-anchor delete ' + '--name PowershellTest1 ' + '--resource-group {resource_group} ' + '--yes --no-wait' + ) + + # Delete resource anchor + self.cmd( + 'az oracle-database resource-anchor delete ' + '--name powershell ' + '--resource-group {resource_group} ' + '--yes --no-wait' + ) + + + diff --git a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database.py b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database.py index 9142a281a72..a79d8064850 100644 --- a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database.py +++ b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database.py @@ -9,21 +9,22 @@ import time from azure.cli.testsdk.scenario_tests import AllowLargeResponse -from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) class OracleDatabaseScenario(ScenarioTest): + @live_only() @AllowLargeResponse(size_kb=10240) @ResourceGroupPreparer(name_prefix='cli_test_odba_rg') def test_oracledatabase_exadata(self, resource_group): subscription_id = self.get_subscription_id() self.kwargs.update({ - 'infra_name': 'OFake_Infra_AzCLI', + 'infra_name': 'OFake_Infra_AzCLINe', 'location': 'eastus', 'shape': 'Exadata.X9M', 'tags': '{tagk1:tagv1}' }) self.cmd('az oracle-database cloud-exadata-infrastructure create ' - '--resource-group {rg} ' + '--resource-group testAzureCLi ' '--name {infra_name} ' '--zones 2 ' '--compute-count 2 ' @@ -33,32 +34,32 @@ def test_oracledatabase_exadata(self, resource_group): '--storage-count 3 --no-wait') self.cmd('az oracle-database cloud-exadata-infrastructure show ' '--resource-group PowerShellTestRg ' - '--name OFake_PowerShellTestExaInfra ') + '--name OfakeExaDND ') self.cmd('az oracle-database cloud-exadata-infrastructure list ' '--resource-group PowerShellTestRg ') self.cmd('az oracle-database cloud-exadata-infrastructure database-server list ' - '--cloudexadatainfrastructurename OFake_PowerShellTestExaInfra ' + '--cloudexadatainfrastructurename OfakeExaDND ' '--resource-group PowerShellTestRg ') self.cmd('az oracle-database cloud-vm-cluster create ' - '--cloud-exadata-infrastructure-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Oracle.Database/cloudExadataInfrastructures/DemoExaInfra ' - '--resource-group SDKTestRG ' + '--cloud-exadata-infrastructure-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Oracle.Database/cloudExadataInfrastructures/OfakeExaDND ' + '--resource-group PowerShellTestRg ' '--location eastus ' '--cpu-core-count 6 ' '--data-storage-percentage 80 ' '--data-storage-size-in-tbs 2 ' '--db-node-storage-size-in-gbs 120 ' - '--db-servers [\'ocid1.dbserver.oc1.iad.xxxxx\',\'ocid1.dbserver.oc1.iad.xxxxx\',\'ocid1.dbserver.oc1.iad.xxxxx\'] ' - '--display-name OFake_VMC_AzCLI3 ' - '--name OFake_VMC_AzCLI3 ' + '--db-servers [\'ocid1.dbserver.oc1.iad.anuwcljt2xgsw2yadr5ifpbjesmj72j7mjtiuwmmanoljxrvbg442xjnpqra\',\'ocid1.dbserver.oc1.iad.anuwcljt2xgsw2ya4j553poytgkb7tweyymfo3ydjiaeqdhhduzbtxwunvwq\'] ' + '--display-name OFake_VMC_AzCLIMih ' + '--name OFake_VMC_AzCLIMih ' '--gi-version 19.0.0.0 ' '--hostname rvilathu ' '--is-local-backup-enabled False ' '--is-sparse-diskgroup-enabled False ' '--license-model LicenseIncluded ' '--memory-size-in-gbs 60 ' - '--ssh-public-keys \'ssh-rsa keykeykeykeykey generated-by-azure\' ' - '--subnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet/subnets/SDKSubnet ' + '--ssh-public-keys \'ssh-rsa xxxx\' ' + '--subnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated ' '--time-zone UTC ' - '--vnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet ' + '--vnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet ' '--no-wait ') diff --git a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_adbs.py b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_adbs.py index 21d44d74222..b4e324ed921 100644 --- a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_adbs.py +++ b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_adbs.py @@ -9,9 +9,10 @@ import time from azure.cli.testsdk.scenario_tests import AllowLargeResponse -from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) class OracleDatabaseAdbsScenario(ScenarioTest): + @live_only() @AllowLargeResponse(size_kb=10240) @ResourceGroupPreparer(name_prefix='cli_test_odba_rg') def test_oracledatabase_adbs(self, resource_group): @@ -24,15 +25,15 @@ def test_oracledatabase_adbs(self, resource_group): self.cmd('az oracle-database dns-private-zone list --location eastus ') self.cmd('az oracle-database dns-private-view list --location eastus ') self.cmd('az oracle-database autonomous-database create --location eastus ' - '--autonomousdatabasename ADBScli1 ' - '--resource-group SDKTestRG ' - '--subnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet/subnets/SDKSubnet ' - '--display-name ADBScli1 ' + '--autonomousdatabasename ADBScliTest ' + '--resource-group PowerShellTestRg ' + '--subnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated ' + '--display-name ADBScli1Mih ' '--compute-model ECPU --compute-count 2 ' '--data-storage-size-in-gbs 32 --license-model BringYourOwnLicense ' '--db-workload OLTP --admin-password TestPass#2024# ' '--db-version 19c --character-set AL32UTF8 --ncharacter-set AL16UTF16 ' - '--vnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDKTestRG/providers/Microsoft.Network/virtualNetworks/SDKVnet --regular --no-wait ') + '--vnet-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet --regular --no-wait ') self.cmd('az oracle-database autonomous-database delete ' '--autonomousdatabasename ADBScli ' - '--resource-group SDKTestRG --yes --no-wait ') \ No newline at end of file + '--resource-group PowerShellTestRg --yes --no-wait ') \ No newline at end of file diff --git a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_adbsoper.py b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_adbsoper.py index 471b5b53f63..08f9afed0ae 100644 --- a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_adbsoper.py +++ b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_adbsoper.py @@ -9,12 +9,13 @@ import time from azure.cli.testsdk.scenario_tests import AllowLargeResponse -from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) class OracleDatabaseAdbsGetScenario(ScenarioTest): + @live_only() @AllowLargeResponse(size_kb=10240) @ResourceGroupPreparer(name_prefix='cli_test_odba_rg') def test_oracledatabase_adbsget(self, resource_group): subscription_id = self.get_subscription_id() - self.cmd('az oracle-database autonomous-database show --name eamonterraformtest501 --resource-group eamonterraformtest500 ') - self.cmd('az oracle-database autonomous-database list --resource-group eamonterraformtest500 ') \ No newline at end of file + self.cmd('az oracle-database autonomous-database show --name ADBScli1 --resource-group PowerShellTestRg ') + self.cmd('az oracle-database autonomous-database list --resource-group PowerShellTestRg ') \ No newline at end of file diff --git a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_deletes.py b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_deletes.py index 9390742580f..821832d83be 100644 --- a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_deletes.py +++ b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_deletes.py @@ -9,31 +9,33 @@ import time from azure.cli.testsdk.scenario_tests import AllowLargeResponse -from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) class OracleDatabaseDeleteScenario(ScenarioTest): + @live_only() @AllowLargeResponse(size_kb=10240) @ResourceGroupPreparer(name_prefix='cli_test_odba_rg') def test_oracledatabase_exadata_deletes(self, resource_group): subscription_id = self.get_subscription_id() self.kwargs.update({ - 'infra_name': 'OFake_Infra_AzCLI', + 'infra_name': 'OFake_Infra_AzCLIMi', 'location': 'eastus', + 'resource_group': 'PowerShellTestRg', 'shape': 'Exadata.X9M', 'tags': '{tagk1:tagv1}' }) self.cmd('az oracle-database cloud-exadata-infrastructure delete ' - '--resource-group ObsTestingFra ' - '--name OFake_ppratees_0216_2 ' + '--resource-group testAzureCLi ' + '--name {infra_name} ' '--no-wait ' '--yes ') self.cmd('az oracle-database cloud-vm-cluster show ' - '--resource-group SDKTestRG ' - '--name OFakeVmTestA ') + '--resource-group {resource_group} ' + '--name OFake_VMC_AzCLIMih ') self.cmd('az oracle-database cloud-vm-cluster list ' - '--resource-group SDKTestRG ') + '--resource-group {resource_group} ') self.cmd('az oracle-database cloud-vm-cluster delete ' - '--resource-group SDKTestRG ' - '--name OFakeVmTestA ' + '--resource-group {resource_group} ' + '--name OFake_VMC_AzCLIMih ' '--no-wait ' '--yes ') \ No newline at end of file diff --git a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_exadb_vmcluster.py b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_exadb_vmcluster.py new file mode 100644 index 00000000000..7a20647e103 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_exadb_vmcluster.py @@ -0,0 +1,82 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- +import os +import unittest +import time + +from azure.cli.testsdk.scenario_tests import AllowLargeResponse +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) + +class OracleExaDbVmclusterScenarioTest(ScenarioTest): + @live_only() + @AllowLargeResponse(size_kb=10240) + @ResourceGroupPreparer(name_prefix='cli_test_odba_rg') + def setUp(self): + subscription_id = self.get_subscription_id() + self.kwargs.update({ + 'resource_group': 'testAzureCLi', + 'exascale_db_storage_vault_name': 'AzCli_vaultTestMih', + 'vm_cluster_name': 'AzCli_exadbclusterMih', + 'location': 'eastus', + 'zone': '2', + 'description': 'Test Description', + 'ssh_public_key': 'ssh-rsa xxxx', + 'display_name': 'test-vault', + 'high_capacity_database_storage_input': 'total-size-in-gbs=300', + 'enabled_ecpu_count': 16, + 'grid_image_ocid': 'ocid.xx', + 'hostname': 'test-host', + 'node_count': 2, + 'shape': 'EXADBXS', + 'vnet_id': '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet', + 'subnet_id': '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PowerShellTestRg/providers/Microsoft.Network/virtualNetworks/PSTestVnet/subnets/delegated', + 'total_ecpu_count': 32, + 'vm_file_system_storage': 'total-size-in-gbs=1024', + 'tags': '{tagk1:tagv1}', + }) + + def test_exad_vmcluster(self): + # Fetch Storage Vault ID + db_storage_vault = self.cmd( + 'az oracle-database exascale-db-storage-vault show ' + '--name {exascale_db_storage_vault_name} ' + '--resource-group {resource_group} ' + ).get_output_in_json() + self.kwargs['db_storage_vault_id'] = db_storage_vault['id'] + + # Create VM Cluster + self.cmd( + 'az oracle-database exadb-vm-cluster create ' + '--name {vm_cluster_name} ' + '--resource-group {resource_group} ' + '--location {location} ' + '--zone {zone} ' + '--exascale-db-storage-vault-id {db_storage_vault_id} ' + '--display-name {vm_cluster_name} ' + '--enabled-ecpu-count {enabled_ecpu_count} ' + '--grid-image-ocid {grid_image_ocid} ' + '--hostname {hostname} ' + '--node-count {node_count} ' + '--shape {shape} ' + '--ssh-public-keys \'{ssh_public_key}\' ' + '--vnet-id {vnet_id} ' + '--subnet-id {subnet_id} ' + '--total-ecpu-count {total_ecpu_count} ' + '--vm-file-system-storage {vm_file_system_storage} ' + '--no-wait' + ) + + # Show VM Cluster + self.cmd( + 'az oracle-database exadb-vm-cluster show ' + '--name {vm_cluster_name} ' + '--resource-group {resource_group} ' + ) + + # List VM Clusters + self.cmd('az oracle-database exadb-vm-cluster list ' + '--resource-group {resource_group} ') diff --git a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_exascale_storage_vault.py b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_exascale_storage_vault.py new file mode 100644 index 00000000000..b0fc708c9e4 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_database_exascale_storage_vault.py @@ -0,0 +1,50 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- +import os +import unittest +import time + +from azure.cli.testsdk.scenario_tests import AllowLargeResponse +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) + +class OracleExaScaleStorageVaultScenarioTest(ScenarioTest): + @live_only() + @AllowLargeResponse(size_kb=10240) + @ResourceGroupPreparer(name_prefix='cli_test_odba_rg') + def setUp(self): + subscription_id = self.get_subscription_id() + self.kwargs.update({ + 'resource_group': 'testAzureCLi', + 'exascale_db_storage_vault_name': 'AzCli_vaultTestMih', + 'location': 'eastus', + 'zone': '2', + 'description': 'Test Description', + 'display_name': 'test-vault', + 'high_capacity_database_storage_input': 'total-size-in-gbs=300', + }) + + def test_exascale_storage_vault_lifecycle(self): + # CREATE + self.cmd('az oracle-database exascale-db-storage-vault create ' + '--name {exascale_db_storage_vault_name} ' + '--resource-group {resource_group} ' + '--location {location} ' + '--zone {zone} ' + '--description "{description}" ' + '--display-name {display_name} ' + '--high-capacity-database-storage-input {high_capacity_database_storage_input} ' + '--no-wait' + ) + + # SHOW + self.cmd('az oracle-database exascale-db-storage-vault show ' + '--name {exascale_db_storage_vault_name} ' + '--resource-group {resource_group} ') + + # LIST + self.cmd('az oracle-database exascale-db-storage-vault list ' + '--resource-group {resource_group} ') \ No newline at end of file diff --git a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_db_systems.py b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_db_systems.py new file mode 100644 index 00000000000..d61c8110f16 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_db_systems.py @@ -0,0 +1,76 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- +import os +import unittest +import time + +from azure.cli.testsdk.scenario_tests import AllowLargeResponse +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) + +class OracleDbSystemScenarioTest(ScenarioTest): + @live_only() + @AllowLargeResponse(size_kb=10240) + @ResourceGroupPreparer(name_prefix='cli_test_odba_rg') + def setUp(self): + subscription_id = self.get_subscription_id() + self.kwargs.update({ + 'db_system_name': 'AzureCliSdkNewMih', + 'resource_group': 'azCliTest', + 'location': 'eastus', + 'zone': '1', + 'database_edition': 'EnterpriseEdition', + 'admin_password': 'TesT##1234', + 'resource_anchor_id': '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azCliTest/providers/Oracle.Database/resourceAnchors/AzureCliTestMi', + 'network_anchor_id': '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yumfeiTest/providers/Oracle.Database/networkAnchors/1202yumfeiDnsNa1', + 'hostname': 'basedbNew', + 'shape': 'VM.Standard.E5.Flex', + 'display_name': 'BaseDbWhitelisMih', + 'node_count': 1, + 'initial_data_storage_size_in_gb': 256, + 'compute_model': 'OCPU', + 'compute_count': 4, + 'db_version': '19.27.0.0', + 'pdb_name': 'pdbNameSep05', + 'db_system_option_storage_management': 'LVM', + }) + + def test_create_db_system(self): + self.cmd( + 'az oracle-database db-system create ' + '--name {db_system_name} ' + '--resource-group {resource_group} ' + '--location {location} ' + '--zones {zone} ' + '--database-edition {database_edition} ' + '--admin-password {admin_password} ' + '--resource-anchor-id {resource_anchor_id} ' + '--network-anchor-id {network_anchor_id} ' + '--hostname {hostname} ' + '--shape {shape} ' + '--display-name {display_name} ' + '--node-count {node_count} ' + '--initial-data-storage-size-in-gb {initial_data_storage_size_in_gb} ' + '--compute-model {compute_model} ' + '--compute-count {compute_count} ' + '--db-version {db_version} ' + '--pdb-name {pdb_name} ' + '--db-system-options storage-management={db_system_option_storage_management} ' + '--ssh-public-keys \'ssh-rsa xxxx\' ' + '--no-wait' + ) + # Show + self.cmd( + 'az oracle-database db-system show ' + '--name {db_system_name} ' + '--resource-group {resource_group} ' + ) + + # List + self.cmd( + 'az oracle-database db-system list ' + '--resource-group {resource_group} ' + ) \ No newline at end of file diff --git a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_network_anchor.py b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_network_anchor.py new file mode 100644 index 00000000000..a9c69e2b6e4 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_network_anchor.py @@ -0,0 +1,51 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- +import os +import unittest +import time + +from azure.cli.testsdk.scenario_tests import AllowLargeResponse +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) + +class OracleNetworkAnchorScenarioTest(ScenarioTest): + @live_only() + @AllowLargeResponse(size_kb=10240) + @ResourceGroupPreparer(name_prefix='cli_test_odba_rg') + def setUp(self): + subscription_id = self.get_subscription_id() + self.kwargs.update({ + 'resource_group': 'azCliTest', + 'network_anchor_name': 'AzureCliTestM', + 'location': 'eastus', + 'resource_anchor_id': '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azCliTest/providers/Oracle.Database/resourceAnchors/AzureCliTestMi', + 'subnet_id': '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureCli/providers/Microsoft.Network/virtualNetworks/AzureCliVnet/subnets/delegated', + 'zone': '2', + }) + + def test_create_network_anchor(self): + self.cmd( + 'az oracle-database network-anchor create ' + '--name {network_anchor_name} ' + '--resource-group {resource_group} ' + '--location {location} ' + '--resource-anchor-id {resource_anchor_id} ' + '--subnet-id {subnet_id} ' + '--zone {zone} ' + '--no-wait' + ) + # Show + self.cmd( + 'az oracle-database network-anchor show ' + '--name {network_anchor_name} ' + '--resource-group {resource_group} ' + ) + + # List + self.cmd( + 'az oracle-database network-anchor list ' + '--resource-group {resource_group} ' + ) \ No newline at end of file diff --git a/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_resource_anchor.py b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_resource_anchor.py new file mode 100644 index 00000000000..9f974153470 --- /dev/null +++ b/src/oracle-database/azext_oracle_database/tests/latest/test_oracle_resource_anchor.py @@ -0,0 +1,42 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- +import os +import unittest +import time + +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) + +class OracleResourceAnchorScenarioTest(ScenarioTest): + @live_only() + @ResourceGroupPreparer(name_prefix='cli_test_odba_rg') + def setUp(self): + subscription_id = self.get_subscription_id() + self.kwargs.update({ + 'resource_group': 'azCliTest', + 'resource_anchor_name': 'AzureCliTestMi', + 'location': 'global', + }) + + def test_create_resource_anchor(self): + self.cmd( + 'az oracle-database resource-anchor create ' + '--name {resource_anchor_name} ' + '--resource-group {resource_group} ' + '--location {location} ' + '--no-wait') + # Show + self.cmd( + 'az oracle-database resource-anchor show ' + '--name {resource_anchor_name} ' + '--resource-group {resource_group} ' + ) + + # List + self.cmd( + 'az oracle-database resource-anchor list ' + '--resource-group {resource_group} ' + ) diff --git a/src/oracle-database/linter_exclusions.yml b/src/oracle-database/linter_exclusions.yml new file mode 100644 index 00000000000..35fd5794760 --- /dev/null +++ b/src/oracle-database/linter_exclusions.yml @@ -0,0 +1,115 @@ +oracle-database autonomous-database change-disaster-recovery-configuration: + parameters: + is_replicate_automatic_backups: + rule_exclusions: + - option_length_too_long + time_snapshot_standby_enabled_till: + rule_exclusions: + - option_length_too_long +oracle-database autonomous-database create: + parameters: + clone_from_backup_timestamp: + rule_exclusions: + - option_length_too_long + cross_region_disaster_recovery: + rule_exclusions: + - option_length_too_long + scheduled_operations_list: + rule_exclusions: + - option_length_too_long +oracle-database autonomous-database update: + parameters: + clone_from_backup_timestamp: + rule_exclusions: + - option_length_too_long + cross_region_disaster_recovery: + rule_exclusions: + - option_length_too_long + scheduled_operations_list: + rule_exclusions: + - option_length_too_long +oracle-database cloud-exadata-infrastructure add-storage-capacity: + parameters: + cloudexadatainfrastructurename: + rule_exclusions: + - option_length_too_long +oracle-database cloud-exadata-infrastructure configure-exascale: + parameters: + cloudexadatainfrastructurename: + rule_exclusions: + - option_length_too_long +oracle-database cloud-exadata-infrastructure database-server show: + parameters: + cloudexadatainfrastructurename: + rule_exclusions: + - option_length_too_long +oracle-database cloud-vm-cluster create: + parameters: + exascale_db_storage_vault_id: + rule_exclusions: + - option_length_too_long +oracle-database cloud-vm-cluster update: + parameters: + file_system_configuration_details: + rule_exclusions: + - option_length_too_long +oracle-database db-system create: + parameters: + initial_data_storage_size_in_gb: + rule_exclusions: + - option_length_too_long + storage_volume_performance_mode: + rule_exclusions: + - option_length_too_long +oracle-database db-system-db-version list: + parameters: + is_database_software_image_supported: + rule_exclusions: + - option_length_too_long +oracle-database exadb-vm-cluster create: + parameters: + data_collection_options: + rule_exclusions: + - option_length_too_long + exascale_db_storage_vault_id: + rule_exclusions: + - option_length_too_long + scan_listener_port_tcp_ssl: + rule_exclusions: + - option_length_too_long +oracle-database exascale-db-storage-vault create: + parameters: + additional_flash_cache_in_percent: + rule_exclusions: + - option_length_too_long + exadata_infrastructure_id: + rule_exclusions: + - option_length_too_long + high_capacity_database_storage_input: + rule_exclusions: + - option_length_too_long +oracle-database network-anchor create: + parameters: + dns_listening_endpoint_allowed_cidrs: + rule_exclusions: + - option_length_too_long + is_oracle_dns_forwarding_endpoint_enabled: + rule_exclusions: + - option_length_too_long + is_oracle_dns_listening_endpoint_enabled: + rule_exclusions: + - option_length_too_long + is_oracle_to_azure_dns_zone_sync_enabled: + rule_exclusions: + - option_length_too_long +oracle-database network-anchor update: + parameters: + is_oracle_dns_forwarding_endpoint_enabled: + rule_exclusions: + - option_length_too_long + is_oracle_dns_listening_endpoint_enabled: + rule_exclusions: + - option_length_too_long + is_oracle_to_azure_dns_zone_sync_enabled: + rule_exclusions: + - option_length_too_long \ No newline at end of file diff --git a/src/oracle-database/setup.py b/src/oracle-database/setup.py index c759c4f896e..e53a3e0dd87 100644 --- a/src/oracle-database/setup.py +++ b/src/oracle-database/setup.py @@ -10,7 +10,7 @@ # HISTORY.rst entry. -VERSION = '1.0.0' +VERSION = '2.0.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/pscloud/README.md b/src/pscloud/README.md index 252c7a8d737..befe23ef6d9 100644 --- a/src/pscloud/README.md +++ b/src/pscloud/README.md @@ -2,6 +2,23 @@ This is an extension to Azure CLI to manage Pure Storage Cloud Azure Native resources. +## Recent Improvements ## + +The pscloud CLI has been recently improved for better usability and consistency: + +### Enhanced Parameter Usability ### +- **Simplified zone specification**: Use `--zone` or `-z` instead of `--availability-zone` +- **Flattened network parameters**: Use `--subnet-id` and `--vnet-id` directly instead of complex `--vnet-injection` JSON objects +- **Improved parameter names**: Consistent use of `--name` or `-n` across all commands + +### Removed Unsupported Features ### +- **Identity parameters removed**: `--system-assigned`, `--user-assigned`, and related identity options have been removed as they are not supported by the Pure Storage Cloud service +- **Wait command removed**: `az pscloud pool wait` has been removed for consistency with other Azure CLI extensions + +### Enhanced Validation ### +- **Required parameters**: Key parameters like `--zone`, `--provisioned-bandwidth`, `--reservation-id`, `--subnet-id`, and `--vnet-id` are now properly validated as required +- **Better examples**: All command examples now show realistic Azure resource IDs and cleaner syntax + ## How to use ## For more details about the Pure Storage Cloud resources please visit [documentation on Pure Support](https://support.purestorage.com/bundle/m_azure_native_pure_storage_cloud/page/Pure_Cloud_Block_Store/Azure_Native_Pure_Storage_Cloud/design/c_resources_in_psc.html). @@ -10,7 +27,7 @@ For more details about the Pure Storage Cloud resources please visit [documentat Install this extension using the below CLI command: ``` -az extension add --name pscloud --allow-preview +az extension add --name pscloud ``` ### Check the version ### @@ -65,13 +82,33 @@ This resource represents a block storage array instance, delivered as a service, To create a Storage Pool, you need to have a virtual network with a delegated subnet to `PureStorage.Block` service. ```bash -az pscloud pool create --resource-group {resource_group} --storage-pool-name {storage_pool_name} --location {location} --availability-zone {availability_zone} --vnet-injection '{{"subnet-id": "{subnet_id}", "vnet-id": "{vnet_id}"}}' --provisioned-bandwidth {bandwidth_mb_per_sec} --reservation-id {reservation_resource_id} --system-assigned --user-assigned {user_assigned_identity_ids} --tags "{key:value}" +az pscloud pool create --resource-group {resource_group} --name {storage_pool_name} --location {location} --zone {availability_zone} --subnet-name {subnet_name} --vnet-name {vnet_name} --provisioned-bandwidth {bandwidth_mb_per_sec} --reservation-id {reservation_resource_id} --tags "{key:value}" +``` + +**Required Parameters:** +- `--zone` or `-z`: Azure Availability Zone (1, 2, or 3) +- `--subnet-name`: Name of the delegated subnet +- `--vnet-name`: Name of the virtual network +- `--provisioned-bandwidth`: Bandwidth in MB/s +- `--reservation-id`: Azure resource ID of the Pure Storage Cloud reservation + +**Example with realistic values:** +```bash +az pscloud pool create \ + --resource-group myResourceGroup \ + --storage-pool-name myStoragePool \ + --location eastus \ + --zone 1 \ + --subnet-name mySubnet \ + --vnet-name myVnet \ + --provisioned-bandwidth 100 \ + --reservation-id /subscriptions/12345678-1234-1234-1234-123456789abc/providers/PureStorage.Block/reservations/myReservation ``` #### Show a Storage Pool #### ```bash -az pscloud pool show --resource-group {resource_group} --storage-pool-name {storage_pool_name} +az pscloud pool show --resource-group {resource_group} --name {storage_pool_name} ``` #### List Storage Pools #### @@ -86,10 +123,12 @@ az pscloud pool list --resource-group {resource_group} az pscloud pool update --resource-group {resource_group} --name {storage_pool_name} --provisioned-bandwidth {bandwidth_mb_per_sec} ``` +**Note:** Identity-related parameters (`--system-assigned`, `--user-assigned`) have been removed as they are not supported by the Pure Storage Cloud service. + #### Delete a Storage Pool #### ```bash -az pscloud pool delete --resource-group {resource_group} --storage-pool-name {storage_pool_name} +az pscloud pool delete --resource-group {resource_group} --name {storage_pool_name} ``` #### Connect a Storage Pool to AVS #### @@ -101,7 +140,7 @@ Currently, establishing a connection between a Storage Pool and an Azure VMware This command provides the health status about the Storage Pool. ```bash -az pscloud pool get-health-status --resource-group {resource_group} --storage-pool-name {storage_pool_name} +az pscloud pool get-health-status --resource-group {resource_group} --name {storage_pool_name} ``` #### Get Storage Pool AVS Status #### @@ -109,7 +148,9 @@ az pscloud pool get-health-status --resource-group {resource_group} --storage-po This command provides the current connection status between the Storage Pool and Azure VMware Solution (AVS) resource. ```bash -az pscloud pool get-avs-status --resource-group {resource_group} --storage-pool-name {storage_pool_name} +az pscloud pool get-avs-status --resource-group {resource_group} --name {storage_pool_name} ``` +**Note:** You can use either `--name` or `-n` for the storage pool name parameter. + If you have issues, please give feedback by opening an issue at https://github.com/Azure/azure-cli-extensions/issues. \ No newline at end of file diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/__cmd_group.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/__cmd_group.py index ee6158e91fd..383d1ad531e 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/__cmd_group.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/__cmd_group.py @@ -13,7 +13,6 @@ @register_command_group( "pscloud", - is_preview=True, ) class __CMDGroup(AAZCommandGroup): """Manage Pure Storage Block resources diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/_list.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/_list.py index 33abd144673..c13fd4f5dd0 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/_list.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/_list.py @@ -13,7 +13,6 @@ @register_command( "pscloud list", - is_preview=True, ) class List(AAZCommand): """List reservations by Azure subscription ID diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/_show.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/_show.py index 2d4ae0180e8..825f2530765 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/_show.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/_show.py @@ -13,7 +13,6 @@ @register_command( "pscloud show", - is_preview=True, ) class Show(AAZCommand): """Get a reservation diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/__cmd_group.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/__cmd_group.py index 0b543eb3d13..a6b3541ebf7 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/__cmd_group.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/__cmd_group.py @@ -13,7 +13,6 @@ @register_command_group( "pscloud pool", - is_preview=True, ) class __CMDGroup(AAZCommandGroup): """Manage Storage Pool diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/__init__.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/__init__.py index 3aa479319b8..21644a6181c 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/__init__.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/__init__.py @@ -16,4 +16,3 @@ from ._list import * from ._show import * from ._update import * -from ._wait import * diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_create.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_create.py index 732c3842e16..d888f065e33 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_create.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_create.py @@ -13,13 +13,12 @@ @register_command( "pscloud pool create", - is_preview=True, ) class Create(AAZCommand): """Create a storage pool :example: StoragePools_Create - az pscloud pool create --resource-group rgpurestorage --storage-pool-name storagePoolname --availability-zone vknyl --vnet-injection "{subnet-id:tnlctolrxdvnkjiphlrdxq,vnet-id:zbumtytyqwewjcyckwqchiypshv}" --provisioned-bandwidth 17 --reservation-id xiowoxnbtcotutcmmrofvgdi --type None --user-assigned-identities "{key4211:{}}" --tags "{key7593:vsyiygyurvwlfaezpuqu}" --location lonlc + az pscloud pool create --resource-group rgpurestorage --storage-pool-name storagePoolname --zone 1 --subnet-name /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName} --vnet-name /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName} --provisioned-bandwidth 100 --reservation-id /subscriptions/{subscriptionId}/providers/PureStorage.Block/reservations/{reservationName} --location eastus """ _aaz_info = { @@ -60,58 +59,25 @@ def _build_arguments_schema(cls, *args, **kwargs): ), ) - # define Arg Group "Identity" - - _args_schema = cls._args_schema - _args_schema.mi_system_assigned = AAZStrArg( - options=["--system-assigned", "--mi-system-assigned"], - arg_group="Identity", - help="Set the system managed identity.", - blank="True", - ) - _args_schema.mi_user_assigned = AAZListArg( - options=["--user-assigned", "--mi-user-assigned"], - arg_group="Identity", - help="Set the user managed identities.", - blank=[], - ) - - mi_user_assigned = cls._args_schema.mi_user_assigned - mi_user_assigned.Element = AAZStrArg() - # define Arg Group "Properties" _args_schema = cls._args_schema - _args_schema.availability_zone = AAZStrArg( - options=["--availability-zone"], + _args_schema.zone = AAZStrArg( + options=["-z", "--zone"], arg_group="Properties", help="Azure Availability Zone the Pool is located in", + required=True, ) _args_schema.provisioned_bandwidth = AAZIntArg( options=["--provisioned-bandwidth"], arg_group="Properties", help="Total bandwidth provisioned for the pool, in MB/s", + required=True, ) _args_schema.reservation_id = AAZStrArg( options=["--reservation-id"], arg_group="Properties", help="Azure resource ID of the Pure Storage Cloud service (reservation resource) this storage pool belongs to", - ) - _args_schema.vnet_injection = AAZObjectArg( - options=["--vnet-injection"], - arg_group="Properties", - help="Network properties of the storage pool", - ) - - vnet_injection = cls._args_schema.vnet_injection - vnet_injection.subnet_id = AAZStrArg( - options=["subnet-id"], - help="Azure resource ID of the Virtual Network subnet where the storage pool will be connected", - required=True, - ) - vnet_injection.vnet_id = AAZStrArg( - options=["vnet-id"], - help="Azure resource ID of the Virtual Network in which the subnet is located", required=True, ) @@ -134,6 +100,22 @@ def _build_arguments_schema(cls, *args, **kwargs): tags = cls._args_schema.tags tags.Element = AAZStrArg() + + # define Arg Group "VnetInjection" + + _args_schema = cls._args_schema + _args_schema.subnet_id = AAZStrArg( + options=["--subnet-name"], + arg_group="VnetInjection", + help="Azure resource ID of the Virtual Network subnet where the storage pool will be connected", + required=True, + ) + _args_schema.vnet_id = AAZStrArg( + options=["--vnet-name"], + arg_group="VnetInjection", + help="Azure resource ID of the Virtual Network in which the subnet is located", + required=True, + ) return cls._args_schema def _execute_operations(self): @@ -242,26 +224,16 @@ def content(self): typ=AAZObjectType, typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) - _builder.set_prop("identity", AAZIdentityObjectType) _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("tags", AAZDictType, ".tags") - identity = _builder.get(".identity") - if identity is not None: - identity.set_prop("userAssigned", AAZListType, ".mi_user_assigned", typ_kwargs={"flags": {"action": "create"}}) - identity.set_prop("systemAssigned", AAZStrType, ".mi_system_assigned", typ_kwargs={"flags": {"action": "create"}}) - - user_assigned = _builder.get(".identity.userAssigned") - if user_assigned is not None: - user_assigned.set_elements(AAZStrType, ".") - properties = _builder.get(".properties") if properties is not None: - properties.set_prop("availabilityZone", AAZStrType, ".availability_zone", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("availabilityZone", AAZStrType, ".zone", typ_kwargs={"flags": {"required": True}}) properties.set_prop("provisionedBandwidthMbPerSec", AAZIntType, ".provisioned_bandwidth", typ_kwargs={"flags": {"required": True}}) properties.set_prop("reservationResourceId", AAZStrType, ".reservation_id", typ_kwargs={"flags": {"required": True}}) - properties.set_prop("vnetInjection", AAZObjectType, ".vnet_injection", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("vnetInjection", AAZObjectType, ".", typ_kwargs={"flags": {"required": True}}) vnet_injection = _builder.get(".properties.vnetInjection") if vnet_injection is not None: diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_delete.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_delete.py index 45e530f212b..35712e12c28 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_delete.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_delete.py @@ -13,7 +13,6 @@ @register_command( "pscloud pool delete", - is_preview=True, confirmation="Are you sure you want to perform this operation?", ) class Delete(AAZCommand): diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_get_avs_status.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_get_avs_status.py index ead750c4fe3..2325d80982f 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_get_avs_status.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_get_avs_status.py @@ -13,7 +13,6 @@ @register_command( "pscloud pool get-avs-status", - is_preview=True, ) class GetAvsStatus(AAZCommand): """Returns the status of the storage pool connection to AVS @@ -49,7 +48,7 @@ def _build_arguments_schema(cls, *args, **kwargs): required=True, ) _args_schema.storage_pool_name = AAZStrArg( - options=["--storage-pool-name"], + options=["-n", "--name"], help="Name of the storage pool", required=True, id_part="name", diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_get_health_status.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_get_health_status.py index 7ff8fd41573..768ecad30ba 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_get_health_status.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_get_health_status.py @@ -13,7 +13,6 @@ @register_command( "pscloud pool get-health-status", - is_preview=True, ) class GetHealthStatus(AAZCommand): """Retrieve health metrics of a storage pool @@ -49,7 +48,7 @@ def _build_arguments_schema(cls, *args, **kwargs): required=True, ) _args_schema.storage_pool_name = AAZStrArg( - options=["--storage-pool-name"], + options=["-n", "--name"], help="Name of the storage pool", required=True, id_part="name", diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_list.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_list.py index f8bf05af9ec..dd33aebbcb2 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_list.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_list.py @@ -13,7 +13,6 @@ @register_command( "pscloud pool list", - is_preview=True, ) class List(AAZCommand): """List storage pools by Azure subscription ID diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_show.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_show.py index 75549055c93..72ad688670e 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_show.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_show.py @@ -13,7 +13,6 @@ @register_command( "pscloud pool show", - is_preview=True, ) class Show(AAZCommand): """Get a storage pool diff --git a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_update.py b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_update.py index a495b789e6a..e6280b12212 100644 --- a/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_update.py +++ b/src/pscloud/azext_pscloud/aaz/latest/pscloud/pool/_update.py @@ -13,7 +13,6 @@ @register_command( "pscloud pool update", - is_preview=True, ) class Update(AAZCommand): """Update a storage pool @@ -61,25 +60,6 @@ def _build_arguments_schema(cls, *args, **kwargs): ), ) - # define Arg Group "Identity" - - _args_schema = cls._args_schema - _args_schema.mi_system_assigned = AAZStrArg( - options=["--system-assigned", "--mi-system-assigned"], - arg_group="Identity", - help="Set the system managed identity.", - blank="True", - ) - _args_schema.mi_user_assigned = AAZListArg( - options=["--user-assigned", "--mi-user-assigned"], - arg_group="Identity", - help="Set the user managed identities.", - blank=[], - ) - - mi_user_assigned = cls._args_schema.mi_user_assigned - mi_user_assigned.Element = AAZStrArg() - # define Arg Group "Properties" _args_schema = cls._args_schema @@ -204,19 +184,9 @@ def content(self): typ=AAZObjectType, typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) - _builder.set_prop("identity", AAZIdentityObjectType) _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("tags", AAZDictType, ".tags") - identity = _builder.get(".identity") - if identity is not None: - identity.set_prop("userAssigned", AAZListType, ".mi_user_assigned", typ_kwargs={"flags": {"action": "create"}}) - identity.set_prop("systemAssigned", AAZStrType, ".mi_system_assigned", typ_kwargs={"flags": {"action": "create"}}) - - user_assigned = _builder.get(".identity.userAssigned") - if user_assigned is not None: - user_assigned.set_elements(AAZStrType, ".") - properties = _builder.get(".properties") if properties is not None: properties.set_prop("provisionedBandwidthMbPerSec", AAZIntType, ".provisioned_bandwidth") diff --git a/src/pscloud/setup.py b/src/pscloud/setup.py index 645141195e0..d944d492714 100644 --- a/src/pscloud/setup.py +++ b/src/pscloud/setup.py @@ -10,7 +10,11 @@ # HISTORY.rst entry. -VERSION = '1.0.0b1' +STABLE_VERSION = '1.0.0' +PREVIEW_VERSION = '1.0.0b1' + +# Currently using stable version +VERSION = STABLE_VERSION # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/service_name.json b/src/service_name.json index a118a940b67..d29262746f4 100644 --- a/src/service_name.json +++ b/src/service_name.json @@ -794,11 +794,6 @@ "AzureServiceName": "Cost Management", "URL": "https://learn.microsoft.com/azure/cost-management-billing/savings-plan" }, - { - "Command": "az mobile-network", - "AzureServiceName": "Mobile Networking", - "URL": "https://learn.microsoft.com/azure/private-5g-core" - }, { "Command": "az automanage", "AzureServiceName": "Virtual Machines",